summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/framework/saxeventkeeperimpl.cxx
blob: 1283b7acd887ff018cb8261fcb9dd41fa3528e99 (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
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
/* -*- 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 "framework/saxeventkeeperimpl.hxx"
#include "buffernode.hxx"
#include "elementmark.hxx"
#include "elementcollector.hxx"
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <com/sun/star/xml/crypto/sax/ConstOfSecurityId.hpp>
#include <cppuhelper/supportsservice.hxx>
#include <osl/diagnose.h>

namespace cssu = com::sun::star::uno;
namespace cssl = com::sun::star::lang;
namespace cssxc = com::sun::star::xml::crypto;
namespace cssxcsax = com::sun::star::xml::csax;
namespace cssxw = com::sun::star::xml::wrapper;
namespace cssxs = com::sun::star::xml::sax;

#define IMPLEMENTATION_NAME "com.sun.star.xml.security.framework.SAXEventKeeperImpl"

SAXEventKeeperImpl::SAXEventKeeperImpl( )
    :m_pRootBufferNode(nullptr),
     m_pCurrentBufferNode(nullptr),
     m_nNextElementMarkId(1),
     m_pNewBlocker(nullptr),
     m_pCurrentBlockingBufferNode(nullptr),
     m_bIsReleasing(false),
     m_bIsForwarding(false)
{
    m_vElementMarkBuffers.reserve(2);
    m_vNewElementCollectors.reserve(2);
    m_vReleasedElementMarkBuffers.reserve(2);
}

SAXEventKeeperImpl::~SAXEventKeeperImpl()
{
    /*
     * delete the BufferNode tree
     */
    if (m_pRootBufferNode != nullptr)
    {
        m_pRootBufferNode->freeAllChildren();
        delete m_pRootBufferNode;
    }

    m_pRootBufferNode = m_pCurrentBufferNode = m_pCurrentBlockingBufferNode = nullptr;

    /*
     * delete all unfreed ElementMarks
     */
    m_vNewElementCollectors.clear();
    m_pNewBlocker = nullptr;

    std::vector< const ElementMark* >::const_iterator ii = m_vElementMarkBuffers.begin();
    for( ; ii != m_vElementMarkBuffers.end(); ++ii )
    {
        delete (*ii);
    }
    m_vElementMarkBuffers.clear();
}

void SAXEventKeeperImpl::setCurrentBufferNode(BufferNode* pBufferNode)
/****** SAXEventKeeperImpl/setCurrentBufferNode ******************************
 *
 *   NAME
 *  setCurrentBufferNode -- set a new active BufferNode.
 *
 *   SYNOPSIS
 *  setCurrentBufferNode( pBufferNode );
 *
 *   FUNCTION
 *  connects this BufferNode into the BufferNode tree as a child of the
 *  current active BufferNode. Then makes this BufferNode as the current
 *  active BufferNode.
 *  If the previous active BufferNode points to the root
 *  BufferNode, which means that no buffering operation was proceeding,
 *  then notifies the status change listener that buffering  operation
 *  will begin at once.
 *
 *   INPUTS
 *  pBufferNode - a BufferNode which will be the new active BufferNode
 ******************************************************************************/
{
    if (pBufferNode != m_pCurrentBufferNode)
    {
        if ( m_pCurrentBufferNode == m_pRootBufferNode &&
             m_xSAXEventKeeperStatusChangeListener.is())
        {
            m_xSAXEventKeeperStatusChangeListener->collectionStatusChanged(true);
        }

        if (pBufferNode->getParent() == nullptr)
        {
            m_pCurrentBufferNode->addChild(pBufferNode);
            pBufferNode->setParent(m_pCurrentBufferNode);
        }

        m_pCurrentBufferNode = pBufferNode;
    }
}

BufferNode* SAXEventKeeperImpl::addNewElementMarkBuffers()
/****** SAXEventKeeperImpl/addNewElementMarkBuffers **************************
 *
 *   NAME
 *  addNewElementMarkBuffers -- add new ElementCollectors and new Blocker.
 *
 *   SYNOPSIS
 *  pBufferNode = addNewElementMarkBuffers( );
 *
 *   FUNCTION
 *  if there are new ElementCollector or new Blocker to be added, then
 *  connect all of them with the current BufferNode. In case of the
 *  current BufferNode doesn't exist, creates one.
 *  Clears up the new ElementCollector list and the new Blocker pointer.
 *
 *   RESULT
 *  pBufferNode - the BufferNode that has been connected with both new
 *                ElementCollectors and new Blocker.
 ******************************************************************************/
{
    BufferNode* pBufferNode = nullptr;

    if (m_pNewBlocker || !m_vNewElementCollectors.empty() )
    {
        /*
         * When the current BufferNode is right pointing to the current
         * working element in the XMLDocumentWrapper component, then
         * no new BufferNode is needed to create.
         * This situation can only happen in the "Forwarding" mode.
         */
        if ( (m_pCurrentBufferNode != nullptr) &&
             (m_xXMLDocument->isCurrent(m_pCurrentBufferNode->getXMLElement())))
        {
            pBufferNode = m_pCurrentBufferNode;
        }
        else
        {
            pBufferNode = new BufferNode(m_xXMLDocument->getCurrentElement());
        }

        if (m_pNewBlocker != nullptr)
        {
            pBufferNode->setBlocker(m_pNewBlocker);

            /*
             * If no blocking before, then notify the status change listener that
             * the SAXEventKeeper has entered "blocking" status, during which, no
             * SAX events will be forwarded to the next document handler.
             */
            if (m_pCurrentBlockingBufferNode == nullptr)
            {
                m_pCurrentBlockingBufferNode = pBufferNode;

                if (m_xSAXEventKeeperStatusChangeListener.is())
                {
                    m_xSAXEventKeeperStatusChangeListener->blockingStatusChanged(true);
                }
            }

            m_pNewBlocker = nullptr;
        }

        if (!m_vNewElementCollectors.empty())
        {
            std::vector< const ElementCollector* >::const_iterator ii = m_vNewElementCollectors.begin();

            for( ; ii != m_vNewElementCollectors.end(); ++ii )
            {
                pBufferNode->addElementCollector(*ii);
            }

            m_vNewElementCollectors.clear();
        }
    }

    return pBufferNode;
}

ElementMark* SAXEventKeeperImpl::findElementMarkBuffer(sal_Int32 nId) const
/****** SAXEventKeeperImpl/findElementMarkBuffer *****************************
 *
 *   NAME
 *  findElementMarkBuffer -- finds an ElementMark.
 *
 *   SYNOPSIS
 *  pElementMark = findElementMarkBuffer( nId );
 *
 *   FUNCTION
 *  searches an ElementMark with the particular Id in the ElementMark
 *  list.
 *
 *   INPUTS
 *  nId - the Id of the ElementMark to be searched.
 *
 *   RESULT
 *  pElementMark - the ElementMark with the particular Id, or NULL when
 *                 no such Id exists.
 ******************************************************************************/
{
    ElementMark* pElementMark = nullptr;

    std::vector< const ElementMark* >::const_iterator ii = m_vElementMarkBuffers.begin();

    for( ; ii != m_vElementMarkBuffers.end(); ++ii )
    {
        if ( nId == (*ii)->getBufferId())
        {
            pElementMark = const_cast<ElementMark*>(*ii);
            break;
        }
    }

    return pElementMark;
}

void SAXEventKeeperImpl::removeElementMarkBuffer(sal_Int32 nId)
/****** SAXEventKeeperImpl/removeElementMarkBuffer ***************************
 *
 *   NAME
 *  removeElementMarkBuffer -- removes an ElementMark
 *
 *   SYNOPSIS
 *  removeElementMarkBuffer( nId );
 *
 *   FUNCTION
 *  removes an ElementMark with the particular Id in the ElementMark list.
 *
 *   INPUTS
 *  nId - the Id of the ElementMark to be removed.
 ******************************************************************************/
{
    std::vector< const ElementMark* >::iterator ii = m_vElementMarkBuffers.begin();

    for( ; ii != m_vElementMarkBuffers.end(); ++ii )
    {
        if ( nId == (*ii)->getBufferId())
        {
            /*
             * checks whether this ElementMark still in the new ElementCollect array
             */
            std::vector< const ElementCollector* >::iterator jj = m_vNewElementCollectors.begin();
            for( ; jj != m_vNewElementCollectors.end(); ++jj )
            {
                if ((*ii) == (*jj))
                {
                    m_vNewElementCollectors.erase(jj);
                    break;
                }
            }

            /*
             * checks whether this ElementMark is the new Blocker
             */
            if ((*ii) == m_pNewBlocker)
            {
                m_pNewBlocker = nullptr;
            }

            /*
             * destroy the ElementMark
             */
            delete (*ii);

            m_vElementMarkBuffers.erase( ii );
            break;
        }
    }
}

OUString SAXEventKeeperImpl::printBufferNode(
    BufferNode* pBufferNode, sal_Int32 nIndent) const
/****** SAXEventKeeperImpl/printBufferNode ***********************************
 *
 *   NAME
 *  printBufferNode -- retrieves the information of a BufferNode and its
 *  branch.
 *
 *   SYNOPSIS
 *  info = printBufferNode( pBufferNode, nIndent );
 *
 *   FUNCTION
 *  all retrieved information includes:
 *  1. whether it is the current BufferNode;
 *  2. whether it is the current blocking BufferNode;
 *  3. the name of the parent element;
 *  4. the name of this element;
 *  5. all ElementCollectors working on this BufferNode;
 *  6. the Blocker working on this BufferNode;
 *  7. all child BufferNodes' information.
 *
 *   INPUTS
 *  pBufferNode -   the BufferNode from where information will be retrieved.
 *  nIndent -   how many space characters prefixed before the output
 *              message.
 *
 *   RESULT
 *  info - the information string
 ******************************************************************************/
{
    OUString rc;

    for ( int i=0; i<nIndent; ++i )
    {
        rc += " ";
    }

    if (pBufferNode == m_pCurrentBufferNode)
    {
        rc += "[%]";
    }

    if (pBufferNode == m_pCurrentBlockingBufferNode)
    {
        rc += "[B]";
    }

    rc += " " + m_xXMLDocument->getNodeName(pBufferNode->getXMLElement());

    BufferNode* pParent = const_cast<BufferNode*>(pBufferNode->getParent());
    if (pParent != nullptr)
    {
        rc += "[" + m_xXMLDocument->getNodeName(pParent->getXMLElement()) + "]";
    }

    rc += ":EC=" + pBufferNode->printChildren() + " BR=";

    ElementMark * pBlocker = pBufferNode->getBlocker();
    if (pBlocker != nullptr)
    {
        rc += OUString::number( pBlocker->getBufferId() ) + "(SecId="
            + OUString::number( pBlocker->getSecurityId() ) + ") ";
    }
    rc += "\n";

    std::vector< const BufferNode* >* vChildren = pBufferNode->getChildren();
    std::vector< const BufferNode* >::const_iterator jj = vChildren->begin();
    for( ; jj != vChildren->end(); ++jj )
    {
        rc += printBufferNode(const_cast<BufferNode *>(*jj), nIndent+4);
    }

    delete vChildren;

    return rc;
}

cssu::Sequence< cssu::Reference< cssxw::XXMLElementWrapper > >
    SAXEventKeeperImpl::collectChildWorkingElement(BufferNode* pBufferNode)
/****** SAXEventKeeperImpl/collectChildWorkingElement ************************
 *
 *   NAME
 *  collectChildWorkingElement -- collects a BufferNode's all child
 *  Elements.
 *
 *   SYNOPSIS
 *  list = collectChildWorkingElement( pBufferNode );
 *
 *   INPUTS
 *  pBufferNode - the BufferNode whose child Elements will be collected.
 *
 *   RESULT
 *  list - the child Elements list.
 ******************************************************************************/
{
    std::vector< const BufferNode* >* vChildren = pBufferNode->getChildren();

    cssu::Sequence < cssu::Reference<
        cssxw::XXMLElementWrapper > > aChildrenCollection ( vChildren->size());

    std::vector< const BufferNode* >::const_iterator ii = vChildren->begin();

    sal_Int32 nIndex = 0;
    for( ; ii != vChildren->end(); ++ii )
    {
        aChildrenCollection[nIndex] = (*ii)->getXMLElement();
        nIndex++;
    }

    delete vChildren;

    return aChildrenCollection;
}

void SAXEventKeeperImpl::smashBufferNode(
    BufferNode* pBufferNode, bool bClearRoot) const
/****** SAXEventKeeperImpl/smashBufferNode ***********************************
 *
 *   NAME
 *  smashBufferNode -- removes a BufferNode along with its working
 *  element.
 *
 *   SYNOPSIS
 *  smashBufferNode( pBufferNode, bClearRoot );
 *
 *   FUNCTION
 *  removes the BufferNode's working element from the DOM document, while
 *  reserves all ancestor paths for its child BufferNodes.
 *  when any of the BufferNode's ancestor element is useless, removes it
 *  too.
 *  removes the BufferNode from the BufferNode tree.
 *
 *   INPUTS
 *  pBufferNode -   the BufferNode to be removed
 *  bClearRoot -    whether the root element also needs to be cleared up.
 *
 *   NOTES
 *  when removing a Blocker's BufferNode, the bClearRoot flag should be
 *  true. Because a Blocker can buffer many SAX events which are not used
 *  by any other ElementCollector or Blocker.
 *  When the bClearRoot is set to true, the root BufferNode will be first
 *  cleared, with a stop flag setting at the next Blocking BufferNode. This
 *  operation can delete all useless bufferred SAX events which are only
 *  needed by the Blocker to be deleted.
 ******************************************************************************/
{
    if (!pBufferNode->hasAnything())
    {
        BufferNode* pParent = const_cast<BufferNode*>(pBufferNode->getParent());

            /*
             * delete the XML data
             */
        if (pParent == m_pRootBufferNode)
        {
            bool bIsNotBlocking = (m_pCurrentBlockingBufferNode == nullptr);
            bool bIsBlockInside = false;
            bool bIsBlockingAfterward = false;

                /*
                 * If this is a blocker, then remove any out-element data
                 * which caused by blocking. The removal process will stop
                 * at the next blocker to avoid removing any useful data.
                 */
            if (bClearRoot)
            {
                cssu::Sequence< cssu::Reference< cssxw::XXMLElementWrapper > >
                    aChildElements = collectChildWorkingElement(m_pRootBufferNode);

                    /*
                     * the clearUselessData only clearup the content in the
                     * node, not the node itself.
                     */
                m_xXMLDocument->clearUselessData(m_pRootBufferNode->getXMLElement(),
                    aChildElements,
                    bIsNotBlocking?(nullptr):
                                   (m_pCurrentBlockingBufferNode->getXMLElement()));

                    /*
                     * remove the node if it is empty, then if its parent is also
                     * empty, remove it, then if the next parent is also empty,
                     * remove it,..., until parent become null.
                     */
                m_xXMLDocument->collapse( m_pRootBufferNode->getXMLElement() );
            }

            /*
             * if blocking, check the relationship between this BufferNode and
             * the current blocking BufferNode.
             */
            if ( !bIsNotBlocking )
            {
                /*
                 * the current blocking BufferNode is a descendant of this BufferNode.
                 */
                bIsBlockInside = (nullptr != pBufferNode->isAncestor(m_pCurrentBlockingBufferNode));

                /*
                 * the current blocking BufferNode locates behind this BufferNode in tree
                 * order.
                 */
                bIsBlockingAfterward = pBufferNode->isPrevious(m_pCurrentBlockingBufferNode);
            }

            /*
             * this BufferNode's working element needs to be deleted only when
             * 1. there is no blocking, or
             * 2. the current blocking BufferNode is a descendant of this BufferNode,
             *    (then in the BufferNode's working element, the useless data before the blocking
             *     element should be deleted.) or
             * 3. the current blocking BufferNode is locates behind this BufferNode in tree,
             *    (then the useless data between the blocking element and the working element
             *     should be deleted.).
             * Otherwise, this working element should not be deleted.
             */
            if ( bIsNotBlocking || bIsBlockInside || bIsBlockingAfterward )
            {
                cssu::Sequence< cssu::Reference< cssxw::XXMLElementWrapper > >
                    aChildElements = collectChildWorkingElement(pBufferNode);

                    /*
                     * the clearUselessData only clearup the content in the
                     * node, not the node itself.
                     */
                m_xXMLDocument->clearUselessData(pBufferNode->getXMLElement(),
                    aChildElements,
                    bIsBlockInside?(m_pCurrentBlockingBufferNode->getXMLElement()):
                               (nullptr));

                    /*
                     * remove the node if it is empty, then if its parent is also
                     * empty, remove it, then if the next parent is also empty,
                     * remove it,..., until parent become null.
                     */
                m_xXMLDocument->collapse( pBufferNode->getXMLElement() );
            }
        }

        sal_Int32 nIndex = pParent->indexOfChild(pBufferNode);

        std::vector< const BufferNode* >* vChildren = pBufferNode->getChildren();
        pParent->removeChild(pBufferNode);
        pBufferNode->setParent(nullptr);

        std::vector< const BufferNode * >::const_iterator ii = vChildren->begin();
        for( ; ii != vChildren->end(); ++ii )
        {
            const_cast<BufferNode *>(*ii)->setParent(pParent);
            pParent->addChild(*ii, nIndex);
            nIndex++;
        }

        delete vChildren;

        /*
         * delete the BufferNode
         */
        delete pBufferNode;
    }
}

BufferNode* SAXEventKeeperImpl::findNextBlockingBufferNode(
    BufferNode* pStartBufferNode)
/****** SAXEventKeeperImpl/findNextBlockingBufferNode ************************
 *
 *   NAME
 *  findNextBlockingBufferNode -- finds the next blocking BufferNode
 *  behind the particular BufferNode.
 *
 *   SYNOPSIS
 *  pBufferNode = findNextBlockingBufferNode( pStartBufferNode );
 *
 *   INPUTS
 *  pStartBufferNode - the BufferNode from where to search the next
 *                     blocking BufferNode.
 *
 *   RESULT
 *  pBufferNode - the next blocking BufferNode, or NULL if no such
 *                BufferNode exists.
 ******************************************************************************/
{
    BufferNode* pNext = nullptr;

    if (pStartBufferNode != nullptr)
    {
        pNext = pStartBufferNode;

        while (nullptr != (pNext = const_cast<BufferNode*>(pNext->getNextNodeByTreeOrder())))
        {
            if (pNext->getBlocker() != nullptr)
            {
                break;
            }
        }
    }

    return pNext;
}

void SAXEventKeeperImpl::diffuse(BufferNode* pBufferNode)
/****** SAXEventKeeperImpl/diffuse *******************************************
 *
 *   NAME
 *  diffuse -- diffuse the notification.
 *
 *   SYNOPSIS
 *  diffuse( pBufferNode );
 *
 *   FUNCTION
 *  diffuse the collecting completion notification from the specific
 *  BufferNode along its parent link, until an ancestor which is not
 *  completely received is met.
 *
 *   INPUTS
 *  pBufferNode - the BufferNode from which the notification will be
 *                diffused.
 ******************************************************************************/
{
    BufferNode* pParent = pBufferNode;

    while(pParent->isAllReceived())
    {
        pParent->elementCollectorNotify();
        pParent = const_cast<BufferNode*>(pParent->getParent());
    }
}

void SAXEventKeeperImpl::releaseElementMarkBuffer()
/****** SAXEventKeeperImpl/releaseElementMarkBuffer **************************
 *
 *   NAME
 *  releaseElementMarkBuffer -- releases useless ElementMarks
 *
 *   SYNOPSIS
 *  releaseElementMarkBuffer( );
 *
 *   FUNCTION
 *  releases each ElementMark in the releasing list
 *  m_vReleasedElementMarkBuffers.
 *  The operation differs between an ElementCollector and a Blocker.
 ******************************************************************************/
{
    m_bIsReleasing = true;
    while (!m_vReleasedElementMarkBuffers.empty())
    {
        std::vector< sal_Int32 >::iterator pId = m_vReleasedElementMarkBuffers.begin();
        sal_Int32 nId = *pId;
        m_vReleasedElementMarkBuffers.erase( pId );

        ElementMark* pElementMark = findElementMarkBuffer(nId);

        if (pElementMark != nullptr)
        {
            if (cssxc::sax::ElementMarkType_ELEMENTCOLLECTOR
                == pElementMark->getType())
            /*
             * it is a EC
             */
            {
                ElementCollector* pElementCollector = static_cast<ElementCollector*>(pElementMark);

                cssxc::sax::ElementMarkPriority nPriority = pElementCollector->getPriority();
                /*
                     * Delete the EC from the buffer node.
                     */
                BufferNode* pBufferNode = pElementCollector->getBufferNode();
                pBufferNode->removeElementCollector(pElementCollector);

                if ( nPriority == cssxc::sax::ElementMarkPriority_BEFOREMODIFY)
                {
                    pBufferNode->notifyBranch();
                }

                /*
                 * delete the ElementMark
                 */
                pElementCollector = nullptr;
                pElementMark = nullptr;
                removeElementMarkBuffer(nId);

                /*
                 * delete the BufferNode
                 */
                diffuse(pBufferNode);
                smashBufferNode(pBufferNode, false);
            }
            else
            /*
             * it is a Blocker
             */
            {
                    /*
                     * Delete the TH from the buffer node.
                     */
                BufferNode *pBufferNode = pElementMark->getBufferNode();
                pBufferNode->setBlocker(nullptr);

                    /*
                     * If there is a following handler and no blocking now, then
                     * forward this event
                     */
                if (m_pCurrentBlockingBufferNode == pBufferNode)
                {
                        /*
                         * Before forwarding, the next blocking point needs to be
                         * found.
                         */
                    m_pCurrentBlockingBufferNode = findNextBlockingBufferNode(pBufferNode);

                        /*
                         * Forward the blocked events between these two STHs.
                         */
                           if (m_xNextHandler.is())
                           {
                               BufferNode* pTempCurrentBufferNode = m_pCurrentBufferNode;
                               BufferNode* pTempCurrentBlockingBufferNode = m_pCurrentBlockingBufferNode;

                               m_pCurrentBufferNode = pBufferNode;
                               m_pCurrentBlockingBufferNode = nullptr;

                        m_bIsForwarding = true;

                        m_xXMLDocument->generateSAXEvents(
                            m_xNextHandler,
                            this,
                            pBufferNode->getXMLElement(),
                            (pTempCurrentBlockingBufferNode == nullptr)?nullptr:(pTempCurrentBlockingBufferNode->getXMLElement()));

                        m_bIsForwarding = false;

                        m_pCurrentBufferNode = pTempCurrentBufferNode;
                        if (m_pCurrentBlockingBufferNode == nullptr)
                        {
                            m_pCurrentBlockingBufferNode = pTempCurrentBlockingBufferNode;
                        }
                    }

                    if (m_pCurrentBlockingBufferNode == nullptr &&
                        m_xSAXEventKeeperStatusChangeListener.is())
                    {
                        m_xSAXEventKeeperStatusChangeListener->blockingStatusChanged(false);
                    }
                }

                /*
                 * delete the ElementMark
                 */
                pElementMark = nullptr;
                removeElementMarkBuffer(nId);

                /*
                 * delete the BufferNode
                 */
                diffuse(pBufferNode);
                smashBufferNode(pBufferNode, true);
            }
        }
    }

    m_bIsReleasing = false;

    if (!m_pRootBufferNode->hasAnything() &&
        !m_pRootBufferNode->hasChildren() &&
        m_xSAXEventKeeperStatusChangeListener.is())
    {
        m_xSAXEventKeeperStatusChangeListener->bufferStatusChanged(true);
    }
}

void SAXEventKeeperImpl::markElementMarkBuffer(sal_Int32 nId)
/****** SAXEventKeeperImpl/markElementMarkBuffer *****************************
 *
 *   NAME
 *  markElementMarkBuffer -- marks an ElementMark to be released
 *
 *   SYNOPSIS
 *  markElementMarkBuffer( nId );
 *
 *   FUNCTION
 *  puts the ElementMark with the particular Id into the releasing list,
 *  checks whether the releasing process is running, if not then launch
 *  this process.
 *
 *   INPUTS
 *  nId - the Id of the ElementMark which will be released
 ******************************************************************************/
{
    m_vReleasedElementMarkBuffers.push_back( nId );
    if ( !m_bIsReleasing )
    {
        releaseElementMarkBuffer();
    }
}

sal_Int32 SAXEventKeeperImpl::createElementCollector(
    cssxc::sax::ElementMarkPriority nPriority,
    bool bModifyElement,
    const cssu::Reference< cssxc::sax::XReferenceResolvedListener >& xReferenceResolvedListener)
/****** SAXEventKeeperImpl/createElementCollector ****************************
 *
 *   NAME
 *  createElementCollector -- creates a new ElementCollector on the
 *  incoming element.
 *
 *   SYNOPSIS
 *  nId = createElementCollector( nSecurityId, nPriority,
 *                               bModifyElement,
 *                               xReferenceResolvedListener );
 *
 *   FUNCTION
 *  allocs a new Id, then create an ElementCollector with this Id value.
 *  Add the new created ElementCollector to the new ElementCollecotor list.
 *
 *   INPUTS
 *  nPriority -     the priority of the new ElementCollector
 *  bModifyElement -whether this BufferNode will modify the content of
 *                  the corresponding element it works on
 *  xReferenceResolvedListener - the listener for the new ElementCollector.
 *
 *   RESULT
 *  nId - the Id of the new ElementCollector
 ******************************************************************************/
{
    sal_Int32 nId = m_nNextElementMarkId;
    m_nNextElementMarkId ++;

    ElementCollector* pElementCollector
        = new ElementCollector(
            cssxc::sax::ConstOfSecurityId::UNDEFINEDSECURITYID,
            nId,
            nPriority,
            bModifyElement,
            xReferenceResolvedListener);

    m_vElementMarkBuffers.push_back( pElementCollector );

        /*
         * All the new EC to initial EC array.
         */
    m_vNewElementCollectors.push_back( pElementCollector );

    return nId;
}


sal_Int32 SAXEventKeeperImpl::createBlocker()
/****** SAXEventKeeperImpl/createBlocker *************************************
 *
 *   NAME
 *  createBlocker -- creates a new Blocker on the incoming element.
 *
 *   SYNOPSIS
 *  nId = createBlocker( nSecurityId );
 *
 *   RESULT
 *  nId - the Id of the new Blocker
 ******************************************************************************/
{
    sal_Int32 nId = m_nNextElementMarkId;
    m_nNextElementMarkId ++;

    assert(m_pNewBlocker == nullptr);

    m_pNewBlocker = new ElementMark(cssxc::sax::ConstOfSecurityId::UNDEFINEDSECURITYID, nId);
    m_vElementMarkBuffers.push_back( m_pNewBlocker );

    return nId;
}

/* XSAXEventKeeper */
sal_Int32 SAL_CALL SAXEventKeeperImpl::addElementCollector(  )
{
    return createElementCollector(
        cssxc::sax::ElementMarkPriority_AFTERMODIFY,
        false,
        nullptr);
}

void SAL_CALL SAXEventKeeperImpl::removeElementCollector( sal_Int32 id )
{
    markElementMarkBuffer(id);
}

sal_Int32 SAL_CALL SAXEventKeeperImpl::addBlocker(  )
{
    return createBlocker();
}

void SAL_CALL SAXEventKeeperImpl::removeBlocker( sal_Int32 id )
{
    markElementMarkBuffer(id);
}

sal_Bool SAL_CALL SAXEventKeeperImpl::isBlocking(  )
{
    return (m_pCurrentBlockingBufferNode != nullptr);
}

cssu::Reference< cssxw::XXMLElementWrapper > SAL_CALL
    SAXEventKeeperImpl::getElement( sal_Int32 id )
{
    cssu::Reference< cssxw::XXMLElementWrapper > rc;

    ElementMark* pElementMark = findElementMarkBuffer(id);
    if (pElementMark != nullptr)
    {
        rc = pElementMark->getBufferNode()->getXMLElement();
    }

    return rc;
}

void SAL_CALL SAXEventKeeperImpl::setElement(
    sal_Int32 id,
    const cssu::Reference< cssxw::XXMLElementWrapper >& aElement )
{
    if (aElement.is())
    {
        m_xXMLDocument->rebuildIDLink(aElement);

        ElementMark* pElementMark = findElementMarkBuffer(id);

        if (pElementMark != nullptr)
        {
            BufferNode* pBufferNode = pElementMark->getBufferNode();
            if (pBufferNode != nullptr)
            {
                    bool bIsCurrent = m_xXMLDocument->isCurrent(pBufferNode->getXMLElement());
                pBufferNode->setXMLElement(aElement);

                if (bIsCurrent)
                {
                    m_xXMLDocument->setCurrentElement(aElement);
                }
            }
        }
    }
    else
    {
        removeElementCollector( id );
    }
}

cssu::Reference< cssxs::XDocumentHandler > SAL_CALL SAXEventKeeperImpl::setNextHandler(
    const cssu::Reference< cssxs::XDocumentHandler >& xNewHandler )
{
    cssu::Reference< cssxs::XDocumentHandler > xOldHandler = m_xNextHandler;

    m_xNextHandler = xNewHandler;
    return xOldHandler;
}

OUString SAL_CALL SAXEventKeeperImpl::printBufferNodeTree()
{
    OUString rc;

    rc += "ElementMarkBuffers: size = "
        + OUString::number(m_vElementMarkBuffers.size())
        + "\nCurrentBufferNode: "
        + m_xXMLDocument->getNodeName(m_pCurrentBufferNode->getXMLElement())
        + "\n" + printBufferNode(m_pRootBufferNode, 0);

    return rc;
}

cssu::Reference< cssxw::XXMLElementWrapper > SAL_CALL SAXEventKeeperImpl::getCurrentBlockingNode()
{
    cssu::Reference< cssxw::XXMLElementWrapper > rc;

    if (m_pCurrentBlockingBufferNode != nullptr)
    {
        rc = m_pCurrentBlockingBufferNode->getXMLElement();
    }

    return rc;
}

/* XSecuritySAXEventKeeper */
sal_Int32 SAL_CALL SAXEventKeeperImpl::addSecurityElementCollector(
    cssxc::sax::ElementMarkPriority priority,
    sal_Bool modifyElement )
{
    return createElementCollector(
        priority,
        modifyElement,
        nullptr);
}

void SAL_CALL SAXEventKeeperImpl::setSecurityId( sal_Int32 id, sal_Int32 securityId )
{
    ElementMark* pElementMark = findElementMarkBuffer(id);
    if (pElementMark != nullptr)
    {
        pElementMark->setSecurityId(securityId);
    }
}


/* XReferenceResolvedBroadcaster */
void SAL_CALL SAXEventKeeperImpl::addReferenceResolvedListener(
    sal_Int32 referenceId,
    const cssu::Reference< cssxc::sax::XReferenceResolvedListener >& listener )
{
    ElementCollector* pElementCollector = static_cast<ElementCollector*>(findElementMarkBuffer(referenceId));
    if (pElementCollector != nullptr)
    {
        pElementCollector->setReferenceResolvedListener(listener);
    }
}

void SAL_CALL SAXEventKeeperImpl::removeReferenceResolvedListener(
    sal_Int32 /*referenceId*/,
    const cssu::Reference< cssxc::sax::XReferenceResolvedListener >&)
{
}

/* XSAXEventKeeperStatusChangeBroadcaster */
void SAL_CALL SAXEventKeeperImpl::addSAXEventKeeperStatusChangeListener(
    const cssu::Reference< cssxc::sax::XSAXEventKeeperStatusChangeListener >& listener )
{
    m_xSAXEventKeeperStatusChangeListener = listener;
}

void SAL_CALL SAXEventKeeperImpl::removeSAXEventKeeperStatusChangeListener(
    const cssu::Reference< cssxc::sax::XSAXEventKeeperStatusChangeListener >&)
{
}

/* XDocumentHandler */
void SAL_CALL SAXEventKeeperImpl::startDocument(  )
{
    if ( m_xNextHandler.is())
    {
        m_xNextHandler->startDocument();
    }
}

void SAL_CALL SAXEventKeeperImpl::endDocument(  )
{
    if ( m_xNextHandler.is())
    {
        m_xNextHandler->endDocument();
    }
}

void SAL_CALL SAXEventKeeperImpl::startElement(
    const OUString& aName,
    const cssu::Reference< cssxs::XAttributeList >& xAttribs )
{
        /*
         * If there is a following handler and no blocking now, then
         * forward this event
         */
    if ((m_pCurrentBlockingBufferNode == nullptr) &&
        (m_xNextHandler.is()) &&
        (!m_bIsForwarding) &&
        (m_pNewBlocker == nullptr))
    {
        m_xNextHandler->startElement(aName, xAttribs);
    }
        /*
         * If not forwarding, buffer this startElement.
         */
           if (!m_bIsForwarding)
           {
        sal_Int32 nLength = xAttribs->getLength();
        cssu::Sequence< cssxcsax::XMLAttribute > aAttributes (nLength);

        for ( int i = 0; i<nLength; ++i )
        {
            aAttributes[i].sName = xAttribs->getNameByIndex((short)i);
            aAttributes[i].sValue =xAttribs->getValueByIndex((short)i);
        }

        m_xCompressedDocumentHandler->compressedStartElement(aName, aAttributes);
    }

    BufferNode* pBufferNode = addNewElementMarkBuffers();
        if (pBufferNode != nullptr)
        {
        setCurrentBufferNode(pBufferNode);
    }
}

void SAL_CALL SAXEventKeeperImpl::endElement( const OUString& aName )
{
        bool bIsCurrent = m_xXMLDocument->isCurrent(m_pCurrentBufferNode->getXMLElement());

        /*
         * If there is a following handler and no blocking now, then
         * forward this event
         */
    if ((m_pCurrentBlockingBufferNode == nullptr) &&
        (m_xNextHandler.is()) &&
        (!m_bIsForwarding))
    {
        m_xNextHandler->endElement(aName);
    }

    if ((m_pCurrentBlockingBufferNode != nullptr) ||
        (m_pCurrentBufferNode != m_pRootBufferNode) ||
        (!m_xXMLDocument->isCurrentElementEmpty()))
    {
        if (!m_bIsForwarding)
        {
            m_xCompressedDocumentHandler->compressedEndElement(aName);
        }

        /*
        * If the current buffer node has not notified yet, and
        * the current buffer node is waiting for the current element,
        * then let it notify.
        */
           if (bIsCurrent && (m_pCurrentBufferNode != m_pRootBufferNode))
        {
            BufferNode* pOldCurrentBufferNode = m_pCurrentBufferNode;
            m_pCurrentBufferNode = const_cast<BufferNode*>(m_pCurrentBufferNode->getParent());

            pOldCurrentBufferNode->setReceivedAll();

            if ((m_pCurrentBufferNode == m_pRootBufferNode) &&
                m_xSAXEventKeeperStatusChangeListener.is())
            {
                m_xSAXEventKeeperStatusChangeListener->collectionStatusChanged(false);
            }
        }
    }
    else
    {
        if (!m_bIsForwarding)
        {
            m_xXMLDocument->removeCurrentElement();
        }
    }
}

void SAL_CALL SAXEventKeeperImpl::characters( const OUString& aChars )
{
    if (!m_bIsForwarding)
    {
        if ((m_pCurrentBlockingBufferNode == nullptr) && m_xNextHandler.is())
        {
            m_xNextHandler->characters(aChars);
        }

        if ((m_pCurrentBlockingBufferNode != nullptr) ||
            (m_pCurrentBufferNode != m_pRootBufferNode))
        {
            m_xCompressedDocumentHandler->compressedCharacters(aChars);
        }
    }
}

void SAL_CALL SAXEventKeeperImpl::ignorableWhitespace( const OUString& aWhitespaces )
{
    characters( aWhitespaces );
}

void SAL_CALL SAXEventKeeperImpl::processingInstruction(
    const OUString& aTarget, const OUString& aData )
{
    if (!m_bIsForwarding)
    {
        if ((m_pCurrentBlockingBufferNode == nullptr) && m_xNextHandler.is())
        {
            m_xNextHandler->processingInstruction(aTarget, aData);
        }

        if ((m_pCurrentBlockingBufferNode != nullptr) ||
            (m_pCurrentBufferNode != m_pRootBufferNode))
        {
            m_xCompressedDocumentHandler->compressedProcessingInstruction(aTarget, aData);
        }
    }
}

void SAL_CALL SAXEventKeeperImpl::setDocumentLocator( const cssu::Reference< cssxs::XLocator >&)
{
}

/* XInitialization */
void SAL_CALL SAXEventKeeperImpl::initialize( const cssu::Sequence< cssu::Any >& aArguments )
{
    assert(aArguments.getLength() == 1);

    aArguments[0] >>= m_xXMLDocument;
    m_xDocumentHandler.set( m_xXMLDocument, cssu::UNO_QUERY );
    m_xCompressedDocumentHandler.set( m_xXMLDocument, cssu::UNO_QUERY );

    m_pRootBufferNode = new BufferNode(m_xXMLDocument->getCurrentElement());
    m_pCurrentBufferNode = m_pRootBufferNode;
}

OUString SAXEventKeeperImpl_getImplementationName ()
{
    return OUString ( IMPLEMENTATION_NAME );
}

cssu::Sequence< OUString > SAL_CALL SAXEventKeeperImpl_getSupportedServiceNames(  )
{
    cssu::Sequence<OUString> aRet { "com.sun.star.xml.crypto.sax.SAXEventKeeper" };
    return aRet;
}

cssu::Reference< cssu::XInterface > SAL_CALL SAXEventKeeperImpl_createInstance(
    const cssu::Reference< cssl::XMultiServiceFactory > &)
{
    return static_cast<cppu::OWeakObject*>(new SAXEventKeeperImpl());
}

/* XServiceInfo */
OUString SAL_CALL SAXEventKeeperImpl::getImplementationName(  )
{
    return SAXEventKeeperImpl_getImplementationName();
}

sal_Bool SAL_CALL SAXEventKeeperImpl::supportsService( const OUString& rServiceName )
{
    return cppu::supportsService(this, rServiceName);
}

cssu::Sequence< OUString > SAL_CALL SAXEventKeeperImpl::getSupportedServiceNames(  )
{
    return SAXEventKeeperImpl_getSupportedServiceNames();
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
class='add' style='width: 0.5%;'/> -rw-r--r--source/da/helpcontent2/source/text/shared/menu.po4
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po18
-rw-r--r--source/da/helpcontent2/source/text/simpress.po4
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/da/helpcontent2/source/text/smath.po8
-rw-r--r--source/da/helpcontent2/source/text/smath/00.po10
-rw-r--r--source/da/helpcontent2/source/text/smath/01.po22
-rw-r--r--source/da/helpcontent2/source/text/smath/04.po12
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po34
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po80
-rw-r--r--source/da/helpcontent2/source/text/swriter/04.po20
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po124
-rw-r--r--source/da/helpcontent2/source/text/swriter/menu.po38
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po82
-rw-r--r--source/da/reportdesign/messages.po4
-rw-r--r--source/da/sc/messages.po254
-rw-r--r--source/da/sd/messages.po40
-rw-r--r--source/da/sfx2/messages.po142
-rw-r--r--source/da/svtools/messages.po62
-rw-r--r--source/da/svx/messages.po146
-rw-r--r--source/da/sw/messages.po202
-rw-r--r--source/da/uui/messages.po8
-rw-r--r--source/da/wizards/messages.po6
-rw-r--r--source/da/wizards/source/resources.po4
-rw-r--r--source/de/cui/messages.po14
-rw-r--r--source/de/extensions/messages.po8
-rw-r--r--source/de/formula/messages.po6
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po114
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po26
-rw-r--r--source/de/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po38
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po34
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po84
-rw-r--r--source/de/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/de/sc/messages.po196
-rw-r--r--source/de/sd/messages.po34
-rw-r--r--source/de/sfx2/messages.po142
-rw-r--r--source/de/svtools/messages.po62
-rw-r--r--source/de/svx/messages.po148
-rw-r--r--source/de/sw/messages.po164
-rw-r--r--source/dgo/cui/messages.po6
-rw-r--r--source/dgo/sc/messages.po187
-rw-r--r--source/dgo/sd/messages.po34
-rw-r--r--source/dgo/sfx2/messages.po132
-rw-r--r--source/dgo/svtools/messages.po60
-rw-r--r--source/dgo/svx/messages.po124
-rw-r--r--source/dgo/sw/messages.po158
-rw-r--r--source/dsb/cui/messages.po14
-rw-r--r--source/dsb/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/dsb/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/dsb/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/dsb/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/dsb/helpcontent2/source/text/swriter/guide.po62
-rw-r--r--source/dsb/sc/messages.po196
-rw-r--r--source/dsb/sd/messages.po34
-rw-r--r--source/dsb/sfx2/messages.po134
-rw-r--r--source/dsb/svtools/messages.po62
-rw-r--r--source/dsb/svx/messages.po138
-rw-r--r--source/dsb/sw/messages.po160
-rw-r--r--source/dz/cui/messages.po6
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/dz/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/dz/sc/messages.po187
-rw-r--r--source/dz/sd/messages.po34
-rw-r--r--source/dz/sfx2/messages.po132
-rw-r--r--source/dz/svtools/messages.po60
-rw-r--r--source/dz/svx/messages.po124
-rw-r--r--source/dz/sw/messages.po158
-rw-r--r--source/el/cui/messages.po24
-rw-r--r--source/el/formula/messages.po6
-rw-r--r--source/el/fpicker/messages.po28
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po56
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/el/helpcontent2/source/text/shared/menu.po32
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/el/helpcontent2/source/text/simpress/00.po21
-rw-r--r--source/el/helpcontent2/source/text/simpress/01.po68
-rw-r--r--source/el/helpcontent2/source/text/simpress/02.po20
-rw-r--r--source/el/helpcontent2/source/text/swriter.po6
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po40
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po200
-rw-r--r--source/el/helpcontent2/source/text/swriter/02.po8
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/el/sc/messages.po196
-rw-r--r--source/el/sd/messages.po34
-rw-r--r--source/el/sfx2/messages.po134
-rw-r--r--source/el/svtools/messages.po62
-rw-r--r--source/el/svx/messages.po136
-rw-r--r--source/el/sw/messages.po160
-rw-r--r--source/en-GB/cui/messages.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po46
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/en-GB/sc/messages.po186
-rw-r--r--source/en-GB/sd/messages.po34
-rw-r--r--source/en-GB/sfx2/messages.po132
-rw-r--r--source/en-GB/svtools/messages.po60
-rw-r--r--source/en-GB/svx/messages.po136
-rw-r--r--source/en-GB/sw/messages.po160
-rw-r--r--source/en-ZA/cui/messages.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/en-ZA/sc/messages.po187
-rw-r--r--source/en-ZA/sd/messages.po34
-rw-r--r--source/en-ZA/sfx2/messages.po132
-rw-r--r--source/en-ZA/svtools/messages.po60
-rw-r--r--source/en-ZA/svx/messages.po124
-rw-r--r--source/en-ZA/sw/messages.po158
-rw-r--r--source/eo/cui/messages.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/eo/sc/messages.po198
-rw-r--r--source/eo/scp2/source/ooo.po8
-rw-r--r--source/eo/sd/messages.po34
-rw-r--r--source/eo/sfx2/messages.po132
-rw-r--r--source/eo/svtools/messages.po60
-rw-r--r--source/eo/svx/messages.po136
-rw-r--r--source/eo/sw/messages.po160
-rw-r--r--source/es/cui/messages.po16
-rw-r--r--source/es/fpicker/messages.po8
-rw-r--r--source/es/helpcontent2/source/text/sbasic/python.po12
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po8
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/es/sc/messages.po194
-rw-r--r--source/es/sd/messages.po34
-rw-r--r--source/es/sfx2/messages.po134
-rw-r--r--source/es/svtools/messages.po60
-rw-r--r--source/es/svx/messages.po140
-rw-r--r--source/es/sw/messages.po164
-rw-r--r--source/et/cui/messages.po6
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po40
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/et/sc/messages.po186
-rw-r--r--source/et/sd/messages.po34
-rw-r--r--source/et/sfx2/messages.po132
-rw-r--r--source/et/svtools/messages.po60
-rw-r--r--source/et/svx/messages.po136
-rw-r--r--source/et/sw/messages.po160
-rw-r--r--source/eu/cui/messages.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po48
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po90
-rw-r--r--source/eu/sc/messages.po186
-rw-r--r--source/eu/sd/messages.po34
-rw-r--r--source/eu/sfx2/messages.po132
-rw-r--r--source/eu/svtools/messages.po60
-rw-r--r--source/eu/svx/messages.po136
-rw-r--r--source/eu/sw/messages.po160
-rw-r--r--source/fa/cui/messages.po6
-rw-r--r--source/fa/sc/messages.po187
-rw-r--r--source/fa/sd/messages.po34
-rw-r--r--source/fa/sfx2/messages.po132
-rw-r--r--source/fa/svtools/messages.po60
-rw-r--r--source/fa/svx/messages.po124
-rw-r--r--source/fa/sw/messages.po160
-rw-r--r--source/fi/cui/messages.po10
-rw-r--r--source/fi/formula/messages.po6
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/fi/sc/messages.po202
-rw-r--r--source/fi/sd/messages.po41
-rw-r--r--source/fi/sfx2/messages.po132
-rw-r--r--source/fi/svtools/messages.po62
-rw-r--r--source/fi/svx/messages.po136
-rw-r--r--source/fi/sw/messages.po164
-rw-r--r--source/fr/cui/messages.po8
-rw-r--r--source/fr/helpcontent2/source/auxiliary.po6
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/python.po12
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po56
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/fr/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po108
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/fr/sc/messages.po186
-rw-r--r--source/fr/sd/messages.po34
-rw-r--r--source/fr/sfx2/messages.po132
-rw-r--r--source/fr/svtools/messages.po62
-rw-r--r--source/fr/svx/messages.po136
-rw-r--r--source/fr/sw/messages.po160
-rw-r--r--source/fur/cui/messages.po6
-rw-r--r--source/fur/sc/messages.po186
-rw-r--r--source/fur/sd/messages.po34
-rw-r--r--source/fur/sfx2/messages.po132
-rw-r--r--source/fur/svtools/messages.po60
-rw-r--r--source/fur/svx/messages.po124
-rw-r--r--source/fur/sw/messages.po158
-rw-r--r--source/fy/cui/messages.po6
-rw-r--r--source/fy/sc/messages.po186
-rw-r--r--source/fy/sd/messages.po34
-rw-r--r--source/fy/sfx2/messages.po132
-rw-r--r--source/fy/svtools/messages.po60
-rw-r--r--source/fy/svx/messages.po124
-rw-r--r--source/fy/sw/messages.po160
-rw-r--r--source/ga/cui/messages.po6
-rw-r--r--source/ga/sc/messages.po186
-rw-r--r--source/ga/sd/messages.po34
-rw-r--r--source/ga/sfx2/messages.po132
-rw-r--r--source/ga/svtools/messages.po60
-rw-r--r--source/ga/svx/messages.po124
-rw-r--r--source/ga/sw/messages.po160
-rw-r--r--source/gd/cui/messages.po6
-rw-r--r--source/gd/sc/messages.po186
-rw-r--r--source/gd/sd/messages.po34
-rw-r--r--source/gd/sfx2/messages.po132
-rw-r--r--source/gd/svtools/messages.po60
-rw-r--r--source/gd/svx/messages.po124
-rw-r--r--source/gd/sw/messages.po160
-rw-r--r--source/gl/cui/messages.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po40
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/gl/sc/messages.po196
-rw-r--r--source/gl/sd/messages.po34
-rw-r--r--source/gl/sfx2/messages.po134
-rw-r--r--source/gl/svtools/messages.po62
-rw-r--r--source/gl/svx/messages.po152
-rw-r--r--source/gl/sw/messages.po180
-rw-r--r--source/gu/cui/messages.po6
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/gu/sc/messages.po188
-rw-r--r--source/gu/sd/messages.po34
-rw-r--r--source/gu/sfx2/messages.po132
-rw-r--r--source/gu/svtools/messages.po60
-rw-r--r--source/gu/svx/messages.po124
-rw-r--r--source/gu/sw/messages.po158
-rw-r--r--source/gug/cui/messages.po6
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/python.po12
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po8
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po12
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po16
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/gug/sc/messages.po186
-rw-r--r--source/gug/sd/messages.po34
-rw-r--r--source/gug/sfx2/messages.po132
-rw-r--r--source/gug/svtools/messages.po60
-rw-r--r--source/gug/svx/messages.po124
-rw-r--r--source/gug/sw/messages.po158
-rw-r--r--source/he/cui/messages.po6
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/he/sc/messages.po189
-rw-r--r--source/he/sd/messages.po34
-rw-r--r--source/he/sfx2/messages.po132
-rw-r--r--source/he/svtools/messages.po60
-rw-r--r--source/he/svx/messages.po124
-rw-r--r--source/he/sw/messages.po160
-rw-r--r--source/hi/cui/messages.po6
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po62
-rw-r--r--source/hi/sc/messages.po188
-rw-r--r--source/hi/sd/messages.po34
-rw-r--r--source/hi/sfx2/messages.po132
-rw-r--r--source/hi/svtools/messages.po60
-rw-r--r--source/hi/svx/messages.po124
-rw-r--r--source/hi/sw/messages.po158
-rw-r--r--source/hr/cui/messages.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/hr/sc/messages.po186
-rw-r--r--source/hr/sd/messages.po34
-rw-r--r--source/hr/sfx2/messages.po132
-rw-r--r--source/hr/svtools/messages.po60
-rw-r--r--source/hr/svx/messages.po124
-rw-r--r--source/hr/sw/messages.po160
-rw-r--r--source/hsb/cui/messages.po14
-rw-r--r--source/hsb/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/hsb/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/hsb/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/hsb/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/hsb/helpcontent2/source/text/swriter/guide.po236
-rw-r--r--source/hsb/sc/messages.po196
-rw-r--r--source/hsb/sd/messages.po34
-rw-r--r--source/hsb/sfx2/messages.po134
-rw-r--r--source/hsb/svtools/messages.po62
-rw-r--r--source/hsb/svx/messages.po138
-rw-r--r--source/hsb/sw/messages.po160
-rw-r--r--source/hu/cui/messages.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po92
-rw-r--r--source/hu/sc/messages.po186
-rw-r--r--source/hu/sd/messages.po34
-rw-r--r--source/hu/sfx2/messages.po132
-rw-r--r--source/hu/svtools/messages.po60
-rw-r--r--source/hu/svx/messages.po136
-rw-r--r--source/hu/sw/messages.po160
-rw-r--r--source/hy/cui/messages.po14
-rw-r--r--source/hy/sc/messages.po196
-rw-r--r--source/hy/sd/messages.po34
-rw-r--r--source/hy/sfx2/messages.po134
-rw-r--r--source/hy/svtools/messages.po62
-rw-r--r--source/hy/svx/messages.po138
-rw-r--r--source/hy/sw/messages.po162
-rw-r--r--source/id/cui/messages.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/id/sc/messages.po196
-rw-r--r--source/id/sd/messages.po34
-rw-r--r--source/id/sfx2/messages.po134
-rw-r--r--source/id/svtools/messages.po62
-rw-r--r--source/id/svx/messages.po136
-rw-r--r--source/id/sw/messages.po160
-rw-r--r--source/is/cui/messages.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/is/sc/messages.po186
-rw-r--r--source/is/sd/messages.po34
-rw-r--r--source/is/sfx2/messages.po132
-rw-r--r--source/is/svtools/messages.po60
-rw-r--r--source/is/svx/messages.po136
-rw-r--r--source/is/sw/messages.po160
-rw-r--r--source/it/cui/messages.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po56
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po92
-rw-r--r--source/it/sc/messages.po186
-rw-r--r--source/it/sd/messages.po34
-rw-r--r--source/it/sfx2/messages.po132
-rw-r--r--source/it/svtools/messages.po60
-rw-r--r--source/it/svx/messages.po136
-rw-r--r--source/it/sw/messages.po160
-rw-r--r--source/ja/cui/messages.po6
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po40
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po10
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po86
-rw-r--r--source/ja/sc/messages.po194
-rw-r--r--source/ja/sd/messages.po34
-rw-r--r--source/ja/sfx2/messages.po132
-rw-r--r--source/ja/svtools/messages.po62
-rw-r--r--source/ja/svx/messages.po136
-rw-r--r--source/ja/sw/messages.po160
-rw-r--r--source/jv/cui/messages.po6
-rw-r--r--source/jv/sc/messages.po186
-rw-r--r--source/jv/sd/messages.po34
-rw-r--r--source/jv/sfx2/messages.po132
-rw-r--r--source/jv/svtools/messages.po60
-rw-r--r--source/jv/svx/messages.po124
-rw-r--r--source/jv/sw/messages.po158
-rw-r--r--source/ka/cui/messages.po14
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/ka/sc/messages.po196
-rw-r--r--source/ka/sd/messages.po34
-rw-r--r--source/ka/sfx2/messages.po134
-rw-r--r--source/ka/svtools/messages.po62
-rw-r--r--source/ka/svx/messages.po138
-rw-r--r--source/ka/sw/messages.po162
-rw-r--r--source/kab/cui/messages.po6
-rw-r--r--source/kab/sc/messages.po188
-rw-r--r--source/kab/sd/messages.po34
-rw-r--r--source/kab/sfx2/messages.po132
-rw-r--r--source/kab/svtools/messages.po60
-rw-r--r--source/kab/svx/messages.po124
-rw-r--r--source/kab/sw/messages.po158
-rw-r--r--source/kk/chart2/messages.po6
-rw-r--r--source/kk/cui/messages.po8
-rw-r--r--source/kk/sc/messages.po188
-rw-r--r--source/kk/sd/messages.po34
-rw-r--r--source/kk/sfx2/messages.po134
-rw-r--r--source/kk/svtools/messages.po62
-rw-r--r--source/kk/svx/messages.po136
-rw-r--r--source/kk/sw/messages.po160
-rw-r--r--source/kl/cui/messages.po6
-rw-r--r--source/kl/sc/messages.po186
-rw-r--r--source/kl/sd/messages.po34
-rw-r--r--source/kl/sfx2/messages.po132
-rw-r--r--source/kl/svtools/messages.po60
-rw-r--r--source/kl/svx/messages.po124
-rw-r--r--source/kl/sw/messages.po158
-rw-r--r--source/km/cui/messages.po6
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/km/sc/messages.po188
-rw-r--r--source/km/sd/messages.po34
-rw-r--r--source/km/sfx2/messages.po132
-rw-r--r--source/km/svtools/messages.po60
-rw-r--r--source/km/svx/messages.po124
-rw-r--r--source/km/sw/messages.po158
-rw-r--r--source/kmr-Latn/cui/messages.po6
-rw-r--r--source/kmr-Latn/sc/messages.po187
-rw-r--r--source/kmr-Latn/sd/messages.po34
-rw-r--r--source/kmr-Latn/sfx2/messages.po132
-rw-r--r--source/kmr-Latn/svtools/messages.po60
-rw-r--r--source/kmr-Latn/svx/messages.po124
-rw-r--r--source/kmr-Latn/sw/messages.po158
-rw-r--r--source/kn/cui/messages.po6
-rw-r--r--source/kn/sc/messages.po188
-rw-r--r--source/kn/sd/messages.po34
-rw-r--r--source/kn/sfx2/messages.po132
-rw-r--r--source/kn/svtools/messages.po60
-rw-r--r--source/kn/svx/messages.po124
-rw-r--r--source/kn/sw/messages.po158
-rw-r--r--source/ko/cui/messages.po6
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/ko/sc/messages.po186
-rw-r--r--source/ko/sd/messages.po34
-rw-r--r--source/ko/sfx2/messages.po132
-rw-r--r--source/ko/svtools/messages.po62
-rw-r--r--source/ko/svx/messages.po124
-rw-r--r--source/ko/sw/messages.po178
-rw-r--r--source/kok/cui/messages.po6
-rw-r--r--source/kok/sc/messages.po187
-rw-r--r--source/kok/sd/messages.po34
-rw-r--r--source/kok/sfx2/messages.po132
-rw-r--r--source/kok/svtools/messages.po60
-rw-r--r--source/kok/svx/messages.po124
-rw-r--r--source/kok/sw/messages.po158
-rw-r--r--source/ks/cui/messages.po6
-rw-r--r--source/ks/sc/messages.po187
-rw-r--r--source/ks/sd/messages.po34
-rw-r--r--source/ks/sfx2/messages.po132
-rw-r--r--source/ks/svtools/messages.po60
-rw-r--r--source/ks/svx/messages.po124
-rw-r--r--source/ks/sw/messages.po158
-rw-r--r--source/ky/cui/messages.po6
-rw-r--r--source/ky/sc/messages.po186
-rw-r--r--source/ky/sd/messages.po34
-rw-r--r--source/ky/sfx2/messages.po132
-rw-r--r--source/ky/svtools/messages.po60
-rw-r--r--source/ky/svx/messages.po124
-rw-r--r--source/ky/sw/messages.po158
-rw-r--r--source/lb/cui/messages.po6
-rw-r--r--source/lb/sc/messages.po187
-rw-r--r--source/lb/sd/messages.po34
-rw-r--r--source/lb/sfx2/messages.po132
-rw-r--r--source/lb/svtools/messages.po60
-rw-r--r--source/lb/svx/messages.po124
-rw-r--r--source/lb/sw/messages.po158
-rw-r--r--source/lo/cui/messages.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po62
-rw-r--r--source/lo/sc/messages.po187
-rw-r--r--source/lo/sd/messages.po34
-rw-r--r--source/lo/sfx2/messages.po132
-rw-r--r--source/lo/svtools/messages.po60
-rw-r--r--source/lo/svx/messages.po124
-rw-r--r--source/lo/sw/messages.po158
-rw-r--r--source/lt/cui/messages.po6
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po88
-rw-r--r--source/lt/sc/messages.po188
-rw-r--r--source/lt/sd/messages.po34
-rw-r--r--source/lt/sfx2/messages.po132
-rw-r--r--source/lt/svtools/messages.po60
-rw-r--r--source/lt/svx/messages.po124
-rw-r--r--source/lt/sw/messages.po160
-rw-r--r--source/lv/cui/messages.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/lv/sc/messages.po186
-rw-r--r--source/lv/sd/messages.po34
-rw-r--r--source/lv/sfx2/messages.po132
-rw-r--r--source/lv/svtools/messages.po60
-rw-r--r--source/lv/svx/messages.po124
-rw-r--r--source/lv/sw/messages.po162
-rw-r--r--source/mai/cui/messages.po6
-rw-r--r--source/mai/sc/messages.po187
-rw-r--r--source/mai/sd/messages.po34
-rw-r--r--source/mai/sfx2/messages.po132
-rw-r--r--source/mai/svtools/messages.po60
-rw-r--r--source/mai/svx/messages.po124
-rw-r--r--source/mai/sw/messages.po158
-rw-r--r--source/mk/cui/messages.po6
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/mk/sc/messages.po187
-rw-r--r--source/mk/sd/messages.po34
-rw-r--r--source/mk/sfx2/messages.po132
-rw-r--r--source/mk/svtools/messages.po60
-rw-r--r--source/mk/svx/messages.po124
-rw-r--r--source/mk/sw/messages.po158
-rw-r--r--source/ml/cui/messages.po6
-rw-r--r--source/ml/sc/messages.po188
-rw-r--r--source/ml/sd/messages.po34
-rw-r--r--source/ml/sfx2/messages.po132
-rw-r--r--source/ml/svtools/messages.po60
-rw-r--r--source/ml/svx/messages.po124
-rw-r--r--source/ml/sw/messages.po158
-rw-r--r--source/mn/cui/messages.po6
-rw-r--r--source/mn/sc/messages.po187
-rw-r--r--source/mn/sd/messages.po34
-rw-r--r--source/mn/sfx2/messages.po132
-rw-r--r--source/mn/svtools/messages.po60
-rw-r--r--source/mn/svx/messages.po124
-rw-r--r--source/mn/sw/messages.po162
-rw-r--r--source/mni/cui/messages.po6
-rw-r--r--source/mni/sc/messages.po187
-rw-r--r--source/mni/sd/messages.po34
-rw-r--r--source/mni/sfx2/messages.po132
-rw-r--r--source/mni/svtools/messages.po60
-rw-r--r--source/mni/svx/messages.po124
-rw-r--r--source/mni/sw/messages.po158
-rw-r--r--source/mr/cui/messages.po6
-rw-r--r--source/mr/sc/messages.po188
-rw-r--r--source/mr/sd/messages.po34
-rw-r--r--source/mr/sfx2/messages.po132
-rw-r--r--source/mr/svtools/messages.po60
-rw-r--r--source/mr/svx/messages.po124
-rw-r--r--source/mr/sw/messages.po158
-rw-r--r--source/my/cui/messages.po6
-rw-r--r--source/my/sc/messages.po187
-rw-r--r--source/my/sd/messages.po34
-rw-r--r--source/my/sfx2/messages.po132
-rw-r--r--source/my/svtools/messages.po60
-rw-r--r--source/my/svx/messages.po124
-rw-r--r--source/my/sw/messages.po158
-rw-r--r--source/nb/cui/messages.po14
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/nb/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po36
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/nb/sc/messages.po196
-rw-r--r--source/nb/sd/messages.po34
-rw-r--r--source/nb/sfx2/messages.po134
-rw-r--r--source/nb/svtools/messages.po62
-rw-r--r--source/nb/svx/messages.po138
-rw-r--r--source/nb/sw/messages.po160
-rw-r--r--source/ne/cui/messages.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/ne/sc/messages.po187
-rw-r--r--source/ne/sd/messages.po34
-rw-r--r--source/ne/sfx2/messages.po132
-rw-r--r--source/ne/svtools/messages.po60
-rw-r--r--source/ne/svx/messages.po124
-rw-r--r--source/ne/sw/messages.po158
-rw-r--r--source/nl/cui/messages.po36
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/nl/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po34
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/nl/sc/messages.po230
-rw-r--r--source/nl/sd/messages.po34
-rw-r--r--source/nl/sfx2/messages.po134
-rw-r--r--source/nl/svtools/messages.po62
-rw-r--r--source/nl/svx/messages.po138
-rw-r--r--source/nl/sw/messages.po160
-rw-r--r--source/nn/chart2/messages.po6
-rw-r--r--source/nn/cui/messages.po24
-rw-r--r--source/nn/desktop/messages.po6
-rw-r--r--source/nn/extras/source/autocorr/emoji.po4
-rw-r--r--source/nn/filter/messages.po6
-rw-r--r--source/nn/formula/messages.po10
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/nn/helpcontent2/source/text/schart.po8
-rw-r--r--source/nn/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/nn/helpcontent2/source/text/shared.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po70
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po30
-rw-r--r--source/nn/helpcontent2/source/text/shared/05.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/nn/helpcontent2/source/text/simpress/00.po6
-rw-r--r--source/nn/helpcontent2/source/text/simpress/01.po4
-rw-r--r--source/nn/helpcontent2/source/text/simpress/guide.po6
-rw-r--r--source/nn/helpcontent2/source/text/smath/01.po10
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/nn/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po128
-rw-r--r--source/nn/helpcontent2/source/text/swriter/librelogo.po8
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nn/readlicense_oo/docs.po6
-rw-r--r--source/nn/sc/messages.po206
-rw-r--r--source/nn/scaddins/messages.po8
-rw-r--r--source/nn/sd/messages.po38
-rw-r--r--source/nn/sfx2/messages.po140
-rw-r--r--source/nn/starmath/messages.po8
-rw-r--r--source/nn/svtools/messages.po62
-rw-r--r--source/nn/svx/messages.po242
-rw-r--r--source/nn/sw/messages.po182
-rw-r--r--source/nn/swext/mediawiki/help.po6
-rw-r--r--source/nn/wizards/source/resources.po12
-rw-r--r--source/nn/xmlsecurity/messages.po8
-rw-r--r--source/nr/cui/messages.po6
-rw-r--r--source/nr/sc/messages.po187
-rw-r--r--source/nr/sd/messages.po34
-rw-r--r--source/nr/sfx2/messages.po132
-rw-r--r--source/nr/svtools/messages.po60
-rw-r--r--source/nr/svx/messages.po124
-rw-r--r--source/nr/sw/messages.po158
-rw-r--r--source/nso/cui/messages.po6
-rw-r--r--source/nso/sc/messages.po187
-rw-r--r--source/nso/sd/messages.po34
-rw-r--r--source/nso/sfx2/messages.po132
-rw-r--r--source/nso/svtools/messages.po60
-rw-r--r--source/nso/svx/messages.po124
-rw-r--r--source/nso/sw/messages.po158
-rw-r--r--source/oc/cui/messages.po6
-rw-r--r--source/oc/sc/messages.po186
-rw-r--r--source/oc/sd/messages.po34
-rw-r--r--source/oc/sfx2/messages.po132
-rw-r--r--source/oc/svtools/messages.po60
-rw-r--r--source/oc/svx/messages.po124
-rw-r--r--source/oc/sw/messages.po160
-rw-r--r--source/om/cui/messages.po6
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/om/sc/messages.po187
-rw-r--r--source/om/sd/messages.po34
-rw-r--r--source/om/sfx2/messages.po132
-rw-r--r--source/om/svtools/messages.po60
-rw-r--r--source/om/svx/messages.po124
-rw-r--r--source/om/sw/messages.po158
-rw-r--r--source/or/cui/messages.po6
-rw-r--r--source/or/sc/messages.po188
-rw-r--r--source/or/sd/messages.po34
-rw-r--r--source/or/sfx2/messages.po132
-rw-r--r--source/or/svtools/messages.po60
-rw-r--r--source/or/svx/messages.po124
-rw-r--r--source/or/sw/messages.po158
-rw-r--r--source/pa-IN/cui/messages.po6
-rw-r--r--source/pa-IN/sc/messages.po187
-rw-r--r--source/pa-IN/sd/messages.po34
-rw-r--r--source/pa-IN/sfx2/messages.po132
-rw-r--r--source/pa-IN/svtools/messages.po60
-rw-r--r--source/pa-IN/svx/messages.po136
-rw-r--r--source/pa-IN/sw/messages.po160
-rw-r--r--source/pl/cui/messages.po14
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po24
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po60
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/pl/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po40
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/pl/sc/messages.po200
-rw-r--r--source/pl/sd/messages.po34
-rw-r--r--source/pl/sfx2/messages.po134
-rw-r--r--source/pl/svtools/messages.po62
-rw-r--r--source/pl/svx/messages.po138
-rw-r--r--source/pl/sw/messages.po160
-rw-r--r--source/pt-BR/cui/messages.po14
-rw-r--r--source/pt-BR/helpcontent2/source/text/sbasic/python.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po56
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/help.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po32
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po94
-rw-r--r--source/pt-BR/librelogo/source/pythonpath.po8
-rw-r--r--source/pt-BR/sc/messages.po196
-rw-r--r--source/pt-BR/sd/messages.po34
-rw-r--r--source/pt-BR/sfx2/messages.po134
-rw-r--r--source/pt-BR/svtools/messages.po62
-rw-r--r--source/pt-BR/svx/messages.po138
-rw-r--r--source/pt-BR/sw/messages.po160
-rw-r--r--source/pt/cui/messages.po6
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po44
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po87
-rw-r--r--source/pt/sc/messages.po186
-rw-r--r--source/pt/sd/messages.po34
-rw-r--r--source/pt/sfx2/messages.po132
-rw-r--r--source/pt/svtools/messages.po60
-rw-r--r--source/pt/svx/messages.po136
-rw-r--r--source/pt/sw/messages.po160
-rw-r--r--source/ro/cui/messages.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po10
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po62
-rw-r--r--source/ro/sc/messages.po187
-rw-r--r--source/ro/sd/messages.po34
-rw-r--r--source/ro/sfx2/messages.po132
-rw-r--r--source/ro/svtools/messages.po60
-rw-r--r--source/ro/svx/messages.po124
-rw-r--r--source/ro/sw/messages.po158
-rw-r--r--source/ru/cui/messages.po8
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po46
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/ru/sc/messages.po186
-rw-r--r--source/ru/sd/messages.po34
-rw-r--r--source/ru/sfx2/messages.po132
-rw-r--r--source/ru/svtools/messages.po60
-rw-r--r--source/ru/svx/messages.po136
-rw-r--r--source/ru/sw/messages.po160
-rw-r--r--source/rw/cui/messages.po6
-rw-r--r--source/rw/sc/messages.po187
-rw-r--r--source/rw/sd/messages.po34
-rw-r--r--source/rw/sfx2/messages.po132
-rw-r--r--source/rw/svtools/messages.po60
-rw-r--r--source/rw/svx/messages.po124
-rw-r--r--source/rw/sw/messages.po158
-rw-r--r--source/sa-IN/cui/messages.po6
-rw-r--r--source/sa-IN/sc/messages.po187
-rw-r--r--source/sa-IN/sd/messages.po34
-rw-r--r--source/sa-IN/sfx2/messages.po132
-rw-r--r--source/sa-IN/svtools/messages.po60
-rw-r--r--source/sa-IN/svx/messages.po124
-rw-r--r--source/sa-IN/sw/messages.po158
-rw-r--r--source/sah/cui/messages.po6
-rw-r--r--source/sah/sc/messages.po186
-rw-r--r--source/sah/sd/messages.po34
-rw-r--r--source/sah/sfx2/messages.po132
-rw-r--r--source/sah/svtools/messages.po60
-rw-r--r--source/sah/svx/messages.po124
-rw-r--r--source/sah/sw/messages.po158
-rw-r--r--source/sat/cui/messages.po6
-rw-r--r--source/sat/sc/messages.po187
-rw-r--r--source/sat/sd/messages.po34
-rw-r--r--source/sat/sfx2/messages.po132
-rw-r--r--source/sat/svtools/messages.po60
-rw-r--r--source/sat/svx/messages.po124
-rw-r--r--source/sat/sw/messages.po158
-rw-r--r--source/sd/cui/messages.po6
-rw-r--r--source/sd/sc/messages.po187
-rw-r--r--source/sd/sd/messages.po34
-rw-r--r--source/sd/sfx2/messages.po132
-rw-r--r--source/sd/svtools/messages.po60
-rw-r--r--source/sd/svx/messages.po124
-rw-r--r--source/sd/sw/messages.po158
-rw-r--r--source/si/cui/messages.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/si/sc/messages.po187
-rw-r--r--source/si/sd/messages.po34
-rw-r--r--source/si/sfx2/messages.po132
-rw-r--r--source/si/svtools/messages.po60
-rw-r--r--source/si/svx/messages.po124
-rw-r--r--source/si/sw/messages.po158
-rw-r--r--source/sid/cui/messages.po6
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/sid/sc/messages.po188
-rw-r--r--source/sid/sd/messages.po34
-rw-r--r--source/sid/sfx2/messages.po132
-rw-r--r--source/sid/svtools/messages.po60
-rw-r--r--source/sid/svx/messages.po124
-rw-r--r--source/sid/sw/messages.po158
-rw-r--r--source/sk/cui/messages.po8
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po70
-rw-r--r--source/sk/sc/messages.po186
-rw-r--r--source/sk/sd/messages.po34
-rw-r--r--source/sk/sfx2/messages.po134
-rw-r--r--source/sk/svtools/messages.po62
-rw-r--r--source/sk/svx/messages.po136
-rw-r--r--source/sk/sw/messages.po160
-rw-r--r--source/sq/cui/messages.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po12
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/sq/sc/messages.po187
-rw-r--r--source/sq/sd/messages.po34
-rw-r--r--source/sq/sfx2/messages.po132
-rw-r--r--source/sq/svtools/messages.po60
-rw-r--r--source/sq/svx/messages.po124
-rw-r--r--source/sq/sw/messages.po158
-rw-r--r--source/sr-Latn/cui/messages.po6
-rw-r--r--source/sr-Latn/sc/messages.po188
-rw-r--r--source/sr-Latn/sd/messages.po34
-rw-r--r--source/sr-Latn/sfx2/messages.po132
-rw-r--r--source/sr-Latn/svtools/messages.po60
-rw-r--r--source/sr-Latn/svx/messages.po124
-rw-r--r--source/sr-Latn/sw/messages.po158
-rw-r--r--source/sr/cui/messages.po6
-rw-r--r--source/sr/sc/messages.po186
-rw-r--r--source/sr/sd/messages.po34
-rw-r--r--source/sr/sfx2/messages.po132
-rw-r--r--source/sr/svtools/messages.po60
-rw-r--r--source/sr/svx/messages.po124
-rw-r--r--source/sr/sw/messages.po160
-rw-r--r--source/ss/cui/messages.po6
-rw-r--r--source/ss/sc/messages.po187
-rw-r--r--source/ss/sd/messages.po34
-rw-r--r--source/ss/sfx2/messages.po132
-rw-r--r--source/ss/svtools/messages.po60
-rw-r--r--source/ss/svx/messages.po124
-rw-r--r--source/ss/sw/messages.po158
-rw-r--r--source/st/cui/messages.po6
-rw-r--r--source/st/sc/messages.po187
-rw-r--r--source/st/sd/messages.po34
-rw-r--r--source/st/sfx2/messages.po132
-rw-r--r--source/st/svtools/messages.po60
-rw-r--r--source/st/svx/messages.po124
-rw-r--r--source/st/sw/messages.po158
-rw-r--r--source/sun/basctl/messages.po6
-rw-r--r--source/sun/chart2/messages.po4
-rw-r--r--source/sun/cui/messages.po46
-rw-r--r--source/sun/dbaccess/messages.po28
-rw-r--r--source/sun/editeng/messages.po4
-rw-r--r--source/sun/extensions/messages.po6
-rw-r--r--source/sun/extras/source/autocorr/emoji.po4
-rw-r--r--source/sun/filter/messages.po4
-rw-r--r--source/sun/forms/messages.po4
-rw-r--r--source/sun/fpicker/messages.po4
-rw-r--r--source/sun/framework/messages.po10
-rw-r--r--source/sun/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po46
-rw-r--r--source/sun/officecfg/registry/data/org/openoffice/Office.po16
-rw-r--r--source/sun/officecfg/registry/data/org/openoffice/Office/UI.po74
-rw-r--r--source/sun/reportdesign/messages.po6
-rw-r--r--source/sun/sc/messages.po232
-rw-r--r--source/sun/scaddins/messages.po20
-rw-r--r--source/sun/scp2/source/ooo.po6
-rw-r--r--source/sun/scp2/source/python.po10
-rw-r--r--source/sun/sd/messages.po48
-rw-r--r--source/sun/sfx2/messages.po174
-rw-r--r--source/sun/svtools/messages.po62
-rw-r--r--source/sun/svx/messages.po152
-rw-r--r--source/sun/sw/messages.po212
-rw-r--r--source/sun/sysui/desktop/share.po18
-rw-r--r--source/sun/uui/messages.po4
-rw-r--r--source/sun/vcl/messages.po4
-rw-r--r--source/sun/wizards/messages.po6
-rw-r--r--source/sun/wizards/source/resources.po4
-rw-r--r--source/sun/xmlsecurity/messages.po18
-rw-r--r--source/sv/cui/messages.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po40
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/sv/sc/messages.po196
-rw-r--r--source/sv/sd/messages.po34
-rw-r--r--source/sv/sfx2/messages.po134
-rw-r--r--source/sv/svtools/messages.po62
-rw-r--r--source/sv/svx/messages.po138
-rw-r--r--source/sv/sw/messages.po160
-rw-r--r--source/sw-TZ/cui/messages.po6
-rw-r--r--source/sw-TZ/sc/messages.po187
-rw-r--r--source/sw-TZ/sd/messages.po34
-rw-r--r--source/sw-TZ/sfx2/messages.po132
-rw-r--r--source/sw-TZ/svtools/messages.po60
-rw-r--r--source/sw-TZ/svx/messages.po124
-rw-r--r--source/sw-TZ/sw/messages.po158
-rw-r--r--source/szl/cui/messages.po6
-rw-r--r--source/szl/sc/messages.po186
-rw-r--r--source/szl/sd/messages.po34
-rw-r--r--source/szl/sfx2/messages.po132
-rw-r--r--source/szl/svtools/messages.po60
-rw-r--r--source/szl/svx/messages.po124
-rw-r--r--source/szl/sw/messages.po162
-rw-r--r--source/ta/cui/messages.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po66
-rw-r--r--source/ta/sc/messages.po188
-rw-r--r--source/ta/sd/messages.po34
-rw-r--r--source/ta/sfx2/messages.po132
-rw-r--r--source/ta/svtools/messages.po60
-rw-r--r--source/ta/svx/messages.po124
-rw-r--r--source/ta/sw/messages.po158
-rw-r--r--source/te/cui/messages.po6
-rw-r--r--source/te/sc/messages.po188
-rw-r--r--source/te/sd/messages.po34
-rw-r--r--source/te/sfx2/messages.po132
-rw-r--r--source/te/svtools/messages.po60
-rw-r--r--source/te/svx/messages.po124
-rw-r--r--source/te/sw/messages.po158
-rw-r--r--source/tg/cui/messages.po6
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/tg/sc/messages.po187
-rw-r--r--source/tg/sd/messages.po34
-rw-r--r--source/tg/sfx2/messages.po132
-rw-r--r--source/tg/svtools/messages.po60
-rw-r--r--source/tg/svx/messages.po124
-rw-r--r--source/tg/sw/messages.po158
-rw-r--r--source/th/cui/messages.po8
-rw-r--r--source/th/sc/messages.po224
-rw-r--r--source/th/sd/messages.po56
-rw-r--r--source/th/sfx2/messages.po132
-rw-r--r--source/th/starmath/messages.po28
-rw-r--r--source/th/svtools/messages.po68
-rw-r--r--source/th/svx/messages.po222
-rw-r--r--source/th/sw/messages.po180
-rw-r--r--source/th/xmlsecurity/messages.po31
-rw-r--r--source/ti/cui/messages.po6
-rw-r--r--source/ti/sc/messages.po186
-rw-r--r--source/ti/sd/messages.po34
-rw-r--r--source/ti/sfx2/messages.po132
-rw-r--r--source/ti/svtools/messages.po60
-rw-r--r--source/ti/svx/messages.po124
-rw-r--r--source/ti/sw/messages.po158
-rw-r--r--source/tn/cui/messages.po6
-rw-r--r--source/tn/sc/messages.po187
-rw-r--r--source/tn/sd/messages.po34
-rw-r--r--source/tn/sfx2/messages.po132
-rw-r--r--source/tn/svtools/messages.po60
-rw-r--r--source/tn/svx/messages.po124
-rw-r--r--source/tn/sw/messages.po158
-rw-r--r--source/tr/cui/messages.po14
-rw-r--r--source/tr/helpcontent2/source/text/sbasic/guide.po4
-rw-r--r--source/tr/helpcontent2/source/text/scalc/00.po22
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/tr/helpcontent2/source/text/sdraw.po4
-rw-r--r--source/tr/helpcontent2/source/text/shared.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po52
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/tr/helpcontent2/source/text/shared/02.po6
-rw-r--r--source/tr/helpcontent2/source/text/shared/help.po26
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/tr/helpcontent2/source/text/simpress/02.po6
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po8
-rw-r--r--source/tr/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po90
-rw-r--r--source/tr/sc/messages.po196
-rw-r--r--source/tr/sd/messages.po34
-rw-r--r--source/tr/sfx2/messages.po134
-rw-r--r--source/tr/svtools/messages.po62
-rw-r--r--source/tr/svx/messages.po138
-rw-r--r--source/tr/sw/messages.po160
-rw-r--r--source/ts/cui/messages.po6
-rw-r--r--source/ts/sc/messages.po187
-rw-r--r--source/ts/sd/messages.po34
-rw-r--r--source/ts/sfx2/messages.po132
-rw-r--r--source/ts/svtools/messages.po60
-rw-r--r--source/ts/svx/messages.po124
-rw-r--r--source/ts/sw/messages.po158
-rw-r--r--source/tt/cui/messages.po6
-rw-r--r--source/tt/sc/messages.po186
-rw-r--r--source/tt/sd/messages.po34
-rw-r--r--source/tt/sfx2/messages.po132
-rw-r--r--source/tt/svtools/messages.po60
-rw-r--r--source/tt/svx/messages.po124
-rw-r--r--source/tt/sw/messages.po158
-rw-r--r--source/ug/cui/messages.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po64
-rw-r--r--source/ug/sc/messages.po188
-rw-r--r--source/ug/sd/messages.po34
-rw-r--r--source/ug/sfx2/messages.po132
-rw-r--r--source/ug/svtools/messages.po60
-rw-r--r--source/ug/svx/messages.po124
-rw-r--r--source/ug/sw/messages.po158
-rw-r--r--source/uk/cui/messages.po8
-rw-r--r--source/uk/helpcontent2/source/auxiliary.po6
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/uk/sc/messages.po218
-rw-r--r--source/uk/sd/messages.po34
-rw-r--r--source/uk/sfx2/messages.po134
-rw-r--r--source/uk/svtools/messages.po60
-rw-r--r--source/uk/svx/messages.po136
-rw-r--r--source/uk/sw/messages.po160
-rw-r--r--source/ur/cui/messages.po6
-rw-r--r--source/ur/sc/messages.po186
-rw-r--r--source/ur/sd/messages.po34
-rw-r--r--source/ur/sfx2/messages.po132
-rw-r--r--source/ur/svtools/messages.po60
-rw-r--r--source/ur/svx/messages.po124
-rw-r--r--source/ur/sw/messages.po158
-rw-r--r--source/uz/cui/messages.po6
-rw-r--r--source/uz/sc/messages.po187
-rw-r--r--source/uz/sd/messages.po34
-rw-r--r--source/uz/sfx2/messages.po132
-rw-r--r--source/uz/svtools/messages.po60
-rw-r--r--source/uz/svx/messages.po124
-rw-r--r--source/uz/sw/messages.po158
-rw-r--r--source/ve/cui/messages.po6
-rw-r--r--source/ve/sc/messages.po187
-rw-r--r--source/ve/sd/messages.po34
-rw-r--r--source/ve/sfx2/messages.po132
-rw-r--r--source/ve/svtools/messages.po60
-rw-r--r--source/ve/svx/messages.po124
-rw-r--r--source/ve/sw/messages.po158
-rw-r--r--source/vec/cui/messages.po6
-rw-r--r--source/vec/sc/messages.po186
-rw-r--r--source/vec/sd/messages.po34
-rw-r--r--source/vec/sfx2/messages.po132
-rw-r--r--source/vec/svtools/messages.po60
-rw-r--r--source/vec/svx/messages.po124
-rw-r--r--source/vec/sw/messages.po160
-rw-r--r--source/vi/cui/messages.po8
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/vi/sc/messages.po187
-rw-r--r--source/vi/sd/messages.po34
-rw-r--r--source/vi/sfx2/messages.po132
-rw-r--r--source/vi/svtools/messages.po60
-rw-r--r--source/vi/svx/messages.po124
-rw-r--r--source/vi/sw/messages.po158
-rw-r--r--source/xh/cui/messages.po6
-rw-r--r--source/xh/sc/messages.po187
-rw-r--r--source/xh/sd/messages.po34
-rw-r--r--source/xh/sfx2/messages.po132
-rw-r--r--source/xh/svtools/messages.po60
-rw-r--r--source/xh/svx/messages.po124
-rw-r--r--source/xh/sw/messages.po158
-rw-r--r--source/zh-CN/cui/messages.po44
-rw-r--r--source/zh-CN/dbaccess/messages.po10
-rw-r--r--source/zh-CN/editeng/messages.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/zh-CN/sc/messages.po202
-rw-r--r--source/zh-CN/sd/messages.po34
-rw-r--r--source/zh-CN/sfx2/messages.po134
-rw-r--r--source/zh-CN/svtools/messages.po62
-rw-r--r--source/zh-CN/svx/messages.po150
-rw-r--r--source/zh-CN/sw/messages.po160
-rw-r--r--source/zh-TW/cui/messages.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po38
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po14
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po84
-rw-r--r--source/zh-TW/sc/messages.po196
-rw-r--r--source/zh-TW/sd/messages.po34
-rw-r--r--source/zh-TW/sfx2/messages.po134
-rw-r--r--source/zh-TW/svtools/messages.po62
-rw-r--r--source/zh-TW/svx/messages.po136
-rw-r--r--source/zh-TW/sw/messages.po160
-rw-r--r--source/zu/cui/messages.po6
-rw-r--r--source/zu/sc/messages.po187
-rw-r--r--source/zu/sd/messages.po34
-rw-r--r--source/zu/sfx2/messages.po132
-rw-r--r--source/zu/svtools/messages.po60
-rw-r--r--source/zu/svx/messages.po124
-rw-r--r--source/zu/sw/messages.po158
1401 files changed, 51822 insertions, 55124 deletions
diff --git a/source/ab/connectivity/registry/ado/org/openoffice/Office/DataAccess.po b/source/ab/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
index d51cf53e69e..e852b1b4c29 100644
--- a/source/ab/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
+++ b/source/ab/connectivity/registry/ado/org/openoffice/Office/DataAccess.po
@@ -4,15 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-20 14:12+0200\n"
-"PO-Revision-Date: 2017-07-14 22:07+0000\n"
+"PO-Revision-Date: 2024-06-22 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistryadoorgopenofficeofficedataaccess/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1500070028.000000\n"
#. 9EAjq
@@ -33,4 +34,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "Microsoft Access"
-msgstr ""
+msgstr "Microsoft Access"
diff --git a/source/ab/connectivity/registry/macab/org/openoffice/Office/DataAccess.po b/source/ab/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
index 41f3a88fe9a..349367136de 100644
--- a/source/ab/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
+++ b/source/ab/connectivity/registry/macab/org/openoffice/Office/DataAccess.po
@@ -4,15 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-09-22 21:41+0200\n"
-"PO-Revision-Date: 2018-02-09 17:17+0000\n"
+"PO-Revision-Date: 2024-06-22 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/connectivityregistrymacaborgopenofficeofficedataaccess/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1518196646.000000\n"
#. iAibn
@@ -23,4 +24,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "macOS Address Book"
-msgstr ""
+msgstr "macOS адрестә шәҟәы"
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 712031ed93c..e45652a2ef3 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: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-13 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -2556,10 +2556,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Уажәтәи атаблицаҟны афаил CSV абӷьыц ҿыц ҳасабла аатразы шәхы иашәырхәа амениу Абӷьыц▸ Иҭаргылатәуп абӷьыц афаил аҟынтәи."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ab/dictionaries/en/dialog.po b/source/ab/dictionaries/en/dialog.po
index f1a61197997..ac4929a2804 100644
--- a/source/ab/dictionaries/en/dialog.po
+++ b/source/ab/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: 2023-04-19 12:23+0200\n"
-"PO-Revision-Date: 2024-03-16 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionaries/dictionariesendialog/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1516028969.000000\n"
#. fyB4s
@@ -221,7 +221,7 @@ msgctxt ""
"hlp_spaces3\n"
"property.text"
msgid "Check more than two extra space characters between words and sentences."
-msgstr ""
+msgstr "Игәаҭалатәуп ажәақәеи аҳәоуқәеи рыбжьара абжьажьқәа ҩба иреиҳаны рыҟазаара."
#. Z3DR5
#: en_en_US.properties
diff --git a/source/ab/dictionaries/hu_HU/dialog.po b/source/ab/dictionaries/hu_HU/dialog.po
index 508fe6c7d5e..4f1f6972f7a 100644
--- a/source/ab/dictionaries/hu_HU/dialog.po
+++ b/source/ab/dictionaries/hu_HU/dialog.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2019-07-11 18:38+0200\n"
-"PO-Revision-Date: 2021-01-31 16:37+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionarieshu_hudialog/ab/>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionaries/dictionarieshu_hudialog/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.4\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1516028969.000000\n"
#. jFVKx
@@ -86,7 +86,7 @@ msgctxt ""
"compound\n"
"property.text"
msgid "Underline typo-like compound words"
-msgstr ""
+msgstr "Ирыҵшьлатәуп иуадаҩу ажәақәа рҟны акьыԥхьгха еиԥшқәоу"
#. sxQau
#: hu_HU_en_US.properties
diff --git a/source/ab/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po b/source/ab/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
index a71bff0c4bf..158a14e8072 100644
--- a/source/ab/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
+++ b/source/ab/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-20 14:12+0200\n"
-"PO-Revision-Date: 2023-05-08 08:55+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
-"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionariesru_rudialogregistrydataorgopenofficeoffice/ab/>\n"
+"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/dictionaries/dictionariesru_rudialogregistrydataorgopenofficeoffice/ab/>\n"
"Language: ab\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1510558631.000000\n"
#. Hf44z
@@ -24,7 +24,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Languages and Locales"
-msgstr ""
+msgstr "Абызшәақәеи алокалқәеи"
#. EENVY
#: OptionsDialog.xcu
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 286d0a45c07..35dc0c1d213 100644
--- a/source/ab/sc/messages.po
+++ b/source/ab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-01 14:01+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ab/>\n"
@@ -14239,14 +14239,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14469,14 +14470,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23197,91 +23199,91 @@ msgid "_Standard"
msgstr "Астандарт"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Аҵәаӷәа"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Аобласт"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Агага"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Ацәҵара"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Ашрифт"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Ахьҵқәеи аинтервалқәеи"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Атекст"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Атекст анимациа"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Мрагылара-азиатәи акьыԥхьра аԥҟарақәа"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Атабулиациа"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Ацәырлашара"
@@ -23884,103 +23886,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Ианыхтәуп"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Аҿыкәыршара ада"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Аганқәа зегьы рыла"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Адәныҟатәи аҿыкәыршара"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Ишәпоу аҵәаӷәақәа"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Ишәпоу ҵаҟатәи аҵәаӷәа"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Иҩбоу ҵаҟатәи аҵәаӷәа"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Аҵәаӷәа арымарахь"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Аҵәаӷәа арыӷьарахь"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Аҵәаӷәа аҩадахьы"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Аҵәаӷәа аладахьы"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Арӷьарахь-хыхь"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Арӷьарахь-ҵаҟа"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Хыхьтәии ҵаҟатәии аҵәаӷәақәа"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-#, fuzzy
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Армарахтәии арӷьарахьтәии адаҟьақәа"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24019,49 +23924,49 @@ msgid "Format Cells"
msgstr "Абларҭақәа рформат"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Ахыԥхьаӡарақәа"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Ашрифт"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Мрагылара-азиатәи акьыԥхьра аԥҟарақәа"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Аҿыкәыршара"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Аҿаԥшыра"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Абларҭа ахьчара"
@@ -28163,43 +28068,43 @@ msgid "Page Style"
msgstr "Адаҟьа астиль"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Адаҟьа"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Аҿыкәыршара"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Аҿаԥшыра"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Хыхьтәи аколонтитул"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Абӷьыц"
@@ -28241,55 +28146,55 @@ msgid "Cell Style"
msgstr "Абларҭа астиль"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Ахыԥхьаӡарақәа"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Ашрифт"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Мрагылара-азиатәи акьыԥхьра аԥҟарақәа"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Аҿыкәыршара"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Аҿаԥшыра"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Абларҭа ахьчара"
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 182ebbf6b8e..b5cf7bc4055 100644
--- a/source/ab/sd/messages.po
+++ b/source/ab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-03 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ab/>\n"
@@ -9561,97 +9561,97 @@ msgid "_Standard"
msgstr "_Астандарт"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Аҵәаӷәа"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Аобласт"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Агага"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Аҵәцара"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Ашрифт"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Ахьаҵқәеи аинтервалқәеи"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Атекст"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Атекст анимациа"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Аиԥшьыгатә ҵәаӷәа"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Мрагылара-азиатәи акьыԥхьра аԥҟарақәа"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Атабулиациа"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Ацәырлашара"
diff --git a/source/ab/sfx2/messages.po b/source/ab/sfx2/messages.po
index 939ce6e910c..f0867623f46 100644
--- a/source/ab/sfx2/messages.po
+++ b/source/ab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-08-24 11:38+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ab/>\n"
@@ -1599,376 +1599,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Амакросқәа аҿыхуп «Амакросқәа ршәарҭадара» архиарақәа ирыбзоураны."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Иаарԥштәуп амакросқәа"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Иаарԥштәуп ахҭысқәа"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ашьхымӡа"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Аҵәаӷәанҵа"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Афокус"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Абнатә ԥсаатә"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Амцабзқәа"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Ахақәиҭра"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Аԥсабара"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Акарандашь"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Ароиаль"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Апортфилио"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Апрогресс"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Амра аҭашәамҭа"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Ажәытә мода"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Имариоу аграфика"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Арезиуме"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Аҵыхәтәажәа"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Абазатә"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ҳаамҭазтәи"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Амариа"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "Абизнес-процессқәа"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Иқәгатәуп"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ирыцқьатәуп зегьы"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Ажәамаӡа аура"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-ақәыӷәӷәара агиперзхьарԥш: %{link} ахь аиасразы"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(ихархәоуп: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Адокумент"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Аелектронтә таблица"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Апрезентациа"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Асахьа"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Аакьыскьатәиқәа"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ирыцқьатәуп асиа"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Иқәгатәуп ашаблон"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Иқәгатәуп ашаблон"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Иқәгатәуп ашаблон"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Иқәгатәуп ашаблон"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Аимпорт"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Ахьӡ ԥсахтәуп"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Акатегориа ахьӡ ԥсахтәуп"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Акатегориа ҿыц"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO аобиектқәа ринспектор"
diff --git a/source/ab/svtools/messages.po b/source/ab/svtools/messages.po
index 2c4920ae0a6..8dd8ebfdd24 100644
--- a/source/ab/svtools/messages.po
+++ b/source/ab/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: 2024-04-15 19:52+0200\n"
-"PO-Revision-Date: 2024-03-11 15:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ab/>\n"
"Language: ab\n"
@@ -2381,10 +2381,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Иауам ашьақәыргылара $(ARG1) ахь Интернет-еимадара."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2392,7 +2400,7 @@ msgstr ""
"Асервер агха: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2400,37 +2408,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "аИнтернет азеиҧш гха."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Ахқәа раԥҵара ауам."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Иазалху афаилтә системазы афаил ахьӡ ауцәоуп."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Ииашам аҭагалара асинтаксис."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2438,19 +2446,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Арезервтә копиа аҧҵара ауам."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2463,43 +2471,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ииашам адырқәа раура."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Афункциа зынагӡахом: амҩа иаҵанакуеит уажәтәи акаталог."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Иауам аоперациа анагӡара: егьи аиҿартәыра (адиск)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Адиск хиаӡам"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Аконтрольтә еицҵалыҵ иашам."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Аоперациа анагӡара ауам: аҭаҩра иацәыхьчоуп."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2507,43 +2515,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Афаил аформат агха, апозициа $(ARG1)(ацәаҳәа, аиҵагыла) аҟны"
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Ари аформат змоу афаил афильтр аҿыыхуп архиарақәа рҟны. Шәыҽимажәда асистематә администратор."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "OLE азеиԥш гха."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Ари аобиект аҟаҵарақәа акагьы аднакылом."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Аобиект иаднакылом ари аҟаҵара."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) аобиект активациа аан"
@@ -2618,7 +2626,7 @@ msgstr "Арабтәи (Чад)"
#: svtools/inc/langtab.hrc:41
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Arabic (Comoros)"
-msgstr ""
+msgstr "Арабтәи (Комортәи адгьылбжьахақәа)"
#. CtwpU
#: svtools/inc/langtab.hrc:42
@@ -3992,7 +4000,7 @@ msgstr "Хилигаинон"
#: svtools/inc/langtab.hrc:270
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nyanja"
-msgstr ""
+msgstr "Нианджа"
#. v4jmr
#: svtools/inc/langtab.hrc:271
@@ -4034,19 +4042,19 @@ msgstr "Сомалитәи"
#: svtools/inc/langtab.hrc:277
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Inari (Finland)"
-msgstr ""
+msgstr "Инари-саамтәи (Финляндиа)"
#. FJAQR
#: svtools/inc/langtab.hrc:278
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Norway)"
-msgstr ""
+msgstr "Луле-саамтәи (Норвегиа)"
#. yBxW5
#: svtools/inc/langtab.hrc:279
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Lule (Sweden)"
-msgstr ""
+msgstr "Луле-саамтәи (Швециа)"
#. 8yPLy
#: svtools/inc/langtab.hrc:280
@@ -4070,7 +4078,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:283
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Skolt (Finland)"
-msgstr ""
+msgstr "Колтта-саамтәи (Финляндиа)"
#. od3Hp
#: svtools/inc/langtab.hrc:284
@@ -4160,7 +4168,7 @@ msgstr "Оромо"
#: svtools/inc/langtab.hrc:298
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Greek, Ancient"
-msgstr ""
+msgstr "Абырзентә (ажәытәтәи)"
#. WY8GH
#: svtools/inc/langtab.hrc:299
@@ -4184,7 +4192,7 @@ msgstr "Уигуртәи"
#: svtools/inc/langtab.hrc:302
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Asturian"
-msgstr ""
+msgstr "Астуриатәи"
#. hwM5p
#: svtools/inc/langtab.hrc:303
@@ -4388,7 +4396,7 @@ msgstr "Вили"
#: svtools/inc/langtab.hrc:336
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "KeyID"
-msgstr ""
+msgstr "Аидентификаторқәа"
#. maAoG
#: svtools/inc/langtab.hrc:337
@@ -4436,7 +4444,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:344
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Mari, Meadow"
-msgstr ""
+msgstr "Мариитәи"
#. 2YjMT
#: svtools/inc/langtab.hrc:345
@@ -4490,7 +4498,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:353
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Veps"
-msgstr ""
+msgstr "Велстәи"
#. fJ3Ss
#: svtools/inc/langtab.hrc:354
@@ -4502,7 +4510,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:355
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nenets"
-msgstr ""
+msgstr "Ненецтәи"
#. 5Zxgd
#: svtools/inc/langtab.hrc:356
@@ -4514,79 +4522,79 @@ msgstr ""
#: svtools/inc/langtab.hrc:357
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aka (Congo)"
-msgstr ""
+msgstr "Ака (Конго)"
#. GRKCD
#: svtools/inc/langtab.hrc:358
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Dibole"
-msgstr ""
+msgstr "Диболе"
#. cgMCr
#: svtools/inc/langtab.hrc:359
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Doondo"
-msgstr ""
+msgstr "Дундо"
#. FmhF6
#: svtools/inc/langtab.hrc:360
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kaamba"
-msgstr ""
+msgstr "Каамба"
#. BBf4G
#: svtools/inc/langtab.hrc:361
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Koongo (Congo)"
-msgstr ""
+msgstr "Кунго (Конго)"
#. HbeaC
#: svtools/inc/langtab.hrc:362
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kunyi"
-msgstr ""
+msgstr "Кунии"
#. wLxHD
#: svtools/inc/langtab.hrc:363
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngungwel"
-msgstr ""
+msgstr "Нгангвел"
#. 7cvAe
#: svtools/inc/langtab.hrc:364
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Njyem (Congo)"
-msgstr ""
+msgstr "Ниуем (Конго)"
#. G2SG8
#: svtools/inc/langtab.hrc:365
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Punu"
-msgstr ""
+msgstr "Пуну"
#. WjBVL
#: svtools/inc/langtab.hrc:366
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Suundi"
-msgstr ""
+msgstr "Суунди"
#. 9nAA2
#: svtools/inc/langtab.hrc:367
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Teke-Kukuya"
-msgstr ""
+msgstr "Теке-Кукуииа"
#. dwdUH
#: svtools/inc/langtab.hrc:368
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tsaangi"
-msgstr ""
+msgstr "Тсаанги"
#. otqzC
#: svtools/inc/langtab.hrc:369
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yaka (Congo)"
-msgstr ""
+msgstr "Ака (Конго)"
#. JuMFF
#: svtools/inc/langtab.hrc:370
@@ -4598,55 +4606,55 @@ msgstr ""
#: svtools/inc/langtab.hrc:371
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Yombe (Congo)"
-msgstr ""
+msgstr "Иомбе (Конго)"
#. MvwFr
#: svtools/inc/langtab.hrc:372
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "N'ko"
-msgstr ""
+msgstr "Нко"
#. WFc6C
#: svtools/inc/langtab.hrc:373
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Udmurt"
-msgstr ""
+msgstr "Удмурттәи"
#. hEtfX
#: svtools/inc/langtab.hrc:374
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Tibetan (India)"
-msgstr ""
+msgstr "Тибеттәи (Индиа)"
#. Agf93
#: svtools/inc/langtab.hrc:375
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Cornish"
-msgstr ""
+msgstr "Корнуоллтәи"
#. EtH3H
#: svtools/inc/langtab.hrc:376
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Sami, Pite (Sweden)"
-msgstr ""
+msgstr "Пите-саамтәи (Швециа)"
#. jp6C9
#: svtools/inc/langtab.hrc:377
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ngäbere"
-msgstr ""
+msgstr "Гуаими"
#. 3nTLx
#: svtools/inc/langtab.hrc:378
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Kumyk"
-msgstr ""
+msgstr "Кумыктәи"
#. c56C9
#: svtools/inc/langtab.hrc:379
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Nogai"
-msgstr ""
+msgstr "Ногаитәи"
#. CBiiA
#: svtools/inc/langtab.hrc:380
@@ -4658,19 +4666,19 @@ msgstr ""
#: svtools/inc/langtab.hrc:381
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Ladin"
-msgstr ""
+msgstr "Ладинтәи"
#. XAiVE
#: svtools/inc/langtab.hrc:382
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Burkina Faso)"
-msgstr ""
+msgstr "Афранцыз (Буркина Фасо)"
#. EGzhe
#: svtools/inc/langtab.hrc:383
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Puinave"
-msgstr ""
+msgstr "Пуинавтәи"
#. HNcxe
#: svtools/inc/langtab.hrc:384
@@ -4682,7 +4690,7 @@ msgstr ""
#: svtools/inc/langtab.hrc:385
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Avar"
-msgstr ""
+msgstr "Авартәи"
#. zumBa
#: svtools/inc/langtab.hrc:386
@@ -4700,43 +4708,43 @@ msgstr ""
#: svtools/inc/langtab.hrc:388
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Lengo"
-msgstr ""
+msgstr "Ленго"
#. KtBfE
#: svtools/inc/langtab.hrc:389
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Côte d'Ivoire)"
-msgstr ""
+msgstr "Афранцыз (Кот-д’Ивуар)"
#. DTuEL
#: svtools/inc/langtab.hrc:390
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Mali)"
-msgstr ""
+msgstr "Афранцыз (Мали)"
#. LFLk6
#: svtools/inc/langtab.hrc:391
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Senegal)"
-msgstr ""
+msgstr "Афранцыз (Сенегал)"
#. mSK3x
#: svtools/inc/langtab.hrc:392
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Benin)"
-msgstr ""
+msgstr "Афранцыз (Бенин)"
#. tM6qQ
#: svtools/inc/langtab.hrc:393
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Niger)"
-msgstr ""
+msgstr "Афранцыз (Нигер)"
#. nCq6f
#: svtools/inc/langtab.hrc:394
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "French (Togo)"
-msgstr ""
+msgstr "Афранцыз (Того)"
#. oCBvK
#: svtools/inc/langtab.hrc:395
@@ -4748,19 +4756,19 @@ msgstr ""
#: svtools/inc/langtab.hrc:396
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Venetian"
-msgstr ""
+msgstr "Венеттәи"
#. 8EbCs
#: svtools/inc/langtab.hrc:397
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "English (Gambia)"
-msgstr ""
+msgstr "Англыз (Гамбиа)"
#. gEd8L
#: svtools/inc/langtab.hrc:398
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Aranese"
-msgstr ""
+msgstr "Арантәи"
#. TaEzQ
#: svtools/inc/langtab.hrc:399
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index d1610f112b9..fb23dc0f0fe 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-04-18 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
"Language: ab\n"
@@ -900,7 +900,7 @@ msgstr "Иқәыргылатәуп аҭыҵырҭа ахырхарҭа %1 азы
#: include/svx/strings.hrc:171
msgctxt "STR_EditSetGluePercent"
msgid "Set relative attribute at %1"
-msgstr ""
+msgstr "Иқәыргылатәуп аҿнырԥшратә атрибут %1 азы"
#. Auc4o
#: include/svx/strings.hrc:172
@@ -1050,7 +1050,7 @@ msgstr "Иагырхатәуп %1"
#: include/svx/strings.hrc:196
msgctxt "STR_EditMergeIntersectPoly"
msgid "Intersect %1"
-msgstr ""
+msgstr "Еихҵәатәуп %1"
#. M8onz
#: include/svx/strings.hrc:197
@@ -2008,7 +2008,7 @@ msgstr ""
#: include/svx/strings.hrc:358
msgctxt "SIP_XA_FORMTXTSHDWYVAL"
msgid "Fontwork shadow offset Y"
-msgstr ""
+msgstr "Атексттә еффект агага агәҵәы Y ала аҭыԥхгара"
#. LdeJZ
#: include/svx/strings.hrc:359
@@ -2116,7 +2116,7 @@ msgstr ""
#: include/svx/strings.hrc:376
msgctxt "SIP_SA_CAPTIONESCABS"
msgid "Absolute exit of legend"
-msgstr ""
+msgstr "Алегенда аҟынтәи абсолиуттә ҭыҵра"
#. V9TG8
#: include/svx/strings.hrc:377
@@ -3527,13 +3527,13 @@ msgstr ""
#: include/svx/strings.hrc:617
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
-msgstr ""
+msgstr "Ааԥынтәи ашьацԥштәы (агамма анҭыҵ)"
#. GCcWR
#: include/svx/strings.hrc:618
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
-msgstr ""
+msgstr "Ашьацԥштәы (агамма анҭыҵ)"
#. DLuCh
#: include/svx/strings.hrc:619
@@ -3575,7 +3575,7 @@ msgstr "Ажәҩангәыԥштәы"
#: include/svx/strings.hrc:625
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
-msgstr ""
+msgstr "Ааԥынтәи ашьацԥштәы"
#. jtKm8
#: include/svx/strings.hrc:626
@@ -3594,7 +3594,7 @@ msgstr "Агәилԥштәы"
#: include/svx/strings.hrc:629
msgctxt "RID_SVXSTR_COLOR_MATERIAL_GRAY_A"
msgid "Gray A"
-msgstr ""
+msgstr "Ацәыш A"
#. 3b7sB
#: include/svx/strings.hrc:630
@@ -3672,7 +3672,7 @@ msgstr "Индиго А"
#: include/svx/strings.hrc:642
msgctxt "RID_SVXSTR_COLOR_MATERIAL_BLUE_A"
msgid "Blue A"
-msgstr ""
+msgstr "Аиеҵәа A"
#. dDQEi
#: include/svx/strings.hrc:643
@@ -4474,7 +4474,7 @@ msgstr ""
#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_GRDT74"
msgid "London Mist"
-msgstr ""
+msgstr "Лондонтәи анаҟә"
#. gZsGN
#: include/svx/strings.hrc:788
@@ -5027,7 +5027,7 @@ msgstr ""
#: include/svx/strings.hrc:880
msgctxt "RID_SVXSTR_BMP51"
msgid "Large Confetti"
-msgstr ""
+msgstr "Идуқәоу конфетти"
#. XFemm
#: include/svx/strings.hrc:881
@@ -5087,7 +5087,7 @@ msgstr ""
#: include/svx/strings.hrc:890
msgctxt "RID_SVXSTR_BMP61"
msgid "Shingle"
-msgstr ""
+msgstr "Абӷанџь"
#. jD9er
#: include/svx/strings.hrc:891
@@ -5165,13 +5165,13 @@ msgstr "Адиагональ хыхь"
#: include/svx/strings.hrc:903
msgctxt "RID_SVXSTR_BMP74"
msgid "Cross"
-msgstr ""
+msgstr "Аихҵәарсҭақәа"
#. 4mGJX
#: include/svx/strings.hrc:904
msgctxt "RID_SVXSTR_BMP75"
msgid "Diagonal Cross"
-msgstr ""
+msgstr "Идиагонлтәу аихҵәарсҭақәа"
#. J4CJa
#: include/svx/strings.hrc:905
@@ -6220,7 +6220,7 @@ msgstr "Агарнитура"
#: include/svx/strings.hrc:1118
msgctxt "RID_SVXSTR_CHARFONTNAME_NOTAVAILABLE"
msgid "Font Name. The current font is not available and will be substituted."
-msgstr ""
+msgstr "Агарнитура. Уажәтәи агарнитура мҩаркуп, иԥсаххоит даҽакы ала."
#. CVvXU
#: include/svx/strings.hrc:1119
@@ -6250,25 +6250,25 @@ msgstr "Адокумент аԥштәы"
#: include/svx/strings.hrc:1123
msgctxt "RID_SVXSTR_THEME_COLOR1"
msgid "Dark 1"
-msgstr ""
+msgstr "Алашьца 1"
#. VPmLC
#: include/svx/strings.hrc:1124
msgctxt "RID_SVXSTR_THEME_COLOR2"
msgid "Light 1"
-msgstr ""
+msgstr "Алаша 1"
#. hxE36
#: include/svx/strings.hrc:1125
msgctxt "RID_SVXSTR_THEME_COLOR3"
msgid "Dark 2"
-msgstr ""
+msgstr "Алашьца 2"
#. mwTQr
#: include/svx/strings.hrc:1126
msgctxt "RID_SVXSTR_THEME_COLOR4"
msgid "Light 2"
-msgstr ""
+msgstr "Алаша 2"
#. NAAZJ
#: include/svx/strings.hrc:1127
@@ -6322,19 +6322,19 @@ msgstr "Изҭаахьоу агиперзхьарԥш"
#: include/svx/strings.hrc:1135
msgctxt "RID_SVXSTR_THEME_EFFECT_LIGHTER"
msgid "$THEME_NAME, $PERCENTAGE% Lighter"
-msgstr ""
+msgstr "$THEME_NAME, $PERCENTAGE% иаҳа илашаны"
#. 92crm
#: include/svx/strings.hrc:1136
msgctxt "RID_SVXSTR_THEME_EFFECT_DARKER"
msgid "$THEME_NAME, $PERCENTAGE% Darker"
-msgstr ""
+msgstr "$THEME_NAME, $PERCENTAGE% иаҳа илашьцаны"
#. PWRtb
#: include/svx/strings.hrc:1137
msgctxt "RID_SVXSTR_UNDO_THEME_COLOR_CHANGE"
msgid "Theme Color Change"
-msgstr ""
+msgstr "Атема аԥштәы аԥсахра"
#. DJGyY
#: include/svx/strings.hrc:1139
@@ -6406,7 +6406,7 @@ msgstr "Иԥсахтәуп ажжара"
#: include/svx/strings.hrc:1150
msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_SURFACE"
msgid "Change Extrusion Surface"
-msgstr ""
+msgstr "Иԥсахтәуп аекструзиа ақәыԥшылара"
#. DFEZP
#: include/svx/strings.hrc:1151
@@ -6460,7 +6460,7 @@ msgstr "Еиҟаратәтәуп атексттә еффект анбанқәа"
#: include/svx/strings.hrc:1161
msgctxt "RID_SVXSTR_UNDO_APPLY_FONTWORK_CHARACTER_SPACING"
msgid "Apply Fontwork Character Spacing"
-msgstr ""
+msgstr "Атексттә еффект азы ихархәатәуп асимволбжьаратәи аинтервал"
#. oo88Y
#: include/svx/strings.hrc:1163
@@ -6485,7 +6485,7 @@ msgstr "и"
#: include/svx/strings.hrc:1167
msgctxt "RID_SVXSTR_RECTCTL_ACC_CORN_NAME"
msgid "Corner control"
-msgstr ""
+msgstr "Акәакьтә кәаԥ анапхгара"
#. CUEEW
#: include/svx/strings.hrc:1168
@@ -6515,7 +6515,7 @@ msgstr "Хыхьла арыӷьарахь"
#: include/svx/strings.hrc:1172
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_LM"
msgid "Left center"
-msgstr ""
+msgstr "Арымарахь ацентр ала"
#. jvzC7
#: include/svx/strings.hrc:1173
@@ -6527,7 +6527,7 @@ msgstr "Ацентр ала"
#: include/svx/strings.hrc:1174
msgctxt "RID_SVXSTR_RECTCTL_ACC_CHLD_RM"
msgid "Right center"
-msgstr ""
+msgstr "Арыӷьарахь ацентр ала"
#. v4SqB
#: include/svx/strings.hrc:1175
@@ -6552,7 +6552,7 @@ msgstr "Ҵаҟала арыӷьарахь"
#: include/svx/strings.hrc:1179
msgctxt "RID_SVXSTR_GRAPHCTRL_ACC_NAME"
msgid "Contour control"
-msgstr ""
+msgstr "Аконтур анапхгара"
#. aMva8
#: include/svx/strings.hrc:1180
@@ -6679,7 +6679,7 @@ msgstr "Азыҳәаратә ҵакҭаҩ аҟны асинтаксис агха
#: include/svx/strings.hrc:1202
msgctxt "RID_STR_DELETECONFIRM_RECORD"
msgid "You intend to delete 1 record."
-msgstr ""
+msgstr "Ишәҭахума анҵамҭақәа 1 раныхра."
#. Qb4Gk
#: include/svx/strings.hrc:1203
@@ -6795,7 +6795,7 @@ msgstr "Авалиута аҭакыра"
#: include/svx/strings.hrc:1222
msgctxt "RID_STR_PROPTITLE_PATTERNFIELD"
msgid "Pattern Field"
-msgstr ""
+msgstr "Аҭагалара амаска зцу аҭакыра"
#. DEn9D
#: include/svx/strings.hrc:1223
@@ -6855,7 +6855,7 @@ msgstr ""
#: include/svx/strings.hrc:1233
msgctxt "RID_STR_PROPTITLE_SCROLLBAR"
msgid "Scrollbar"
-msgstr ""
+msgstr "Аҭаргьежьра ацәаҳәа"
#. VtEN6
#: include/svx/strings.hrc:1234
@@ -6933,7 +6933,7 @@ msgstr "<Автоҭакыра>"
#: include/svx/strings.hrc:1248
msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR"
msgid "Syntax error in SQL statement"
-msgstr ""
+msgstr "SQL аинструкциа аҟны асинтаксистә гха"
#. ZoEuu
#: include/svx/strings.hrc:1249
@@ -6981,7 +6981,7 @@ msgstr ""
#: include/svx/strings.hrc:1256
msgctxt "RID_STR_SVT_SQL_SYNTAX_QUERY_EXISTS"
msgid "The database already contains a query with name \"#\"."
-msgstr ""
+msgstr "Адырқәа рбаза иаҵанакуеит азыҳәара «#»."
#. VkeLY
#: include/svx/strings.hrc:1257
@@ -7257,13 +7257,13 @@ msgstr "Аидҳәалара"
#: include/svx/strings.hrc:1301
msgctxt "RID_STR_BINDING_EXPR"
msgid "Binding expression"
-msgstr ""
+msgstr "Еидызҳәало аҵакҭаҩ"
#. BTmNa
#: include/svx/strings.hrc:1303
msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY"
msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?"
-msgstr ""
+msgstr "Адокументқәа %PRODUCTNAME реиҭашьақәыргылара иазку адырқәа аныхтәума?"
#. 5WjQZ
#: include/svx/strings.hrc:1305
@@ -7360,7 +7360,7 @@ msgstr "Адокумент ԥсахын. Шәақәыӷәӷәа аиқәырха
#: include/svx/strings.hrc:1322
msgctxt "RID_SVXSTR_DOC_MODIFIED_NO"
msgid "The document has not been modified since the last save."
-msgstr ""
+msgstr "Адокумент ԥсахӡамызт аҵыхәтәан ианеиқәырхаз ашьҭахь."
#. 7C8GH
#: include/svx/strings.hrc:1323
@@ -7396,7 +7396,7 @@ msgstr "Атаблица абларҭа адрес. Шәақәыӷәӷәа, ад
#: include/svx/strings.hrc:1328
msgctxt "RID_SVXSTR_SECTION_HINT"
msgid "Section name. Click to open Edit Sections dialog."
-msgstr ""
+msgstr "Аҟәша ахьӡ. Шәақәыӷәӷәа, адиалог аԥенџьыр «Аҟәшақәа аредакциа рзура» аартразы."
#. rLN6T
#: include/svx/strings.hrc:1329
@@ -7588,7 +7588,7 @@ msgstr ""
#: include/svx/strings.hrc:1362
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
msgid "Color Palette"
-msgstr ""
+msgstr "Аԥштәы палитра"
#. sDL47
#: include/svx/strings.hrc:1363
@@ -7734,13 +7734,13 @@ msgstr "Атаблица аформа астильқәа"
#: include/svx/strings.hrc:1395
msgctxt "RID_SVXSTR_NUM_UNDO_ACTIONS"
msgid "Actions to undo: $(ARG1)"
-msgstr ""
+msgstr "Аҟәыхразы аҟаҵарақәа: $(ARG1)"
#. nsioo
#: include/svx/strings.hrc:1396
msgctxt "RID_SVXSTR_NUM_UNDO_ACTION"
msgid "Actions to undo: $(ARG1)"
-msgstr ""
+msgstr "Аҟәыхразы аҟаҵарақәа: $(ARG1)"
#. DzJ9Y
#: include/svx/strings.hrc:1397
@@ -8170,13 +8170,13 @@ msgstr "Ирҭбаау иврит"
#: include/svx/strings.hrc:1478
msgctxt "RID_SUBSETMAP"
msgid "Basic Arabic"
-msgstr ""
+msgstr "Арабтәи ихадоу"
#. hZDFV
#: include/svx/strings.hrc:1479
msgctxt "RID_SUBSETMAP"
msgid "Arabic Extended"
-msgstr ""
+msgstr "Арабтәи ирҭбаау"
#. c3CqD
#: include/svx/strings.hrc:1480
@@ -8272,7 +8272,7 @@ msgstr ""
#: include/svx/strings.hrc:1495
msgctxt "RID_SUBSETMAP"
msgid "Greek Extended"
-msgstr ""
+msgstr "Абырзентә ирҭбаау"
#. LEQg6
#: include/svx/strings.hrc:1496
@@ -8404,7 +8404,7 @@ msgstr "Бопомофо"
#: include/svx/strings.hrc:1517
msgctxt "RID_SUBSETMAP"
msgid "Hangul Compatibility Jamo"
-msgstr ""
+msgstr "Хангыль, Джамо иашьашәалоу"
#. yeRDE
#: include/svx/strings.hrc:1518
@@ -8507,13 +8507,13 @@ msgstr "Испециалу"
#: include/svx/strings.hrc:1534
msgctxt "RID_SUBSETMAP"
msgid "Yi Syllables"
-msgstr ""
+msgstr "Носу (Yi) ацырақәа"
#. BL66x
#: include/svx/strings.hrc:1535
msgctxt "RID_SUBSETMAP"
msgid "Yi Radicals"
-msgstr ""
+msgstr "Носу (Yi) ашьагәыҭқәа"
#. cuQ2k
#: include/svx/strings.hrc:1536
@@ -8555,19 +8555,19 @@ msgstr "Аматематикатә анбантә-цифратә символқ
#: include/svx/strings.hrc:1542
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension B"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-B"
#. nZnQc
#: include/svx/strings.hrc:1543
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension C"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-C"
#. HBwZE
#: include/svx/strings.hrc:1544
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension D"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-D"
#. TTFkh
#: include/svx/strings.hrc:1545
@@ -8717,7 +8717,7 @@ msgstr ""
#: include/svx/strings.hrc:1569
msgctxt "RID_SUBSETMAP"
msgid "Syriac"
-msgstr ""
+msgstr "Шьамтәылатәи"
#. B66QG
#: include/svx/strings.hrc:1570
@@ -8789,7 +8789,7 @@ msgstr ""
#: include/svx/strings.hrc:1581
msgctxt "RID_SUBSETMAP"
msgid "Kangxi Radicals"
-msgstr ""
+msgstr "Кандзи ашьагәыҭқәа"
#. EyZR2
#: include/svx/strings.hrc:1582
@@ -8831,7 +8831,7 @@ msgstr "Вениан"
#: include/svx/strings.hrc:1588
msgctxt "RID_SUBSETMAP"
msgid "Bopomofo Extended"
-msgstr ""
+msgstr "Ирҭбаақәоу бопомофо"
#. MQoBs
#: include/svx/strings.hrc:1589
@@ -8861,7 +8861,7 @@ msgstr "Таи Сиуань Цзин асимволқәа"
#: include/svx/strings.hrc:1593
msgctxt "RID_SUBSETMAP"
msgid "Variation Selectors Supplement"
-msgstr ""
+msgstr "Еиуеиԥшым иацҵоу аиҭарсгақәа"
#. RR6Er
#: include/svx/strings.hrc:1594
@@ -8885,7 +8885,7 @@ msgstr ""
#: include/svx/strings.hrc:1597
msgctxt "RID_SUBSETMAP"
msgid "Buginese"
-msgstr ""
+msgstr "Бугиитәи"
#. zDaXa
#: include/svx/strings.hrc:1598
@@ -8903,7 +8903,7 @@ msgstr "Копттәи"
#: include/svx/strings.hrc:1600
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended"
-msgstr ""
+msgstr "Ирҭбаау Ефиопиатәи"
#. X8DEc
#: include/svx/strings.hrc:1601
@@ -8927,7 +8927,7 @@ msgstr ""
#: include/svx/strings.hrc:1604
msgctxt "RID_SUBSETMAP"
msgid "Kharoshthi"
-msgstr ""
+msgstr "Кхароштхи"
#. U8zrU
#: include/svx/strings.hrc:1605
@@ -8939,7 +8939,7 @@ msgstr "Атон амодификаторқәа"
#: include/svx/strings.hrc:1606
msgctxt "RID_SUBSETMAP"
msgid "New Tai Lue"
-msgstr ""
+msgstr "Иҿыцу Таи-Ле"
#. J4KdA
#: include/svx/strings.hrc:1607
@@ -8963,7 +8963,7 @@ msgstr ""
#: include/svx/strings.hrc:1610
msgctxt "RID_SUBSETMAP"
msgid "Syloti Nagri"
-msgstr ""
+msgstr "Силхети-Нагари"
#. Qrowh
#: include/svx/strings.hrc:1611
@@ -8987,7 +8987,7 @@ msgstr "Нко"
#: include/svx/strings.hrc:1614
msgctxt "RID_SUBSETMAP"
msgid "Balinese"
-msgstr ""
+msgstr "Балиитәи"
#. 428ER
#: include/svx/strings.hrc:1615
@@ -9017,13 +9017,13 @@ msgstr "Финикиитәи"
#: include/svx/strings.hrc:1619
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform"
-msgstr ""
+msgstr "Асалҩыра"
#. VBPZE
#: include/svx/strings.hrc:1620
msgctxt "RID_SUBSETMAP"
msgid "Cuneiform Numbers And Punctuation"
-msgstr ""
+msgstr "Асалҩыра, ахыԥхьаӡарақәеи апунктуациеи"
#. 9msGJ
#: include/svx/strings.hrc:1621
@@ -9035,25 +9035,25 @@ msgstr "Аԥхьаӡага лабыҵәқәа"
#: include/svx/strings.hrc:1622
msgctxt "RID_SUBSETMAP"
msgid "Sundanese"
-msgstr ""
+msgstr "Сундантәи"
#. WrXXX
#: include/svx/strings.hrc:1623
msgctxt "RID_SUBSETMAP"
msgid "Lepcha"
-msgstr ""
+msgstr "Лепча"
#. FhhAQ
#: include/svx/strings.hrc:1624
msgctxt "RID_SUBSETMAP"
msgid "Ol Chiki"
-msgstr ""
+msgstr "Ол-Чики"
#. eHvUh
#: include/svx/strings.hrc:1625
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-A"
-msgstr ""
+msgstr "Ирҭбаау акириллица-A"
#. ZkKwE
#: include/svx/strings.hrc:1626
@@ -9065,19 +9065,19 @@ msgstr "Ваи"
#: include/svx/strings.hrc:1627
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-B"
-msgstr ""
+msgstr "Ирҭбаау акириллица-B"
#. GoQpd
#: include/svx/strings.hrc:1628
msgctxt "RID_SUBSETMAP"
msgid "Saurashtra"
-msgstr ""
+msgstr "Саураштра"
#. 6pufg
#: include/svx/strings.hrc:1629
msgctxt "RID_SUBSETMAP"
msgid "Kayah Li"
-msgstr ""
+msgstr "Каиа-Ли"
#. bmFny
#: include/svx/strings.hrc:1630
@@ -9101,25 +9101,25 @@ msgstr "Ажәытәтәи асимволқәа"
#: include/svx/strings.hrc:1633
msgctxt "RID_SUBSETMAP"
msgid "Phaistos Disc"
-msgstr ""
+msgstr "Фесттәи адиск"
#. ryGAF
#: include/svx/strings.hrc:1634
msgctxt "RID_SUBSETMAP"
msgid "Lycian"
-msgstr ""
+msgstr "Ликиитәи"
#. EYLa8
#: include/svx/strings.hrc:1635
msgctxt "RID_SUBSETMAP"
msgid "Carian"
-msgstr ""
+msgstr "Кариитәи"
#. TPN6m
#: include/svx/strings.hrc:1636
msgctxt "RID_SUBSETMAP"
msgid "Lydian"
-msgstr ""
+msgstr "Лидиитәи"
#. G5GLd
#: include/svx/strings.hrc:1637
@@ -9137,7 +9137,7 @@ msgstr "Домино"
#: include/svx/strings.hrc:1639
msgctxt "RID_SUBSETMAP"
msgid "Samaritan"
-msgstr ""
+msgstr "Самаритиантәи"
#. XSygw
#: include/svx/strings.hrc:1640
@@ -9149,13 +9149,13 @@ msgstr ""
#: include/svx/strings.hrc:1641
msgctxt "RID_SUBSETMAP"
msgid "Tai Tham"
-msgstr ""
+msgstr "Таи-Тхам"
#. BgKLG
#: include/svx/strings.hrc:1642
msgctxt "RID_SUBSETMAP"
msgid "Vedic Extensions"
-msgstr ""
+msgstr "Ведиитәи арҭбаарақәа"
#. bVNYf
#: include/svx/strings.hrc:1643
@@ -9167,61 +9167,61 @@ msgstr "Лису"
#: include/svx/strings.hrc:1644
msgctxt "RID_SUBSETMAP"
msgid "Bamum"
-msgstr ""
+msgstr "Бамум"
#. CQMqK
#: include/svx/strings.hrc:1645
msgctxt "RID_SUBSETMAP"
msgid "Common Indic Number Forms"
-msgstr ""
+msgstr "Индиатәи ахыԥхьаӡарақәа рзеиԥш формақәа"
#. gDEUp
#: include/svx/strings.hrc:1646
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended"
-msgstr ""
+msgstr "Ирҭбаау Деванагари"
#. UsAq2
#: include/svx/strings.hrc:1647
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-A"
-msgstr ""
+msgstr "Хангыль Джамо ирҭбаау-A"
#. g5H7j
#: include/svx/strings.hrc:1648
msgctxt "RID_SUBSETMAP"
msgid "Javanese"
-msgstr ""
+msgstr "Иавантәи"
#. upBjC
#: include/svx/strings.hrc:1649
msgctxt "RID_SUBSETMAP"
msgid "Myanmar Extended-A"
-msgstr ""
+msgstr "Бирмантәи ирҭбаау-A"
#. GQ3XX
#: include/svx/strings.hrc:1650
msgctxt "RID_SUBSETMAP"
msgid "Tai Viet"
-msgstr ""
+msgstr "Таи-Виет"
#. HGVSu
#: include/svx/strings.hrc:1651
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek"
-msgstr ""
+msgstr "Манипури"
#. ryvor
#: include/svx/strings.hrc:1652
msgctxt "RID_SUBSETMAP"
msgid "Hangul Jamo Extended-B"
-msgstr ""
+msgstr "Хангыль Джамо ирҭбаау-B"
#. RTxUc
#: include/svx/strings.hrc:1653
msgctxt "RID_SUBSETMAP"
msgid "Imperial Aramaic"
-msgstr ""
+msgstr "Импертәи Арамеитәи"
#. 7E6G8
#: include/svx/strings.hrc:1654
@@ -9299,7 +9299,7 @@ msgstr "Батаки"
#: include/svx/strings.hrc:1666
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-A"
-msgstr ""
+msgstr "Ефиопитәи ирҭбаау-А"
#. cQEzt
#: include/svx/strings.hrc:1667
@@ -9371,7 +9371,7 @@ msgstr "Чакма"
#: include/svx/strings.hrc:1678
msgctxt "RID_SUBSETMAP"
msgid "Meetei Mayek Extensions"
-msgstr ""
+msgstr "Манипури ирҭбаау"
#. mFAeA
#: include/svx/strings.hrc:1679
@@ -9630,7 +9630,7 @@ msgstr ""
#: include/svx/strings.hrc:1721
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension E"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-E"
#. ho93C
#: include/svx/strings.hrc:1722
@@ -9660,7 +9660,7 @@ msgstr "Венгриатәи рунқәа"
#: include/svx/strings.hrc:1726
msgctxt "RID_SUBSETMAP"
msgid "Supplemental Symbols And Pictographs"
-msgstr ""
+msgstr "Иацҵоу асимволқәеи апиктограммақәеи"
#. B6UHz
#: include/svx/strings.hrc:1727
@@ -9726,25 +9726,25 @@ msgstr "Осеидж"
#: include/svx/strings.hrc:1737
msgctxt "RID_SUBSETMAP"
msgid "Tangut"
-msgstr ""
+msgstr "Тангуттәи аҩыра"
#. nRMFd
#: include/svx/strings.hrc:1738
msgctxt "RID_SUBSETMAP"
msgid "Tangut Components"
-msgstr ""
+msgstr "Тангуттәи акомпонентқәа"
#. uFMWt
#: include/svx/strings.hrc:1739
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension F"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-F"
#. DH39v
#: include/svx/strings.hrc:1740
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-A"
-msgstr ""
+msgstr "Кавна ирҭбаау-A"
#. jPSFu
#: include/svx/strings.hrc:1741
@@ -9756,13 +9756,13 @@ msgstr "Масарам гонди"
#: include/svx/strings.hrc:1742
msgctxt "RID_SUBSETMAP"
msgid "Nushu"
-msgstr ""
+msgstr "Ниуи-шу"
#. DHbMR
#: include/svx/strings.hrc:1743
msgctxt "RID_SUBSETMAP"
msgid "Soyombo"
-msgstr ""
+msgstr "Соиомбо"
#. gPnhH
#: include/svx/strings.hrc:1744
@@ -9774,7 +9774,7 @@ msgstr ""
#: include/svx/strings.hrc:1745
msgctxt "RID_SUBSETMAP"
msgid "Zanabazar Square"
-msgstr ""
+msgstr "Дзанабадзар иквадраттәу"
#. i5evF
#: include/svx/strings.hrc:1746
@@ -9816,7 +9816,7 @@ msgstr "Макасар"
#: include/svx/strings.hrc:1752
msgctxt "RID_SUBSETMAP"
msgid "Mayan Numerals"
-msgstr ""
+msgstr "Маииа ацифрақәа"
#. aDjHx
#: include/svx/strings.hrc:1753
@@ -9834,7 +9834,7 @@ msgstr ""
#: include/svx/strings.hrc:1755
msgctxt "RID_SUBSETMAP"
msgid "Sogdian"
-msgstr ""
+msgstr "Согдиитәи аҩыра"
#. B6UKP
#: include/svx/strings.hrc:1756
@@ -9846,7 +9846,7 @@ msgstr ""
#: include/svx/strings.hrc:1757
msgctxt "RID_SUBSETMAP"
msgid "Elymaic"
-msgstr ""
+msgstr "Елимаитәи аҩыра"
#. ibmgu
#: include/svx/strings.hrc:1758
@@ -9876,7 +9876,7 @@ msgstr ""
#: include/svx/strings.hrc:1762
msgctxt "RID_SUBSETMAP"
msgid "Symbols and Pictographs Extended-A"
-msgstr ""
+msgstr "Ирҭбаау асимволқәеи апиктограммақәеи-A"
#. SmFqD
#: include/svx/strings.hrc:1763
@@ -9894,13 +9894,13 @@ msgstr "Ванчо"
#: include/svx/strings.hrc:1765
msgctxt "RID_SUBSETMAP"
msgid "Chorasmian"
-msgstr ""
+msgstr "Хорезмтәи"
#. EH9Xf
#: include/svx/strings.hrc:1766
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension G"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-G"
#. wBzzY
#: include/svx/strings.hrc:1767
@@ -9936,7 +9936,7 @@ msgstr ""
#: include/svx/strings.hrc:1772
msgctxt "RID_SUBSETMAP"
msgid "Yezidi"
-msgstr ""
+msgstr "Езиди"
#. 9UAmW
#: include/svx/strings.hrc:1773
@@ -9954,13 +9954,13 @@ msgstr ""
#: include/svx/strings.hrc:1775
msgctxt "RID_SUBSETMAP"
msgid "Ethiopic Extended-B"
-msgstr ""
+msgstr "Ефиопиатәи ирҭбаау-B"
#. ABqB6
#: include/svx/strings.hrc:1776
msgctxt "RID_SUBSETMAP"
msgid "Kana Extended-B"
-msgstr ""
+msgstr "Кана ирҭбаау-B"
#. DmagG
#: include/svx/strings.hrc:1777
@@ -9984,13 +9984,13 @@ msgstr ""
#: include/svx/strings.hrc:1780
msgctxt "RID_SUBSETMAP"
msgid "Tangsa"
-msgstr ""
+msgstr "Тангса"
#. pkBYF
#: include/svx/strings.hrc:1781
msgctxt "RID_SUBSETMAP"
msgid "Toto"
-msgstr ""
+msgstr "Тото"
#. ETaVw
#: include/svx/strings.hrc:1782
@@ -10002,7 +10002,7 @@ msgstr ""
#: include/svx/strings.hrc:1783
msgctxt "RID_SUBSETMAP"
msgid "Vithkuqi"
-msgstr ""
+msgstr "Виткуки"
#. ssh5F
#: include/svx/strings.hrc:1784
@@ -10020,37 +10020,37 @@ msgstr ""
#: include/svx/strings.hrc:1786
msgctxt "RID_SUBSETMAP"
msgid "CJK Unified Ideographs Extension H"
-msgstr ""
+msgstr "CJK - аунификациа зызуу аиероглифқәа-H"
#. VXDJy
#: include/svx/strings.hrc:1787
msgctxt "RID_SUBSETMAP"
msgid "Cyrillic Extended-D"
-msgstr ""
+msgstr "Акириллица ирҭбаау-D"
#. aWGSA
#: include/svx/strings.hrc:1788
msgctxt "RID_SUBSETMAP"
msgid "Devanagari Extended-A"
-msgstr ""
+msgstr "Деванагари ирҭбаау-A"
#. BMCBt
#: include/svx/strings.hrc:1789
msgctxt "RID_SUBSETMAP"
msgid "Kaktovik Numerals"
-msgstr ""
+msgstr "Кактовиктәи ацифрақәа"
#. VUVDF
#: include/svx/strings.hrc:1790
msgctxt "RID_SUBSETMAP"
msgid "Kawi"
-msgstr ""
+msgstr "Кави"
#. EyKCr
#: include/svx/strings.hrc:1791
msgctxt "RID_SUBSETMAP"
msgid "Nag Mundari"
-msgstr ""
+msgstr "Наг-мундари"
#. B4BCB
#: include/svx/strings.hrc:1792
@@ -10138,134 +10138,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Адәныҟатәи аҵәаӷәақәа"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Адәныҟатәии игоризонталуи аҵәаӷәақәа"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Адәныҟатәии аҩныҵҟатәиқәа зегьии аҵәаӷәақәа"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Адәныҟатәии ивертикалуи аҵәаӷәақәа"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Адиагоналтә ҵәаӷәақәа"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Адиагональ ҵаҟа"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Адиагональ хыхь"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Аҳәаақәа ԥшьба"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Армарахтәии арӷьарахьтәии аҳәааҟәа"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Хыхьтәии ҵаҟатәии аҳәаақәа"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Армарахьтәи аҳәаа"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Арӷьарахьтәи аҳәаа"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Хыхьтәи аҳәаа"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Ҵаҟатәи аҳәаа"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10274,19 +10324,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Аграфика ашәагаа агәаҭара"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
@@ -11883,7 +11933,7 @@ msgstr ""
#: svx/inc/swframeposstrings.hrc:41
msgctxt "RID_SVXSW_FRAMEPOSITIONS"
msgid "Right of paragraph text area"
-msgstr ""
+msgstr "Абзац атекст аобласт арыӷьарахь"
#. qvFns
#: svx/inc/swframeposstrings.hrc:42
@@ -12171,7 +12221,7 @@ msgstr "Арабтәи (ISO-8859-6)"
#: svx/inc/txenctab.hrc:48
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (ISO-8859-7)"
-msgstr ""
+msgstr "Абырзентә (ISO-8859-7)"
#. MmChj
#: svx/inc/txenctab.hrc:49
@@ -12183,7 +12233,7 @@ msgstr "Иврит (ISO-8859-8)"
#: svx/inc/txenctab.hrc:50
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (ISO-8859-9)"
-msgstr ""
+msgstr "Аҭырқәатә (ISO-8859-9)"
#. phdte
#: svx/inc/txenctab.hrc:51
@@ -12201,7 +12251,7 @@ msgstr "Мраҭашәара-Европатәи (ISO-8859-15/EURO)"
#: svx/inc/txenctab.hrc:53
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (DOS/OS2-737)"
-msgstr ""
+msgstr "Абырзентә (DOS/OS2-737)"
#. EQi6s
#: svx/inc/txenctab.hrc:54
@@ -12225,7 +12275,7 @@ msgstr "Акириллица (DOS/OS2-855)"
#: svx/inc/txenctab.hrc:57
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (DOS/OS2-857)"
-msgstr ""
+msgstr "Аҭырқәатә (DOS/OS2-857)"
#. kBvdY
#: svx/inc/txenctab.hrc:58
@@ -12267,13 +12317,13 @@ msgstr "Акириллица (Windows-1251)"
#: svx/inc/txenctab.hrc:64
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Windows-1253)"
-msgstr ""
+msgstr "Абырзентә (Windows-1253)"
#. sa8W8
#: svx/inc/txenctab.hrc:65
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Windows-1254)"
-msgstr ""
+msgstr "Аҭырқәатә (Windows-1254)"
#. ZxMJy
#: svx/inc/txenctab.hrc:66
@@ -12321,25 +12371,25 @@ msgstr "Акириллица (Apple Macintosh)"
#: svx/inc/txenctab.hrc:73
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Greek (Apple Macintosh)"
-msgstr ""
+msgstr "Абырзентә (Apple Macintosh)"
#. rEWLF
#: svx/inc/txenctab.hrc:74
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Western Europe (Apple Macintosh/Icelandic)"
-msgstr ""
+msgstr "Мраҭашәара-Европатәи (Apple Macintosh/исландиатәи)"
#. eCAET
#: svx/inc/txenctab.hrc:75
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (Apple Macintosh/Romanian)"
-msgstr ""
+msgstr "Мрагылара-Европатәи (Apple Macintosh/исландиатәи)"
#. T4VVK
#: svx/inc/txenctab.hrc:76
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Turkish (Apple Macintosh)"
-msgstr ""
+msgstr "Аҭырқәатә (Apple Macintosh)"
#. a8GDk
#: svx/inc/txenctab.hrc:77
@@ -12489,13 +12539,13 @@ msgstr "Иуникод (UTF-8)"
#: svx/inc/txenctab.hrc:101
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-10)"
-msgstr ""
+msgstr "Мрагылара-Европатәи (ISO-8859-10)"
#. QGYqt
#: svx/inc/txenctab.hrc:102
msgctxt "RID_SVXSTR_TEXTENCODING_TABLE"
msgid "Eastern Europe (ISO-8859-13)"
-msgstr ""
+msgstr "Мрагылара-Европатәи (ISO-8859-13)"
#. Vx6bY
#: svx/inc/txenctab.hrc:103
@@ -13156,7 +13206,7 @@ msgstr "Ахьӡ:"
#: svx/uiconfig/ui/adddataitemdialog.ui:128
msgctxt "adddataitemdialog|valueft"
msgid "_Default value:"
-msgstr ""
+msgstr "Аҵакы ишыҟоу еиԥш:"
#. 6XN5s
#: svx/uiconfig/ui/adddataitemdialog.ui:140
@@ -13198,7 +13248,7 @@ msgstr "Ихымԥадатәуп"
#: svx/uiconfig/ui/adddataitemdialog.ui:247
msgctxt "adddataitemdialog|extended_tip|required"
msgid "Specifies if the item must be included on the XForm."
-msgstr ""
+msgstr "Иаҳнарбоит, ари аелемент XForm иалаҵтәу иалаҵатәыму."
#. xFrP8
#: svx/uiconfig/ui/adddataitemdialog.ui:258
@@ -13216,7 +13266,7 @@ msgstr ""
#: svx/uiconfig/ui/adddataitemdialog.ui:277
msgctxt "adddataitemdialog|relevant"
msgid "R_elevant"
-msgstr ""
+msgstr "Иаҵанакуа"
#. QwPmR
#: svx/uiconfig/ui/adddataitemdialog.ui:285
@@ -13240,7 +13290,7 @@ msgstr ""
#: svx/uiconfig/ui/adddataitemdialog.ui:315
msgctxt "adddataitemdialog|constraint"
msgid "_Constraint"
-msgstr ""
+msgstr "Аҳәааркра"
#. jspHN
#: svx/uiconfig/ui/adddataitemdialog.ui:323
@@ -13354,7 +13404,7 @@ msgstr "_Аҭыԥхәаԥшра..."
#: svx/uiconfig/ui/addinstancedialog.ui:173
msgctxt "addinstancedialog|link"
msgid "_Link instance"
-msgstr ""
+msgstr "Аимадара аекземплиар"
#. BUU2x
#: svx/uiconfig/ui/addmodeldialog.ui:8
@@ -13432,7 +13482,7 @@ msgstr "Ахьӡ:"
#: svx/uiconfig/ui/addsubmissiondialog.ui:119
msgctxt "addsubmissiondialog|urlft"
msgid "Binding e_xpression:"
-msgstr ""
+msgstr "Еидызҳәало аҵакҭаҩ:"
#. AncQm
#: svx/uiconfig/ui/addsubmissiondialog.ui:131
@@ -13588,7 +13638,7 @@ msgstr "Афуригана асимволқәа рстиль"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:362
msgctxt "asianphoneticguidedialog|extended_tip|stylelb"
msgid "Select a character style for the ruby text."
-msgstr ""
+msgstr "Иалышәх асимволқәа рстиль атранскрипциа атекст азы."
#. VmD7B
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:373
@@ -13792,7 +13842,7 @@ msgstr "Китаитәи итрадициатәу ирмариоу ахь"
#: svx/uiconfig/ui/chinesedictionary.ui:124
msgctxt "chinesedictionary|extended_tip|tradtosimple"
msgid "Converts traditional Chinese to simplified Chinese."
-msgstr ""
+msgstr "Иианагоит итрадициатәу китаитәи аҩыра ирмариоу китаитәи аҩырахь."
#. SqsBj
#: svx/uiconfig/ui/chinesedictionary.ui:135
@@ -13804,7 +13854,7 @@ msgstr "Китаитәи ирмариоу итрадициатәу ахь"
#: svx/uiconfig/ui/chinesedictionary.ui:144
msgctxt "chinesedictionary|extended_tip|simpletotrad"
msgid "Converts simplified Chinese to traditional Chinese."
-msgstr ""
+msgstr "Иианагоит ирмариоу китаитәи аҩыра итрадициатәу китаитәи аҩырахь."
#. YqoXf
#: svx/uiconfig/ui/chinesedictionary.ui:155
@@ -14273,13 +14323,13 @@ msgstr ""
#: svx/uiconfig/ui/compressgraphicdialog.ui:454
msgctxt "compressgraphicdialog|interpolation-method-store"
msgid "Bicubic"
-msgstr ""
+msgstr "Бикубтәи"
#. DAtXJ
#: svx/uiconfig/ui/compressgraphicdialog.ui:455
msgctxt "compressgraphicdialog|interpolation-method-store"
msgid "Lanczos"
-msgstr ""
+msgstr "Ланцшоса"
#. zkJ5x
#: svx/uiconfig/ui/compressgraphicdialog.ui:467
@@ -14617,7 +14667,7 @@ msgstr "Ианыхтәума ҵаҟатәи аколонтитул?"
#: svx/uiconfig/ui/deletefooterdialog.ui:14
msgctxt "deletefooterdialog|DeleteFooterDialog"
msgid "All contents of the footer will be deleted and can not be restored."
-msgstr ""
+msgstr "Ианыххоит ҵаҟатәи аколонтитул аҵанакы зегьы, аиҭашьақәыргылара амуа."
#. 2ftNf
#: svx/uiconfig/ui/deleteheaderdialog.ui:7
@@ -14635,7 +14685,7 @@ msgstr "Ианыхтәума хыхьтәи аколонтитул?"
#: svx/uiconfig/ui/deleteheaderdialog.ui:14
msgctxt "deleteheaderdialog|DeleteHeaderDialog"
msgid "All contents of the header will be deleted and can not be restored."
-msgstr ""
+msgstr "Ианыххоит хыхьтәи аколонтитул аҵанакы зегьы, аиҭашьақәыргылара амуа."
#. MAb2C
#: svx/uiconfig/ui/depthwindow.ui:133
@@ -14785,7 +14835,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:627
msgctxt "docking3deffects|invertnormals|tooltip_text"
msgid "Invert Normals"
-msgstr ""
+msgstr "Инверттәуп анормалқәа"
#. mbsm2
#: svx/uiconfig/ui/docking3deffects.ui:632
@@ -14929,7 +14979,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:1034
msgctxt "docking3deffects|slantft"
msgid "S_urface angle"
-msgstr ""
+msgstr "Ақәыԥшылара анаара"
#. kczsC
#: svx/uiconfig/ui/docking3deffects.ui:1057
@@ -14983,13 +15033,13 @@ msgstr "Аԥштәқәа рдиалог аԥенџьыр"
#: svx/uiconfig/ui/docking3deffects.ui:1217
msgctxt "docking3deffects|extended_tip|colorbutton1"
msgid "Select a color for the ambient light."
-msgstr ""
+msgstr "Алашара еихырԥсаҟьа азы аԥштәы алхра."
#. yWUfc
#: svx/uiconfig/ui/docking3deffects.ui:1240
msgctxt "docking3deffects|extended_tip|ambientcolor"
msgid "Select a color for the ambient light."
-msgstr ""
+msgstr "Алашара еихырԥсаҟьа азы аԥштәы алхра."
#. nSELF
#: svx/uiconfig/ui/docking3deffects.ui:1254
@@ -15001,7 +15051,7 @@ msgstr "Аԥштәқәа рдиалог аԥенџьыр"
#: svx/uiconfig/ui/docking3deffects.ui:1268
msgctxt "docking3deffects|label18"
msgid "_Ambient light"
-msgstr ""
+msgstr "Алашара еихырԥсаҟьа"
#. m9fpD
#: svx/uiconfig/ui/docking3deffects.ui:1290
@@ -15109,7 +15159,7 @@ msgstr "Алашара ахыҵхырҭа аԥштәы 1"
#: svx/uiconfig/ui/docking3deffects.ui:1479
msgctxt "docking3deffects|extended_tip|lightcolor1"
msgid "Select a color for the current light source."
-msgstr ""
+msgstr "Иалышәх аԥштәы уажәтәи алашара ахыҵхырҭа азы."
#. EBVTG
#: svx/uiconfig/ui/docking3deffects.ui:1493
@@ -15265,7 +15315,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:1890
msgctxt "docking3deffects|texcirclex|tooltip_text"
msgid "Circular"
-msgstr ""
+msgstr "Еихагьежьу"
#. pfLqS
#: svx/uiconfig/ui/docking3deffects.ui:1899
@@ -15301,7 +15351,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:1957
msgctxt "docking3deffects|texcircley|tooltip_text"
msgid "Circular"
-msgstr ""
+msgstr "Еихагьежьу"
#. FyRf5
#: svx/uiconfig/ui/docking3deffects.ui:1965
@@ -15349,7 +15399,7 @@ msgstr "Арлашара аԥштәы"
#: svx/uiconfig/ui/docking3deffects.ui:2100
msgctxt "docking3deffects|extended_tip|objcolor"
msgid "Select the color that you want to apply to the object."
-msgstr ""
+msgstr "Иалышәх аԥштәы аобиект аҟны ахархәаразы."
#. 8ufuo
#: svx/uiconfig/ui/docking3deffects.ui:2124
@@ -15409,7 +15459,7 @@ msgstr "Аԥштәқәа рдиалог аԥенџьыр"
#: svx/uiconfig/ui/docking3deffects.ui:2170
msgctxt "docking3deffects|extended_tip|colorbutton3"
msgid "Select the color to illuminate the object."
-msgstr ""
+msgstr "Иалышәх аԥштәы аобиект ацәырлашаразы."
#. tsEoC
#: svx/uiconfig/ui/docking3deffects.ui:2184
@@ -15463,7 +15513,7 @@ msgstr ""
#: svx/uiconfig/ui/docking3deffects.ui:2321
msgctxt "docking3deffects|label32"
msgid "Specular"
-msgstr ""
+msgstr "Аныҷҷала"
#. Qkzsq
#: svx/uiconfig/ui/docking3deffects.ui:2344
@@ -15833,7 +15883,7 @@ msgstr "Вертикалла иарнаауеит атексттә блок ас
#: svx/uiconfig/ui/dockingfontwork.ui:162
msgctxt "dockingfontwork|frameStyle"
msgid "Style"
-msgstr ""
+msgstr "Астиль"
#. AKiRy
#: svx/uiconfig/ui/dockingfontwork.ui:190
@@ -15967,7 +16017,7 @@ msgstr ""
#: svx/uiconfig/ui/dockingfontwork.ui:429
msgctxt "dockingfontwork|frameShadow"
msgid "Shadow"
-msgstr ""
+msgstr "Агага"
#. MDpHx
#: svx/uiconfig/ui/dockingfontwork.ui:452
@@ -15985,7 +16035,7 @@ msgstr "Атекст агага аԥштәы алхра."
#: svx/uiconfig/ui/dockingfontwork.ui:471
msgctxt "dockingfontwork|frameColor"
msgid "Shadow Color"
-msgstr ""
+msgstr "Агага аԥштәы"
#. GiW9s
#: svx/uiconfig/ui/dockingfontwork.ui:505
@@ -16027,7 +16077,7 @@ msgstr ""
#: svx/uiconfig/ui/dockingfontwork.ui:577
msgctxt "dockingfontwork|frameShadowOffset"
msgid "Shadow Offset"
-msgstr ""
+msgstr "Агага аҭыԥхгара"
#. tZx4a
#: svx/uiconfig/ui/dockingfontwork.ui:611
@@ -16059,7 +16109,7 @@ msgstr "Ахьаҵ"
#: svx/uiconfig/ui/dockingfontwork.ui:682
msgctxt "dockingfontwork|framePosition"
msgid "Position and Indent"
-msgstr ""
+msgstr "Апозициеи ахьаҵи"
#. Eovtw
#: svx/uiconfig/ui/dockingfontwork.ui:703
@@ -16380,7 +16430,7 @@ msgstr "Еиҩдыраалатәуп адиакритика"
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:762
msgctxt "findreplacedialog-mobile|includekashida"
msgid "_Kashida-sensitive"
-msgstr ""
+msgstr "Ирызхьаԥштәуп кашидқәа"
#. HEtSQ
#: svx/uiconfig/ui/findreplacedialog-mobile.ui:776
@@ -16710,7 +16760,7 @@ msgstr "Еиҩдыраалатәуп адиакритика"
#: svx/uiconfig/ui/findreplacedialog.ui:874
msgctxt "findreplacedialog|includekashida"
msgid "_Kashida-sensitive"
-msgstr ""
+msgstr "Ирызхьаԥштәуп кашидқәа"
#. AtLV3
#: svx/uiconfig/ui/findreplacedialog.ui:888
@@ -17046,7 +17096,7 @@ msgstr ""
#: svx/uiconfig/ui/floatingcontour.ui:307
msgctxt "floatingcontour|TBI_POLYMOVE"
msgid "Move Points"
-msgstr ""
+msgstr "Иҭыԥхгатәуп аиқәҳәалақәа"
#. RGiWu
#: svx/uiconfig/ui/floatingcontour.ui:311
@@ -17058,7 +17108,7 @@ msgstr ""
#: svx/uiconfig/ui/floatingcontour.ui:324
msgctxt "floatingcontour|TBI_POLYINSERT"
msgid "Insert Points"
-msgstr ""
+msgstr "Иҭаргылатәуп аиқәҳәалақәа"
#. LPYnV
#: svx/uiconfig/ui/floatingcontour.ui:328
@@ -17070,7 +17120,7 @@ msgstr ""
#: svx/uiconfig/ui/floatingcontour.ui:341
msgctxt "floatingcontour|TBI_POLYDELETE"
msgid "Delete Points"
-msgstr ""
+msgstr "Ианыхтәуп аиқәҳәалақәа"
#. 9Foex
#: svx/uiconfig/ui/floatingcontour.ui:345
@@ -17220,7 +17270,7 @@ msgstr "Даҽакы..."
#: svx/uiconfig/ui/fontworkcharacterspacingcontrol.ui:110
msgctxt "fontworkcharacterspacingcontrol|RID_SVXSTR_CHARS_SPACING_KERN_PAIRS"
msgid "_Kern Character Pairs"
-msgstr ""
+msgstr "Акернинг асимволтә еихацалакқәа"
#. 8SKCU
#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
@@ -17505,7 +17555,7 @@ msgstr "Аҷыдаҟазшьақәа"
#: svx/uiconfig/ui/gotopagedialog.ui:8
msgctxt "gotopagedialog|GotoPageDialog"
msgid "Go to Page"
-msgstr ""
+msgstr "Ииатәуп анаҩстәи адаҟьах"
#. wjidN
#: svx/uiconfig/ui/gotopagedialog.ui:75
@@ -17517,7 +17567,7 @@ msgstr ""
#: svx/uiconfig/ui/gotopagedialog.ui:102
msgctxt "gotopagedialog|page_label"
msgid "Page:"
-msgstr ""
+msgstr "Адаҟьа"
#. YFG3B
#: svx/uiconfig/ui/headfootformatpage.ui:63
@@ -17727,7 +17777,7 @@ msgstr ""
#: svx/uiconfig/ui/imapdialog.ui:315
msgctxt "imapdialog|TBI_POLYMOVE"
msgid "Move Points"
-msgstr ""
+msgstr "Иҭыԥхгатәуп аиқәҳәалақәа"
#. ZEetx
#: svx/uiconfig/ui/imapdialog.ui:319
@@ -17739,7 +17789,7 @@ msgstr ""
#: svx/uiconfig/ui/imapdialog.ui:332
msgctxt "imapdialog|TBI_POLYINSERT"
msgid "Insert Points"
-msgstr ""
+msgstr "Иҭаргылатәуп аиқәҳәалақәа"
#. 77x67
#: svx/uiconfig/ui/imapdialog.ui:336
@@ -17751,7 +17801,7 @@ msgstr ""
#: svx/uiconfig/ui/imapdialog.ui:349
msgctxt "imapdialog|TBI_POLYDELETE"
msgid "Delete Points"
-msgstr ""
+msgstr "Ианыхтәуп аиқәҳәалақәа"
#. 6FfFj
#: svx/uiconfig/ui/imapdialog.ui:353
@@ -17877,7 +17927,7 @@ msgstr "Иактиву"
#: svx/uiconfig/ui/imapmenu.ui:42
msgctxt "imapmenu|arrange"
msgid "_Arrange"
-msgstr ""
+msgstr "Иахьыҟоу аҭыԥ"
#. 97MAj
#: svx/uiconfig/ui/imapmenu.ui:52
@@ -18195,7 +18245,7 @@ msgstr ""
#: svx/uiconfig/ui/optgridpage.ui:70
msgctxt "optgridpage|usegridsnap"
msgid "_Snap to grid"
-msgstr ""
+msgstr "Акаҭа адҳәалара"
#. bYzG9
#: svx/uiconfig/ui/optgridpage.ui:78
@@ -18207,7 +18257,7 @@ msgstr ""
#: svx/uiconfig/ui/optgridpage.ui:89
msgctxt "optgridpage|gridvisible"
msgid "_Visible grid"
-msgstr ""
+msgstr "Иаарԥштәуп акаҭа"
#. nxP8s
#: svx/uiconfig/ui/optgridpage.ui:97
@@ -18219,7 +18269,7 @@ msgstr ""
#: svx/uiconfig/ui/optgridpage.ui:138
msgctxt "optgridpage|label1"
msgid "Grid"
-msgstr ""
+msgstr "Акаҭа"
#. GhA8G
#: svx/uiconfig/ui/optgridpage.ui:183
@@ -18249,7 +18299,7 @@ msgstr "Вертикалла:"
#: svx/uiconfig/ui/optgridpage.ui:241
msgctxt "optgridpage|synchronize"
msgid "Synchronize a_xes"
-msgstr ""
+msgstr "Исинхронтәуп агәҵәқәа"
#. TFU5G
#: svx/uiconfig/ui/optgridpage.ui:250
@@ -18303,7 +18353,7 @@ msgstr "Вертикалла:"
#: svx/uiconfig/ui/optgridpage.ui:479
msgctxt "optgridpage|label3"
msgid "Subdivision"
-msgstr ""
+msgstr "Иацҵоу аиқәҳәалақәа"
#. Bk6ie
#: svx/uiconfig/ui/optgridpage.ui:521
@@ -18345,7 +18395,7 @@ msgstr ""
#: svx/uiconfig/ui/optgridpage.ui:578
msgctxt "optgridpage|snappoints"
msgid "To obje_ct points"
-msgstr ""
+msgstr "Аобиект аиқәҳәаларақәа рахь"
#. BCxLX
#: svx/uiconfig/ui/optgridpage.ui:586
@@ -18363,13 +18413,13 @@ msgstr ""
#: svx/uiconfig/ui/optgridpage.ui:623
msgctxt "optgridpage|label7"
msgid "_Snap range:"
-msgstr ""
+msgstr "Аиқәҳәалара аобласт:"
#. 77X8u
#: svx/uiconfig/ui/optgridpage.ui:710
msgctxt "optgridpage|label6"
msgid "Snap"
-msgstr ""
+msgstr "Адҳәалара"
#. MVezU
#: svx/uiconfig/ui/optgridpage.ui:741
@@ -18477,7 +18527,7 @@ msgstr ""
#: svx/uiconfig/ui/paralinespacingcontrol.ui:124
msgctxt "paralinespacingcontrol|line_dist"
msgid "1.15 Lines"
-msgstr ""
+msgstr "1,15 ацәаҳәақәа"
#. CxLCA
#: svx/uiconfig/ui/paralinespacingcontrol.ui:125
@@ -18526,7 +18576,7 @@ msgstr "Аҵакы:"
#: svx/uiconfig/ui/paralinespacingcontrol.ui:199
msgctxt "paralinespacingcontrol|label2"
msgid "Custom Value"
-msgstr ""
+msgstr "Иабанзаалаку аҵакы"
#. wr59G
#: svx/uiconfig/ui/paralrspacing.ui:56
@@ -18678,13 +18728,13 @@ msgstr "Даныхтәума ари ахархәаҩ?"
#: svx/uiconfig/ui/querymodifyimagemapchangesdialog.ui:7
msgctxt "querymodifyimagemapchangesdialog|QueryModifyImageMapChangesDialog"
msgid "Save ImageMap changes?"
-msgstr ""
+msgstr "Еиқәырхатәума асенсортә сахьа?"
#. VzMMc
#: svx/uiconfig/ui/querymodifyimagemapchangesdialog.ui:14
msgctxt "querymodifyimagemapchangesdialog|QueryModifyImageMapChangesDialog"
msgid "The ImageMap has been modified."
-msgstr ""
+msgstr "Асенсортә сахьа ԥсахын."
#. gA2hD
#: svx/uiconfig/ui/querymodifyimagemapchangesdialog.ui:15
@@ -18726,13 +18776,13 @@ msgstr "Еиқәырхатәума аԥсахрақәа?"
#: svx/uiconfig/ui/querysaveimagemapchangesdialog.ui:7
msgctxt "querysaveimagemapchangesdialog|QuerySaveImageMapChangesDialog"
msgid "Save ImageMap changes?"
-msgstr ""
+msgstr "Еиқәырхатәума асенсортә сахьа?"
#. ByAsL
#: svx/uiconfig/ui/querysaveimagemapchangesdialog.ui:14
msgctxt "querysaveimagemapchangesdialog|QuerySaveImageMapChangesDialog"
msgid "The ImageMap has been modified."
-msgstr ""
+msgstr "Асенсортә сахьа ԥсахын."
#. 6zego
#: svx/uiconfig/ui/querysaveimagemapchangesdialog.ui:15
@@ -18750,7 +18800,7 @@ msgstr ""
#: svx/uiconfig/ui/queryunlinkgraphicsdialog.ui:14
msgctxt "queryunlinkgraphicsdialog|QueryUnlinkGraphicsDialog"
msgid "This graphic object is linked to the document."
-msgstr ""
+msgstr "Асахьа адокумент иадҳәалоуп."
#. R9bBj
#: svx/uiconfig/ui/queryunlinkgraphicsdialog.ui:15
@@ -19259,7 +19309,7 @@ msgstr "Ирхиатәуп"
#: svx/uiconfig/ui/safemodedialog.ui:196
msgctxt "safemodedialog|check_disable_all_extensions"
msgid "Disable all user extensions"
-msgstr ""
+msgstr "Иаҿыхтәуп ахархәаҩ иитәу арҭбаарақәа зегьы"
#. KSsV8
#: svx/uiconfig/ui/safemodedialog.ui:210
@@ -19277,7 +19327,7 @@ msgstr "Арҭбаарақәа"
#: svx/uiconfig/ui/safemodedialog.ui:253
msgctxt "safemodedialog|check_deinstall_user_extensions"
msgid "Uninstall all user extensions"
-msgstr ""
+msgstr "Ианыхтәуп ахархәаҩ иитәу арҭбаарақәа зегьы"
#. d8Qw9
#: svx/uiconfig/ui/safemodedialog.ui:267
@@ -19439,7 +19489,7 @@ msgstr "Аҵәаӷәатә"
#: svx/uiconfig/ui/sidebararea.ui:136
msgctxt "sidebararea|gradientstyle"
msgid "Axial"
-msgstr ""
+msgstr "Агәҵәытә"
#. vVAfq
#: svx/uiconfig/ui/sidebararea.ui:137
@@ -19559,7 +19609,7 @@ msgstr "Аҵәаӷәатә"
#: svx/uiconfig/ui/sidebararea.ui:321
msgctxt "sidebararea|transtype"
msgid "Axial"
-msgstr ""
+msgstr "Агәҵәытә"
#. 7BS94
#: svx/uiconfig/ui/sidebararea.ui:322
@@ -19697,7 +19747,7 @@ msgstr ""
#: svx/uiconfig/ui/sidebargallery.ui:326
msgctxt "sidebargallery|extended_tip|value"
msgid "Enter search text."
-msgstr ""
+msgstr "Иҭажәгал аԥшааразы атекст."
#. YDmBa
#: svx/uiconfig/ui/sidebargallery.ui:352
@@ -20178,7 +20228,7 @@ msgstr "Аԥштәы:"
#: svx/uiconfig/ui/sidebarshadow.ui:109
msgctxt "sidebarshadow|blur_label"
msgid "Blur:"
-msgstr ""
+msgstr "Аҵыӡәӡәаара:"
#. SLW9V
#: svx/uiconfig/ui/sidebarshadow.ui:123
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index a3fce5622eb..4bc64bc9e62 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-02-26 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -3030,11 +3030,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Асиа 5 ацҵ."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Хыхьтәии ҵаҟатәии аколонтитулқәа"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10619,38 +10619,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Атаблица"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Аформатркра"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Агиперзхьарԥш"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Аномерркра"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Егьырҭқәа"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16516,55 +16522,55 @@ msgid "Frame"
msgstr "Афреим"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Апозициеи ашәагааи"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Апараметрқәа"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Агиперзхьарԥш"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Аобласт"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Аҵәцара"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29177,44 +29183,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
#, fuzzy
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Ашрифт"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Аҭыԥ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Адырганҵа мрагылара-азиатәи атекст азы"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Ацәырлашара"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -29226,85 +29232,85 @@ msgid "List Style"
msgstr "Асиа астиль"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Ахьӡ рыҭатәуп нас иҵәахтәуп ахархәаҩ истильқәа"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Амаркерқәа"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Аномерркра"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Аконтур"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Асахьа"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Аҭыԥ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Аномерркразы иаԥышәҵа шхатә сиа ма аструктура"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Ирхиатәуп"
@@ -29316,111 +29322,111 @@ msgid "Paragraph Style"
msgstr "Абзац астиль"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Ахьаҵқәеи аинтервалқәеи"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Аиҟаратәра"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Адаҟьаҟны аҭыԥ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Мпагылара-азиатәи акьыԥхьра аԥҟарақәа"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
#, fuzzy
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Ашрифт"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Ашрифт аеффектқәа"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Аҭыԥ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Мпагылара-азиатәи атекст адырганҵа"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Ацәырлашара"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "abs"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Ахалагаранбан"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Аобласт"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Аҵәцара"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Аҭагылазаашьа"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Аструктуреи асиақәеи"
@@ -29432,55 +29438,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Атип"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Апараметрқәа"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Аобласт"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Аҵәцара"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -29500,61 +29506,61 @@ msgid "Standard"
msgstr "Ишыҟоу еиԥш"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Адаҟьа"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Аобласт"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Аҵәцара"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Хыхьтәи аколонтитул"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Ҵаҟатәи аколонтитул"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Аиҵагылақәа"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Албаага"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Атексттә каҭа"
diff --git a/source/ab/uui/messages.po b/source/ab/uui/messages.po
index 373e6e22caa..393d3e14dcf 100644
--- a/source/ab/uui/messages.po
+++ b/source/ab/uui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-02 00:05+0100\n"
-"PO-Revision-Date: 2024-03-16 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1529847183.000000\n"
#. DLY8p
@@ -888,7 +888,7 @@ msgstr ""
#: uui/inc/strings.hrc:82
msgctxt "STR_VERIFY_CERT"
msgid "You need to view the certificate first."
-msgstr ""
+msgstr "Раԥхьа ихымԥадатәиуп асертификат ахәаԥшра."
#. 45x3T
#: uui/uiconfig/ui/authfallback.ui:8
diff --git a/source/ab/vcl/messages.po b/source/ab/vcl/messages.po
index 2ef281f42dc..220cd8c9339 100644
--- a/source/ab/vcl/messages.po
+++ b/source/ab/vcl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2023-09-09 11:35+0000\n"
+"PO-Revision-Date: 2024-06-24 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/vclmessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542022338.000000\n"
#. k5jTM
@@ -161,7 +161,7 @@ msgstr "E"
#: vcl/inc/print.hrc:56
msgctxt "RID_STR_PAPERNAMES"
msgid "Executive"
-msgstr ""
+msgstr "Executive"
#. SXPft
#: vcl/inc/print.hrc:57
diff --git a/source/ab/xmlsecurity/messages.po b/source/ab/xmlsecurity/messages.po
index e6bbaf998e9..a5afac63ec9 100644
--- a/source/ab/xmlsecurity/messages.po
+++ b/source/ab/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: 2024-04-20 14:13+0200\n"
-"PO-Revision-Date: 2024-01-11 12:37+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/ab/>\n"
"Language: ab\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1561457060.000000\n"
#. EyJrF
@@ -395,7 +395,7 @@ msgstr "Иҵабыргуп аҟынӡа:"
#: xmlsecurity/uiconfig/ui/certpage.ui:33
msgctxt "certpage|label1"
msgid "Certificate Path"
-msgstr ""
+msgstr "Асертификат амҩа"
#. y2mBB
#: xmlsecurity/uiconfig/ui/certpage.ui:45
@@ -413,7 +413,7 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/certpage.ui:122
msgctxt "certpage|label2"
msgid "Certificate status"
-msgstr ""
+msgstr "Асертификат астатус"
#. YTTCA
#: xmlsecurity/uiconfig/ui/certpage.ui:148
@@ -660,31 +660,31 @@ msgstr ""
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:116
msgctxt "SecurityLevelPage|vhighimg"
msgid "Very high security level"
-msgstr ""
+msgstr "Ашәарҭадара даара иҳараку аҩаӡара"
#. PG9Kz
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:134
msgctxt "SecurityLevelPage|highimg"
msgid "High security level"
-msgstr ""
+msgstr "Ашәарҭадара иҳараку аҩаӡара"
#. mm6H3
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:152
msgctxt "SecurityLevelPage|medimg"
msgid "Medium security level"
-msgstr ""
+msgstr "Ашәарҭадара ибжьаратәу аҩаӡара"
#. odkxv
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:170
msgctxt "SecurityLevelPage|lowimg"
msgid "Low security level"
-msgstr ""
+msgstr "Ашәарҭадара илаҟәу аҩаӡара"
#. Dd4PX
#: xmlsecurity/uiconfig/ui/securitylevelpage.ui:207
msgctxt "SecurityLevelPage|warningimg"
msgid "File reload needed"
-msgstr ""
+msgstr "Иаҭахуп афаил аиҭаартра"
#. 5kj8c
#: xmlsecurity/uiconfig/ui/securitytrustpage.ui:61
@@ -804,7 +804,7 @@ msgstr "Ирызҭаз"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:171
msgctxt "selectcertificatedialog|type"
msgid "Expiration date"
-msgstr ""
+msgstr "Аҿҳәара анҵәамҭа арыцхә"
#. ANyft
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:184
@@ -882,4 +882,4 @@ msgstr "Хәҭа-хәҭала"
#: xmlsecurity/uiconfig/ui/viewcertdialog.ui:206
msgctxt "viewcertdialog|path"
msgid "Certificate Path"
-msgstr ""
+msgstr "Асертификатә амҩа"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index cff3db1793a..86f4f833122 100644
--- a/source/af/cui/messages.po
+++ b/source/af/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 20:55+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
@@ -2562,11 +2562,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Om 'n CSV-lêer as 'n nuwe blad in die huidige \"Calc\"-spreiblad dokument oop te maak, kies »Sheet ▸ Sheet insert from file...«."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Jy kan voortgaan om te skryf met die verstek formatering eienskappe nadat jy handmatig vetdruk, kursief of onderstreep toepas deur %MOD1+Shift+X te druk."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index ddb32f592ba..1f4daed6749 100644
--- a/source/af/sc/messages.po
+++ b/source/af/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 13:26+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560976792.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Vergelyk Modus"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Presiese passing. Sal #N/A terugstuur indien geen passing nie. (verstek).\n"
-"-1 - Presiese passing of die volgende kleiner item.\n"
-"1 - Presiese passing of die volgende groter item.\n"
-"2 - Soekmasker of meta uitdrukking pas."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14518,14 +14515,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Vergelykingsmodus"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23235,91 +23233,91 @@ msgid "_Standard"
msgstr "_Standaard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Algemene"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Lyn"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Gebied"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Skakering"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Deursigtigheid"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Font"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Font-effekte"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Inkepe en spasiëring"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Teks"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Teks-animasie"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensie-lyn"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Belyning"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatiese Tipografie"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tab-oortjies"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Teks beklemtoon"
@@ -23918,102 +23916,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Skrap"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Geen rand"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle rande"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Buite Rande"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Dik buite-rand"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Dik Onder-rand"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dubbel Onder-Rand"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Dik Bo- en Onder-Rande"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Dubbele Bo- en Onder-Rande"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Linker Rand"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Regter Rand"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Boonste Rand"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Onderste Rand"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagnaal na bo Omranding"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagnaal na onder Omranding"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bo- en Onder-Rande"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Linker- en Regter-Rande"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24051,49 +23953,49 @@ msgid "Format Cells"
msgstr "Formateer selle"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Getalle"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Fonteffekte"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Belyning"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatiese Tipografie"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Grense"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Agtergrond"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Sel Beveiliging"
@@ -28182,43 +28084,43 @@ msgid "Page Style"
msgstr "Bladsystyl"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Algemene"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Bladsy"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Grense"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Agtergrond"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Kop"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Voet"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Vel"
@@ -28260,55 +28162,55 @@ msgid "Cell Style"
msgstr "Selstyle"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Algemene"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Getalle"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Fonteffekte"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Belyning"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatiese Tipografie"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Grense"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Agtergrond"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Sel Beveiliging"
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index eb3d7a410a1..d9748f42eb9 100644
--- a/source/af/sd/messages.po
+++ b/source/af/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-15 10:41+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/af/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "Standaard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Reël"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Area"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skakering"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Deursigtigheid"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Fonteffekte"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Inspringing & Spasiëring"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teks"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Teksanimasie"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensie-lyn"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Verbinder"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Belyning"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatiese Tipografie"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tab-oortjies"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Teks beklemtoon"
diff --git a/source/af/sfx2/messages.po b/source/af/sfx2/messages.po
index 3ec4aebd534..e6eb2a114b0 100644
--- a/source/af/sfx2/messages.po
+++ b/source/af/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-25 20:55+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/af/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makros is gedeaktiveer, weens die Makro Veiligheidsinstellings."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makros is onderteken, maar die dokument (bevattende dokument gebeure) is ononderteken."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vertoon Makros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Vertoon Sekuriteit Opsies"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vertoon Gebeure"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grys Elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Byekorf"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blou Kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Bloudruk Planne"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geel Motief"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Woudvoël"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Verfrissend"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasie"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ligte"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Florerende Vryheid"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis."
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Middernag Blou"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur Illustrasie"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio."
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Vordering"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradisioneel"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samevatting"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Verstek"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne sakebrief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne sakebrief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visetekaartjie met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Vereenvoudige Chinese Normaal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japannees Normaal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwyder"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles uitwis"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wagwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-Klik, om die skakel: %{link} te open"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliek om die skakel: %{link} te open"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruik deur: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Spreiblad"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Voorlegging"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Onlangs gebruik"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Geen onlangse karakters"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Herstel Alle _Verstek Sjablone"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Herstel ~Verstek Teks Dokument"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Herstel ~Verstek Spreiblad"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Herstel ~Verstek Voorlegging"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Herstel ~Verstek Tekening"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Intrek"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Uitbreidings"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Hernoem"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Hernoem Kategorie"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nuwe Kategorie"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO Objek Inspekteur"
diff --git a/source/af/svtools/messages.po b/source/af/svtools/messages.po
index 0acf7146985..f4fff851f7f 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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-22 11:26+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 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560975732.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "’n Internetverbinding met $(ARG1) kon nie bewerkstellig word nie."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Bediener se foutboodskap: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Bediener se foutboodskap: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Algemene Internetfout het plaasgevind."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Die versoekte Internetdata is nie in die kas beskikbaar nie en kan nie oorgedra word nie omdat die aanlynmodus nog nie geaktiveer is nie."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Die inhoud kon nie geskep word nie."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Die lêernaam is te lank vir die teikenlêerstelsel."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Die invoersintaks is ongeldig."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Stoor asseblief die dokument in die lêerformaat van %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Die maksimum getal dokumente wat gelyktydig geopen kan word, is bereik. U moet een of meer dokumente sluit voor u ’n nuwe dokument kan open."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "’n Rugsteunkopie kon nie gemaak word nie."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ongeldige datalengte."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funksie onmoontlik: pad bevat huidige gids."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funksie onmoontlik: toestel (aandrywer) nie identies nie."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Toestel (aandrywer) nie gereed nie."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Verkeerde kontrolesom."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funksie onmoontlik: teen skryf beskerm."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Deaktiveer eers deelmodus."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Lêerformaatfout gevind by $(ARG1)(ry,kol)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Die filter vir hierdie lêerformaat is gedeaktiveer in die opstelling. Kontak asb. u stelseladministrateur."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Algemene OLE-fout."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Die aksie kon nie in die objek se huidige toestand uitgevoer word nie."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Die objek ondersteun geen aksies nie."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objek ondersteun nie hierdie aksie nie."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) tydens aktivering van objek"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 72a3a74ac0c..ff519b3d46a 100644
--- a/source/af/svx/messages.po
+++ b/source/af/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 20:55+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Geen Kantlyne"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Slegs Buitenste Lyne"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Buitenste- en Horisontale- Lyne"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Buitenste- en Alle Binneste-Lyne"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Buitenste- en Vertikale-Lyne"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
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:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Slegs Diagnale Lyne"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagnale Onderste Grens"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagnale Boonste Grens"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kruis-Dwars Grense"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Al Vier Grense"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Slegs Linker- en Regter Grense"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Slegs Boonste en Onderste Grense"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
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:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Slegs Linker Grens"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Slegs Regter Grens"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Slegs Boonste Grens"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Slegs Onderste Grens"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
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:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Linker en Regter Grense, en Alle Binne Grense"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Verwyder uit Gunstelinge"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Karakter vermis"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Voeg by gunstelinge"
@@ -10281,19 +10331,19 @@ msgstr "Voeg by gunstelinge"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafiese Grootte Kontrole"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
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)"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index bbfb32c188f..fbd8d675242 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-14 16:37+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lys 5 Vervolg"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Kopstuk en voetstuk"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabel"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatering"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Pseudo byskrifte"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nommering"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Ander"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Raam"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posisie en Grootte"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opsies"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Vou om"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Rande"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Area"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolomme"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Stel die veranderinge wat gemaak is op die tabblad, terug na wat die instellings was toe hierdie dialoog oopgemaak is."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Fonteffekte"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posisie"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatiese uitleg"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Teks beklemtoon"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Rande"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Lys Styl"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Benoem en verberg gebruiker-gedefinieerde style"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Kies 'n voorafgedefinieerde kolparagraaf tipe"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Ongeorden"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Kies 'n voorafgedefinieerde tipe geordende lys"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Georden"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Kies 'n voorafgedefinieerde skema formaat"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Skema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Kies 'n voorafgedefinieerse grafiese kolparagraaf simbool"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Beeld"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Wysig inspringing, spasiëring, an belyning van lys nommer of simbole"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posisie"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Ontwerp u eie lys of skema formaat"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Doelmaak"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Paragraafstyl"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Inkepe en spasiëring"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Belyning"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Teksvloei"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatiese Tipografie"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Fonteffekte"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posisie"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatiese uitleg"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Teks beklemtoon"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tab-oortjies"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Vallende hoofletters"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Area"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Rande"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Voorwaarde"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Stel skemavlak, lys styl en reël nommering vir paragraaf style."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Skema & Lys"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Raamstyl"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Soort"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opsies"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Vou om"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Area"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Rande"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolomme"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standaard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Bladsy"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Area"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Kop"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Voet"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Rande"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolomme"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Voetnoot"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Teksrooster"
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 0439ff74b0c..b10434a802f 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-02-05 17:34+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 1918dbba631..af9ea278d7a 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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 9b6c9424691..d58d9f40017 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">ለ ተመረጠው ንድፍ ዋናውን መጠን ይመልሳል</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "አደራጅ"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">አደራጅ</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 40038835813..49c09d45c7a 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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-12-10 01:08+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 260f9c8bf67..7fe4b16a8eb 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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+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"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 239cfc69ebb..193f09432ba 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በ ቀኝ-ይጫኑ \"የ ግራ ገጽ\" እና ይምረጡ <emph> ማሻሻያ </emph>"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "ይጫኑ የ <emph>አደራጅ</emph> tab."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "እርስዎ መጠቀም ይችላሉ የተለያዩ ራስጌዎች እና ግርጌዎች በ ተለያዩ ገጾች ላይ በ እርስዎ ሰነድ ውስጥ: ገጾቹ የተለያየ የ ገጽ ዘዴዎች እስከ ተጠቀሙ ድረስ $[officename] በርካታ በቅድሚያ የተገለጹ የ ገጽ ዘዴዎች ያቀርባል: እንደ የ <emph>መጀመሪያ ገጽ</emph>, <emph>የ ግራ ገጽ</emph> እና <emph>የ ቀኝ ገጽ</emph>, ወይንም እርስዎ የ ገጽ ዘዴ ማስተካከያ መፍጠር ይችላሉ"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "በ ቀኝ-ይጫኑ \"የ ቀኝ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች እና ይምረጡ <emph> ማሻሻያ </emph>"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "ከ <item type=\"menuitem\">ገጽ ዘዴዎች</item> ንግግር ውስጥ ይምረጡ <item type=\"menuitem\">ራስጌ</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> ራስጌ ማብሪያ </item> እና ይጫኑ <item type=\"menuitem\"> አደራጅ </item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "ከ <item type=\"menuitem\">ሚቀጥለው ዘዴ</item> ሳጥን ውስጥ ይምረጡ \"የ ግራ ገጽ\":"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "ከ <emph> ዘዴዎች </emph> መስኮት ውስጥ: በቀኝ-ይጫኑ \"የ ግራ ገጽ\" ከ ዝርዝር የ ገጽ ዘዴዎች ውስጥ እና ይምረጡ <emph> ማሻሻያ </emph>"
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "ከ <item type=\"menuitem\">ገጽ ዘዴዎች</item> ንግግር ውስጥ ይምረጡ <item type=\"menuitem\">ራስጌ</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "ይምረጡ <item type=\"menuitem\"> ራስጌ ማብሪያ </item> እና ይጫኑ <item type=\"menuitem\"> አደራጅ </item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "ከ <item type=\"menuitem\">ሚቀጥለው ዘዴ</item> ሳጥን ውስጥ ይምረጡ \"የ ቀኝ ገጽ\":"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph> አዲስ </emph>"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "በ <emph>አደራጅ</emph> tab ገጽ ውስጥ ስም ይጻፉ ለ ገጽ ዘዴ በ <emph>ስም</emph> ሳጥን ውስጥ"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "ይምረጡ <emph>የ ገጽ መጨረሻ</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "በ <item type=\"menuitem\">ዘዴ</item> ሳጥን ውስጥ ይምረጡ የ ገጽ ዘዴ የ ገጽ መደብ የሚጠቀም"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "የ <emph>ራሱ በራሱ ገጽ መጨረሻ</emph> የሚታየው በ ገጹ መጨረሻ ላይ ነው: የ ገጹ መጨረሻ የተለየ \"የሚቀጥለው ዘዴ\" ሲኖረው"
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "በ ቀኝ-ይጫኑ በ ገጽ ዘዴ ላይ እና ይምረጡ <emph>አዲስ</emph> አዲሱ የ ገጽ ዘዴ በ መጀመሪያ ሁሉንም የ ተመረጠውን ገጽ ባህሪዎች ይኖረዋል"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "በ <emph>አደራጅ</emph> tab ገጽ: ውስጥ ስም ይጻፉ ለ ገጽ ዘዴ በ <emph>ስም</emph> ሳጥን ውስጥ: ለምሳሌ \"የ እኔ የ መሬት አቀማመጥ\""
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "የ አንድ ገጽ እርዝመት ዘዴዎች"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "የ ገጽ ዘዴ መጠን በ እጅ መግለጫ"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ከ ገጽ ዘዴዎች ዝርዝር ውስጥ: በቀኝ-ይጫኑ እቃው ላይ እና ከዛ ይምረጡ <emph> አዲስ </emph>"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "በ <emph>አደራጅ</emph> tab, ስም ይጻፉ በ <emph>ስም</emph> ሳጥን ውስጥ"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index b7f76a03e2c..9fb535ab002 100644
--- a/source/am/sc/messages.po
+++ b/source/am/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-02-01 09:33+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/am/>\n"
@@ -14278,14 +14278,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14508,14 +14509,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23225,91 +23227,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23909,102 +23911,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ድንበር የለም"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "ሁሉንም ድንበሮች"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "ከ ድንበሮች ውጪ"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "ወፍራም የ ሳጥን ድንበር"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "ወፍራም ድንበር ከ ታች"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "ድርብ ድንበር ከ ታች"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "ከ ላይ እና ከ ታች ወፍራም ድንበሮች"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "ከ ላይ እና ከ ታች ድርብ ድንበሮች"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "የ ግራ ድንበር"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "የ ቀኝ ድንበር"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "የ ላይ ድንበር"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "የ ታች ድንበር"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "ከ ላይ ሰያፍ ድንበር"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "ከ ታች ሰያፍ ድንበር"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "የ ላይ እና የ ታች ድንበሮች"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "የ ግራ እና የ ቀኝ ድንበሮች"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24042,49 +23948,49 @@ msgid "Format Cells"
msgstr "የ ክፍሎች አቀራረብ"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ቁጥሮች"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ፊደል"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "የ ፊደል ውጤቶች"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ማሰለፊያ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asian Typography"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "መደብ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ክፍሉን መጠበቂያ"
@@ -28173,43 +28079,43 @@ msgid "Page Style"
msgstr "የ ገጽ ዘዴ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ገጽ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "መደብ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ራስጌ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ግርጌ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ወረቀት"
@@ -28251,55 +28157,55 @@ msgid "Cell Style"
msgstr "የክፍል ዘዴ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ቁጥሮች"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ፊደል"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "የ ፊደል ውጤቶች"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ማሰለፊያ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "መደብ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ክፍሉን መጠበቂያ"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 4621092d4e7..d68f6442dee 100644
--- a/source/am/sd/messages.po
+++ b/source/am/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-23 12:49+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/am/>\n"
@@ -9552,97 +9552,97 @@ msgid "_Standard"
msgstr "_መደበኛ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "መስመር"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ቦታ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "በ ማጥላት ላይ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ግልጽነት"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ፊደል"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "የፊደል ውጤት"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ማስረጊያዎች & ክፍተት"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ጽሁፍ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "የጽሁፍ እንቅስቃሴ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "አቅጣጫ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "አገናኝ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ማሰለፊያ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ማስረጊያ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "በ ማድመቅ ላይ"
diff --git a/source/am/sfx2/messages.po b/source/am/sfx2/messages.po
index 9e54d022eb7..605cd71bcde 100644
--- a/source/am/sfx2/messages.po
+++ b/source/am/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/am/>\n"
@@ -1620,376 +1620,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "የ ንብ እንጀራ"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ሰማያዊ ክብ"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "የ ንድፍ እቅድ"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "ከረሜላ"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ትኩረት"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "የ ጫካ ወፍ"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ቀስቃሽ"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "ብርሃን"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "ትልቅ ከተማ"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "እኩለ ሌሊት ሰማያዊ"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ተፈጥሮ ማሳያ"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "እርሳስ"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ፒያኖ"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ቦርሳ"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "ሂደት"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "ፀሐይ መጥለቂያ"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "የ ጥንት"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ደማቅ"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "ስራ ማመልከቻ"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "መቀጠያ"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ነባር"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "ዘመናዊ"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ዘመናዊ የ ንግድ ደብዳቤ serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "የ ንግድ ካርድ ከ አርማ ጋር"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "ቀላል"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ማስወገጃ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ሁሉንም ማጽጃ"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "የ መግቢያ ቃል እርዝመት"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "ሰነድ"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "ሰንጠረዥ"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "ማቅረቢያ"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "መሳያ"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "በቅርብ ጊዜ የ ተጠቀሙበት"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "የ ቅርብ ጊዜ ባህሪ የለም"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "ሁሉንም ነባ~ር ቴምፕሌቶች እንደ ነበር መመለሻ"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~ማምጫ"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "ተ~ጨማሪዎች"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "እንደገና መሰየሚያ"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "ምድብ እንደገና መሰየሚያ"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "አዲስ ምድብ"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/am/svtools/messages.po b/source/am/svtools/messages.po
index e864e30be75..1f4627bb60f 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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\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"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "የ ኢንተርኔት ግንኙነት መመስረት አልተቻለም $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"የ ሰርቨሩ የ ስህተት መልእክት: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"የ ሰርቨሩ የ ስህተት መልእክት: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "ባጠቃላይ የ ኢንተርኔት ስህተት ተፈጥሯል"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "የ ተጠየቀው የ ኢንተርኔት ዳታ ዝግጁ አይደለም በ cache ውስጥ እና ማስተላለፍ አይቻልም እንደ በ መስመር ላይ ዘዴ አልጀመረም"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ይዞታዎችን መፍጠር አልተቻለም"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "የ ፋይሉ ስም በጣም ረጅም ነው ለ ታለመው የ ፋይል ስርአት"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ያስገቡት አገባብ ዋጋ የለውም"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"እባክዎን ሰነዱን በ %PRODUCTNAME %PRODUCTVERSION ፋይል አቀራረብ ያስቀምጡ"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "በ አንድ ጊዜ ሊከፍቱት የሚችሉትን ከፍተኛው የ ሰንድ ቁጥር ላይ ደርሰዋል: አንድ ወይንም ሁለት ሰንዶችን መዝጋት አለብዎት አዲስ ሰነድ ከ መክፈትዎ በፊት"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ተተኪ ኮፒ መፍጠር አልተቻለም"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ዋጋ የሌለው የ ዳታ እርዝመት"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ተግባሩን መፈጸም አይቻልም: መንገዱ የ አሁኑን ዳይሬክቶሪ ይዟል"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ተግባሩን መፈጸም አይቻልም: አካሉ (drive) ተመሳሳይ አይደለም"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "አካሉ (drive) ዝግጁ አይደለም"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "የ ተሳሳተ የ ድምር ውጤት"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ተግባሩን መፈጸም አልተቻለም: መጻፍ የተከለከለ"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"በ መጀመሪያ የ መካፈያ ዘዴን ያቦዝኑ"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "የ ፋይል አቀራረብ ስህተት ተገኝቷል በ $(ARG1)(ረድፍ , አምድ)"
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "የ ፋይል አቀራረብ ማጣሪያ በ ማሰናጃ ውስጥ ተሰናክሏል: እባክዎን የ ስርአት አስተዳዳሪውን ያማክሩ"
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ባጠቃላይ የ OLE ስህተት"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ተግባሩን መፈጸም አልተቻለም በ አሁኑ የ እቃው ሁኔታ ውስጥ"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "እቃው ምንም አይነት ተግባሮች አይደግፍም"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "እቃው ይህን ተግባር አይደግፍም"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) እቃውን በ ማስነሳት ላይ"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index 61a433d749e..4a058d72c5c 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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-02 21:51+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 48f8cd94347..bef864ad9e6 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 13:39+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 11:46+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"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "ዝርዝር 5 የቀጠለ"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "ራስጌ እና ግርጌ"
+msgstr ""
#. uCLQX
#: sw/inc/strings.hrc:139
@@ -10590,38 +10590,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16422,55 +16428,55 @@ msgid "Frame"
msgstr "ክፈፍ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ምርጫዎች"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "መጠቅለያ"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ቦታ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "አምዶች"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ማክሮ"
@@ -28865,43 +28871,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ፊደል"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "የ ፊደል ውጤቶች"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ቦታ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "የ እስያ እቅድ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ማድመቂያ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ድንበሮች"
@@ -28913,85 +28919,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ረቂቅ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ምስል"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ቦታ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ማስተካከያ"
@@ -29003,109 +29009,109 @@ msgid "Paragraph Style"
msgstr "በ አንቀጽ ዘዴ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ማስረጊያ & ክፍተት"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ማሰለፊያ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "የ ጽሁፍ ፍሰት"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ፊደል"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "የ ፊደል ውጤቶች"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ቦታ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "የ እስያ እቅድ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ማድመቂያ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ማስረጊያ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ፊደል በ ትልቁ መጻፊያ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ቦታ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "ሁኔታው"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29117,55 +29123,55 @@ msgid "Frame Style"
msgstr "የክፈፍ ዘዴ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "አይነት"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ምርጫዎች"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "መጠቅለያ"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ቦታ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "አምዶች"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29183,61 +29189,61 @@ msgid "Standard"
msgstr "መደበኛ"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ገጽ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ቦታ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ራስጌ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ግርጌ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "አምዶች"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "የ ግርጌ ማስታወሻ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "የ ጽሁፍ መጋጠሚያ"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index d53c201abde..66246ecd887 100644
--- a/source/an/cui/messages.po
+++ b/source/an/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/an/>\n"
@@ -2544,10 +2544,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index e40a0e52f63..3611b8de8b8 100644
--- a/source/an/sc/messages.po
+++ b/source/an/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/an/>\n"
@@ -15594,14 +15594,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -15847,14 +15848,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -24946,91 +24948,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliniación"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -25640,102 +25642,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -25775,50 +25681,50 @@ msgid "Format Cells"
msgstr "~Formatear as celdas..."
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Numero"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Aliniación"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Cantos"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fundo"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -30013,44 +29919,44 @@ msgid "Page Style"
msgstr "Estilo de fuella"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pachina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Cantos"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fundo"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
#, fuzzy
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Encabezamiento"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Piet de pachina"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -30095,56 +30001,56 @@ msgid "Cell Style"
msgstr "Estilos de celda"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Numero"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliniación"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Cantos"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fundo"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index a13a030607b..4e77bb89894 100644
--- a/source/an/sd/messages.po
+++ b/source/an/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/an/>\n"
@@ -9619,97 +9619,97 @@ msgid "_Standard"
msgstr "Estandar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr ""
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparencia"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Texto"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Aliniación"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/an/sfx2/messages.po b/source/an/sfx2/messages.po
index 12a1098c507..7fea0fd33fe 100644
--- a/source/an/sfx2/messages.po
+++ b/source/an/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/an/>\n"
@@ -1573,376 +1573,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Amostrar macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Borrar"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/an/svtools/messages.po b/source/an/svtools/messages.po
index 79a67a603e7..1f7c3fe54d1 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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-06-11 20:35+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"
@@ -2394,16 +2394,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2411,37 +2419,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2449,19 +2457,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2474,43 +2482,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2518,43 +2526,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 5e33d27d0b6..38a36649e78 100644
--- a/source/an/svx/messages.po
+++ b/source/an/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -10181,134 +10181,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10317,19 +10367,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index c58fe5e42e8..3475e3d4c44 100644
--- a/source/an/sw/messages.po
+++ b/source/an/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-25 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/an/>\n"
@@ -3044,9 +3044,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10705,38 +10705,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hipervinclo"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16618,55 +16624,55 @@ msgid "Frame"
msgstr ""
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posición y grandaria"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcions"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipervinclo"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Cantos"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -29216,43 +29222,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tipo de letra"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posición"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Cantos"
@@ -29264,85 +29270,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr ""
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imachen"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posición"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29354,109 +29360,109 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Aliniación"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipo de letra"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posición"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Cantos"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr ""
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29468,55 +29474,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcions"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Cantos"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29535,61 +29541,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pachina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Capitero"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Piet de pachina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Cantos"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 941f1338236..d840b6f4bb1 100644
--- a/source/ar/cui/messages.po
+++ b/source/ar/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 564c9590d07..1b2fddb24f3 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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ar/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 52160eaf004..7a335b4c4cb 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ar/>\n"
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05250000.xhp\">طبقة</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 8608d002c55..f2e030758e2 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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-12 14:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ar/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index c529b81ad4e..02ee231759b 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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-25 05:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ar/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index a96a340d1ac..3e533b32cfc 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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -4282,13 +4282,13 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
msgstr ""
#. fYHA2
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index a1fb3a7511c..a783c941edb 100644
--- a/source/ar/sc/messages.po
+++ b/source/ar/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ar/>\n"
@@ -14471,14 +14471,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14703,14 +14704,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23528,91 +23530,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24230,102 +24232,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "بلا حدّ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "كل الحدود"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "الحدود الخارجية"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "حد صندوقي عريض"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "حد بقاع عريض"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "حد مزدوج القاع"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "حدود علوية و عريضة سفلية"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "حدود علوية ومزدوجة سفلية"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "الحد الأيسر"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "حد أيمن"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "حد علوي"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "حد سفلي"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "حد قطري لأعلى"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "حد قطري لأسفل"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "حدود علوية وسفلية"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "حدود يمنى ويسرى"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24363,49 +24269,49 @@ msgid "Format Cells"
msgstr "تنسيق الخلايا"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "الأرقام"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "الخط"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "تأثيرات الخطّ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "محاذاة"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "طباعة آسيوية"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "الحدود"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "الخلفية"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "حماية الخلية"
@@ -28527,43 +28433,43 @@ msgid "Page Style"
msgstr "طراز الصفحة"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "الصفحة"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "الحدود"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "الخلفية"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "الرأس"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "تذييل"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ورقة"
@@ -28605,55 +28511,55 @@ msgid "Cell Style"
msgstr "نمط الخلية"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "الأرقام"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "الخط"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "تأثيرات الخطّ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "محاذاة"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "طباعة آسيوية"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "الحدود"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "الخلفية"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "حماية الخلية"
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 8a726658d38..5ed3f2e4349 100644
--- a/source/ar/sd/messages.po
+++ b/source/ar/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 11:57+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ar/>\n"
@@ -9597,100 +9597,100 @@ msgid "_Standard"
msgstr "_قياسي"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "الخط"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "منطقة"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "الظلال"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "الشفافية"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "الخط"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "تأثيرات الخطّ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "الإزاحات والتباعد"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "النص"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "حركة النص"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "خط قياس"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "موصل"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "المحاذاة"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "طباعة آسيوية"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "تبويبات"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "الإبراز"
diff --git a/source/ar/sfx2/messages.po b/source/ar/sfx2/messages.po
index 6b7c39f7c54..0a9a181334f 100644
--- a/source/ar/sfx2/messages.po
+++ b/source/ar/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ar/>\n"
@@ -1629,376 +1629,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "وحدات الماكرو معطلة بسبب إعدادات أمن الماكرو."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "وحدات الماكرو موقعة، لكن المستند (الذي يحتوي أحداث المستند) غير موقع."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "أظهر الماكرو"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "أظهر الأحداث"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "أناقة رمادية"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "خلية نحل"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "منحنى أزرق"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "خرائط أولية"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "علكة"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "فكرة صفراء"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "الحمض النووي"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "تركيز"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "طير الغابة"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "نَضِرة"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "إلهام"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "أضواء"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "تحرر متنامٍ"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "الحاضرة"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "أزرق ليلي"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "عَرض طبيعة"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "قلم رصاص"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "بيانو"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "حقيبة عَرض"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "تقدُّم"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "الغروب"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "عتيق"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "زاهي"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "سيرة ذاتية"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "عاوِد"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "المبدئيّ"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "عصري"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "خطاب عمل عصري بحروف غير مذيّلة"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "خطاب عمل عصري بحروف مذيّلة"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "بطاقة أعمال فيها شعار"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "بسيط"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "دلالات ونموذج عمليات الأعمال"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "الصينية المبسطة عادي"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "ياباني عادي"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "أزِل"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "امسح الكل"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "طول كلمة السر"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-انقر لتفتح الرابط: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "انقر لتفتح الرابط: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(يستخدمه: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "مستند"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "جدول مُمتد"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "عرض تقديمي"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "رسم"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "المستخدمة مؤخرا"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "لا محارف مستخدمة مؤخرا"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "صفّر كل ال~قوالب المبدئيّة"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "صفّر المس~تند النصي المبدئيّ"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "صفّر ال~جدول الممتد المبدئيّ"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "صفّر ال~عرض التقديمي المبدئيّ"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "صفّر ال~رسم المبدئيّ"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "ا~ستورد"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "امت~دادات"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "أعد التسمية"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "أعدْ تسمية الصنف"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "صنف جديد"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "فاحص كائنات UNO"
diff --git a/source/ar/svtools/messages.po b/source/ar/svtools/messages.po
index 963db2815e5..a449d643b89 100644
--- a/source/ar/svtools/messages.po
+++ b/source/ar/svtools/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ar/>\n"
@@ -2387,10 +2387,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "تعذّر إنشاء اتصال شابكة مع $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2398,7 +2406,7 @@ msgstr ""
"رسالة الخطأ من الخادوم: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2408,37 +2416,37 @@ msgstr ""
"رسالة الخطأ من الخادوم: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "حدث خطأ عام في الشابكة."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "بيانات الشابكة المطلوبة غير متوفرة في الخبيئة ولا يمكن نقلها إذ أن وضع ”متصل“ لم يُفعّل بعد."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "تعذّر إنشاء المحتويات."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "اسم الملف طويل جدا لنظام الملفات الهدف."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "صياغة الدخل غير صالحة."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2448,19 +2456,19 @@ msgstr ""
"رجاءً احفظ المستند بنسق ملفات %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "وصلت إلى أقصى عدد من المستندات التي يمكن فتحها في نفس الوقت. عليك إغلاق مستندا أو أكثر قبل أن تفتح مستند جديد."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "تعذّر إنشاء نسخة احتياطية."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2480,43 +2488,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "طول البيانات غير صالح."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "الوظيفة غير ممكنة: يحتوي المسار على الدليل الحالي."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "الوظيفة غير ممكنة: الجهاز (محرك الأقراص) غير مماثل."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "الجهاز (محرك الأقراص) ليس جاهزًا."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "تدقيق المجموع خطأ."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "الوظيفة غير ممكنة: محمي ضد الكتابة."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2526,43 +2534,43 @@ msgstr ""
"ألغِ وضع المشاركة أولًا."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "عُثر على خطأ في نسَق الملف في $(ARG1)(صف،عمود)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "مرشّح نسق الملفات هذا معطّل في الضبط. رجاءً راسل مدير النظام."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "خطأ OLE عام."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "لا يمكن تنفيذ الإجراء والكائن في هذه الحالة."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "لا يدعم الكائن أي إجراءات."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "لا يدعم الكائن هذا الإجراء."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) أثناء تنشيط الكائن"
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 918e675b9f5..91fd3befde5 100644
--- a/source/ar/svx/messages.po
+++ b/source/ar/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-25 09:36+0000\n"
"Last-Translator: خالد حسني <khaled@libreoffice.org>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -10171,134 +10171,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "لا حدود"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "الحد الخارجي فقط"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "الحد الخارجي والخطوط الأفقية"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "الحد الخارجي وكل الخطوط الداخلية"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "الحد الخارجي والخطوط العمودية"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "الحد الخارجي بلا تغيير الخطوط الداخلية"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "خطوط قطرية فقط"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "حد قطري لأسفل"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "حد قطري لأعلى"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "حدود متقاطعة"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "كل الحدود الأربعة"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "الحدود اليسرى واليمنى فقط"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "الحدود العليا والسفلى فقط"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "الحدود العليا والسفلى، وكل الخطوط الأفقية"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "الحد الأيسر فقط"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "الحد الأيمن فقط"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "الحد العلوي فقط"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "الحد السفلي فقط"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "الحدود العليا والسفلى، وكل الخطوط الداخلية"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "الحدود اليسرى واليمنى، وكل الخطوط الداخلية"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10307,19 +10357,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "فحص حجم الرسمة"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "للصورة ’%NAME%‘ بكسلات قليلة للغاية للحجم الحالي (%DPIX% × %DPIY% نقطة للبوصة)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "للصورة ’%NAME%‘ بكسلات كثيرة للغاية للحجم الحالي (%DPIX% × %DPIY% نقطة للبوصة)"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index eaac9f64247..23b7efbf3da 100644
--- a/source/ar/sw/messages.po
+++ b/source/ar/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-01-16 01:45+0000\n"
"Last-Translator: tx99h4 <tx99h4@hotmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "متابعة قائمة ٥"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "ترويسة وتذييل"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10632,38 +10632,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "رابط"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16464,55 +16470,55 @@ msgid "Frame"
msgstr "إطار"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "الموضع و الحجم"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "خيارات"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "التفاف"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "رابط"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "الحدود"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "منطقة"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "الأعمدة"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ماكرو"
@@ -28976,43 +28982,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "أعِد أية تغييرات أُجريت على اللسان الظاهر هنا إلى الإعدادات التي كانت موجودة عندما فُتح هذا الحوار."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "الخط"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "تأثيرات الخطّ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "الموضع"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "تخطيط أسيوي"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "الإبراز"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "الحدود"
@@ -29024,85 +29030,85 @@ msgid "List Style"
msgstr "طراز القائمة"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "سمِّ وأخفِ الطرُز المعرَّفة من المستخدم"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "غير مرتّبة"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "اختر قائمة مرتّبة معرّفة مسبقًا"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "مرتّبة"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "المخطط"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "صورة"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "عدّل الإزاحة والتباعد والمحاذاة لأرقام أو رموز القوائم."
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "الموضع"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "خصّص"
@@ -29114,109 +29120,109 @@ msgid "Paragraph Style"
msgstr "نمط الفقرة"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "الإزاحات والتباعد"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "محاذاة"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "انسياب النص"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "طباعة آسيوية"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "الخط"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "تأثيرات الخطّ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "الموضع"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "تخطيط أسيوي"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "الإبراز"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "تبويبات"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "أحرف استهلالية"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "منطقة"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "حدود"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "الشرط"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "أعِدّ مستوى التخطيط وطراز القائمة و ترقيم الأسطر لطراز الفقرة."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "المخطط & القائمة"
@@ -29229,55 +29235,55 @@ msgid "Frame Style"
msgstr "أنماط الإطارات"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "النوع"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "خيارات"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "التفاف"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "منطقة"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "الحدود"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "الأعمدة"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ماكرو"
@@ -29295,61 +29301,61 @@ msgid "Standard"
msgstr "قياسي"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "الصفحة"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "منطقة"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "الرأس"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "تذييل"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "الحدود"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "الأعمدة"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "حاشية"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "شبكة النص"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index c60a6229311..c2ee93d910e 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+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"
@@ -2568,10 +2568,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 7fecdbecc89..457a6803f72 100644
--- a/source/as/sc/messages.po
+++ b/source/as/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+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"
@@ -14532,14 +14532,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14766,14 +14767,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23730,91 +23732,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24433,104 +24435,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "কোনো সীমাৰেখা নাই"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "প্ৰান্তৰেখা - সীমাসমূহ"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24569,49 +24473,49 @@ msgid "Format Cells"
msgstr "ফৰমেট কক্ষবোৰ"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "সংখ্যাবোৰ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "আখৰ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "আখৰৰ প্ৰভাববোৰ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "শাৰীকৰণ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "এছিয়ান মুদ্ৰণ পদ্ধতি"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "সীমাবোৰ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "কোষ প্রতিৰক্ষা"
@@ -28831,43 +28735,43 @@ msgid "Page Style"
msgstr "পৃষ্ঠাৰ শৈলী"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "সীমাবোৰ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "হেডাৰ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ফুটাৰ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "শ্বিট"
@@ -28912,55 +28816,55 @@ msgid "Cell Style"
msgstr "শৈলীবোৰ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "সংখ্যাবোৰ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "আখৰ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "আখৰৰ প্ৰভাববোৰ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "শাৰীকৰণ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এছিয়ান মুদ্ৰণ পদ্ধতি"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "সীমাবোৰ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "কোষ প্রতিৰক্ষা"
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index b67f6b2d25c..9882337b3c3 100644
--- a/source/as/sd/messages.po
+++ b/source/as/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/as/>\n"
@@ -9785,98 +9785,98 @@ msgid "_Standard"
msgstr "প্ৰামাণিক (_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "শাৰী"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "স্থান"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ছাঁৰে আবৃত কৰা"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ফণ্ট"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ফণ্টৰ প্ৰভাৱ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ইণ্ডেণ্টবোৰ আৰু ব্যৱধান"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "লিখনি"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "লিখনি এনিমেশ্বন"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "মাত্রাযুক্ত কৰা"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "সংযোগক"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "সংৰেখন"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এছিয়ান মুদ্ৰণ পদ্ধতি"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "টেবসমূহ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/as/sfx2/messages.po b/source/as/sfx2/messages.po
index 56f6f1e8ce5..e8719d59275 100644
--- a/source/as/sfx2/messages.po
+++ b/source/as/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+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"
@@ -1620,377 +1620,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "আতৰাওক"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/as/svtools/messages.po b/source/as/svtools/messages.po
index 53972d8caef..2772aa92f56 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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/as/>\n"
@@ -2394,10 +2394,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) লৈ ইন্টাৰ্নে'ট সংযোগ স্থাপন কৰিব পৰা ন'গ'ল।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2405,7 +2413,7 @@ msgstr ""
"চাৰ্ভাৰ ত্ৰুটি বাৰ্তা: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2415,37 +2423,37 @@ msgstr ""
"চাৰ্ভাৰ ত্ৰুটি বাৰ্তা: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "সাধাৰণ ইন্টাৰনেট ত্ৰুটি দেখা দিছে।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "অনুৰোধ কৰা ইন্টাৰনেট তথ্য ক্যাশত নাই আৰু অনলাইন অৱস্থা সক্ৰিয় নোহোৱা কাৰণে পঠিয়াব নোৱাৰি।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "বিষয়সূচীটো সৃষ্টি কৰিব পৰা নগ'ল."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "লক্ষ্য ফাইল ছিষ্টেমটোৰ কাৰণে ফাইলৰ নামটো বৰ দীঘল."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ইনপুট ছিন্টেক্সটো অকাৰ্যকৰী."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2455,19 +2463,19 @@ msgstr ""
"অনুগ্ৰহ কৰি দস্তাবেজটো এটা %PRODUCTNAME %PRODUCTVERSION ফাইল ফৰমেটত সংৰক্ষণ কৰক."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "একে সময়তে খুলিব পৰা ডকুমেন্টাৰ সৰ্বাধিক সংখ্যা পোৱা গ'ল। আৰু এটা খোলাৰ আগতে আপুনি একাধিক দস্তাবেজ খুলিব লাগিব।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "নকল সৃষ্টি কৰিব নোৱাৰি।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2487,43 +2495,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "অকাৰ্যকৰী ডাটাৰ দৈর্ঘ্য"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ফাংকশ্বন সম্ভৱ নহয়: পথত বৰ্তমান ডাইৰেকটৰি থাকে."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ফাংকশ্বন সম্ভৱ নহয়: সঁজুলি (ড্ৰাইভ) অবিকল নহয়."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "সঁজুলি (ড্ৰাইভ) সাজু নহয়।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ফাংকশ্বন সম্ভৱ নহয়: লিখা সুৰক্ষিত"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2533,47 +2541,47 @@ msgstr ""
"প্ৰথমে সেয়াৰ অৱস্থা অসক্ৰিয় কৰক।"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "সাধাৰণ OLE ভুল"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "বস্তুটোৰ বৰ্তমান স্থিতিত কাৰ্যটো কাৰ্যকৰী কৰিব পৰা নাযাব."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ডাটাবেছটোৱে সম্বন্ধবোৰ সমৰ্থন নকৰে."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "বস্তু কাৰ্য আৰম্ভ কৰক"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index b02e97839ea..aad760af917 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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -10228,134 +10228,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10364,19 +10414,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 9451557aaf5..61a1111de75 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+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"
@@ -3073,9 +3073,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10812,38 +10812,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16790,58 +16796,58 @@ msgid "Frame"
msgstr "ফ্ৰেম"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "আবৃত কৰক (~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপাৰলিংক"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29596,44 +29602,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "আখৰ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "আখৰৰ প্ৰভাববোৰ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "স্থান"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "এছীয় বিন্যাস"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "আলোকিত কৰি আছে"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
@@ -29645,85 +29651,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ৰূপৰেখা"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ছবি"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "স্থান"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "স্বনিৰ্বাচন কৰক"
@@ -29736,115 +29742,115 @@ msgid "Paragraph Style"
msgstr "(পেৰেগ্ৰাফ শৈলী: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
#, fuzzy
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ইণ্ডেণ্টবোৰ আৰু ব্যৱধান"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "শাৰীকৰণ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "টেক্সটৰ ধাৰা"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
#, fuzzy
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "এছিয়ান মুদ্ৰণ পদ্ধতি"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "আখৰ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "আখৰৰ প্ৰভাববোৰ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "স্থান"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "এছীয় বিন্যাস"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "আলোকিত কৰি আছে"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "টেবসমূহ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ডাঙৰ আখৰবোৰ আঁতৰাওক"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "চৰ্ত (~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29857,58 +29863,58 @@ msgid "Frame Style"
msgstr "ফ্রেমৰ শৈলী"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ধৰণ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "আবৃত কৰক (~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -29928,63 +29934,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "হেডাৰ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ফুটাৰ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "স্তম্ভবোৰ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ফুটনোট"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index e282c9306df..c37ce626930 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-15 05:41+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+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"
@@ -1724,7 +1724,7 @@ msgstr "Familia:"
#: cui/inc/strings.hrc:312
msgctxt "RID_SVXSTR_CHARNAME_FONT"
msgid "Font:"
-msgstr "Tipografía:"
+msgstr "Tipu lletra:"
#. KFXAV
#: cui/inc/strings.hrc:313
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Abri un ficheru CSV como fueya nueva na fueya de cálculu actual per aciu de Fueya ▸ Fueya d'un ficheru."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Pues siguir escribiendo colos atributos de formatu predeterminaos darréu d'aplicar negrina, cursiva o solliñáu calcando %MOD1+Maiús+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -20497,10 +20497,9 @@ msgstr "Bloque de caráuteres:"
#. mPCRR
#: cui/uiconfig/ui/specialcharacters.ui:123
-#, fuzzy
msgctxt "specialcharacters|fontft"
msgid "Font:"
-msgstr "Fonte"
+msgstr "Tipu lletra:"
#. 3LCFE
#: cui/uiconfig/ui/specialcharacters.ui:137
@@ -20512,7 +20511,7 @@ msgstr "Guetar:"
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
msgid "Select a Unicode block for the current font."
-msgstr "Esbilla un bloque Unicode pa la fonte actual."
+msgstr "Esbilla un bloque Unicode pal tipu lletra actual."
#. JPWW8
#: cui/uiconfig/ui/specialcharacters.ui:190
@@ -20528,10 +20527,9 @@ msgstr ""
#. XFFYD
#: cui/uiconfig/ui/specialcharacters.ui:294
-#, fuzzy
msgctxt "specialcharacters|decimallabel"
msgid "Decimal:"
-msgstr "Deci_mal"
+msgstr "Decimal:"
#. UAnec
#: cui/uiconfig/ui/specialcharacters.ui:320
diff --git a/source/ast/helpcontent2/source/text/sbasic/python.po b/source/ast/helpcontent2/source/text/sbasic/python.po
index 8d82ff878ea..93c27c1a7b6 100644
--- a/source/ast/helpcontent2/source/text/sbasic/python.po
+++ b/source/ast/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:52+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/ast/>\n"
"Language: ast\n"
@@ -1750,7 +1750,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Esti exemplu en Python espón una variable local, XSCRIPTCONTEXT, a un módulu importáu:"
#. uwiPp
#: python_import.xhp
@@ -1759,7 +1759,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Allugamientu de los scripts compartíos"
#. HugAN
#: python_import.xhp
diff --git a/source/ast/helpcontent2/source/text/sbasic/shared/03.po b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
index 412c96a9f19..e261dc6a807 100644
--- a/source/ast/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ast/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-03-11 16:41+0100\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+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"
@@ -21749,7 +21749,7 @@ msgctxt ""
"pyc_id511622808538351\n"
"help.text"
msgid "# Or, alternatively, to access the form by its index ..."
-msgstr ""
+msgstr "# O, alternativamente, p'aportar al formulariu pel so índiz..."
#. QFFzk
#: sf_form.xhp
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index 83562d7bec5..1700974ff9e 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542028585.000000\n"
@@ -2967,7 +2967,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Value Highlighting"
-msgstr "Destacar valores"
+msgstr "Resaltáu de valores"
#. B66En
#: 03080000.xhp
diff --git a/source/ast/helpcontent2/source/text/schart/01.po b/source/ast/helpcontent2/source/text/schart/01.po
index dcf0ef9b1a4..77faed3bbda 100644
--- a/source/ast/helpcontent2/source/text/schart/01.po
+++ b/source/ast/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-06 06:55+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/ast/>\n"
"Language: ast\n"
@@ -3146,7 +3146,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
-msgstr "Tenga en cuenta que si'l tamañu de representación del gráficu ye demasiáu amenorgáu puen surdir problemes cola presentación del títulu. Estos problemes puen evitase engrandando la vista o amenorgando'l tamañu de la fonte."
+msgstr "Ten en cuenta que si'l tamañu de representación de la gráfica ye demasiáu pequeñu puen surdir problemes cola presentación del títulu. Estos problemes puen evitase engrandando la vista o amenorgando'l tamañu de la lletra."
#. k3fKQ
#: 05020200.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 907e1ffbb75..0d6db609307 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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-15 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+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"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -1688,7 +1688,7 @@ msgctxt ""
"par_id3146067\n"
"help.text"
msgid "Font Color"
-msgstr "Color de fonte"
+msgstr "Color de la lletra"
#. vGqUG
#: 00000004.xhp
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index d1dc38dc462..658a11c5f5f 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542196269.000000\n"
#. 3u8hR
@@ -10067,7 +10067,7 @@ msgctxt ""
"hd_id3151113\n"
"help.text"
msgid "Font Color"
-msgstr ""
+msgstr "Color de la lletra"
#. quDy5
#: 02100200.xhp
@@ -16565,7 +16565,7 @@ msgctxt ""
"hd_id3149482\n"
"help.text"
msgid "Font Color"
-msgstr ""
+msgstr "Color de la lletra"
#. yZAbJ
#: 05020200.xhp
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 8b8ee64ef7d..d6a4306e426 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-10 07:51+0000\n"
+"PO-Revision-Date: 2024-06-23 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 5.4.3\n"
"X-POOTLE-MTIME: 1542196271.000000\n"
#. iharT
@@ -28787,7 +28787,7 @@ msgctxt ""
"par_id3152781\n"
"help.text"
msgid "Font Color"
-msgstr "Color de fonte (otros módulos)"
+msgstr "Color de la lletra"
#. twFfK
#: text_color.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 93a60ea80a1..91b460d7b05 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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 03:51+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"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -3209,7 +3209,7 @@ msgctxt ""
"par_id3145610\n"
"help.text"
msgid "Font replacement also affects the display of fonts on the $[officename] user interface."
-msgstr "La sustitución de fontes afecta tamién a la visualización de fontes na interfaz d'usuariu de $[officename]."
+msgstr "El troquéu de tipos lletra afecta tamién a la visualización de tipos lletra na interfaz d'usuariu de $[officename]."
#. y7f8c
#: 01010700.xhp
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optfontspage/delete\">Deletes the selected font replacement.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optfontspage/delete\">Desanicia la sustitución de tipos de lletra escoyida.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optfontspage/delete\">Desanicia'l troquéu de tipos lletra esbilláu.</ahelp>"
#. QN5Ap
#: 01010700.xhp
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Indicador de comentarios</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Indicador de fórmules</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9707,7 +9707,7 @@ msgctxt ""
"hd_id3150872\n"
"help.text"
msgid "Value highlighting"
-msgstr "Destacar valores"
+msgstr "Resaltáu de valores"
#. 8aPEg
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Punteru del sistema</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Oxetos/imáxenes"
#. DMhEf
#: 01060100.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/01.po b/source/ast/helpcontent2/source/text/smath/01.po
index 7f9274e7bb7..eb0cc36648b 100644
--- a/source/ast/helpcontent2/source/text/smath/01.po
+++ b/source/ast/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-05-22 12:01+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/ast/>\n"
"Language: ast\n"
@@ -13523,7 +13523,7 @@ msgctxt ""
"par_id3147374\n"
"help.text"
msgid "<ahelp hid=\"modules/smath/ui/symdefinedialog/fonts\">Displays the name of the current font and enables you to select a different font.</ahelp>"
-msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/fonts\">Amuesa'l nome del tipu de lletra n'usu y dexa escoyer un tipu de lletra distinta.</ahelp>"
+msgstr "<ahelp hid=\"modules/smath/ui/symdefinedialog/fonts\">Amuesa'l nome del tipu lletra n'usu y dexa escoyer un tipu lletra distintu.</ahelp>"
#. oSeyE
#: 06010100.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter.po b/source/ast/helpcontent2/source/text/swriter.po
index 547516a38cc..de06ebb1e49 100644
--- a/source/ast/helpcontent2/source/text/swriter.po
+++ b/source/ast/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-30 14:12+0200\n"
-"PO-Revision-Date: 2024-06-15 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+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"
@@ -662,7 +662,7 @@ msgctxt ""
"par_id0122200903085351\n"
"help.text"
msgid "<ahelp hid=\".\">Reduces the font size of the selected text.</ahelp>"
-msgstr "<ahelp hid=\".\">Amenorga'l tamañu de la fonte del testu escoyíu.</ahelp>"
+msgstr "<ahelp hid=\".\">Amenorga'l tamañu del tipu lletra del testu esbilláu.</ahelp>"
#. 63ssr
#: main0202.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 256829b2bfb..0c67bc0bea6 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-15 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152130.000000\n"
#. sZfWF
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 8fbff0189c0..271997a8979 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542028604.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Na llista d'estilos de páxina, calca col botón derechu del mur sobre «Páxina izquierda» y escueyi <emph>Modificar</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Calca la llingüeta <emph>Alministrar</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Pue usar testeres y pies de páxina distintes en delles páxines del documentu, siempres que les páxines usen estilos distintos. $[officename] apurre dellos estilos de páxines predefiníos, como <emph>Primer páxina</emph>, <emph>Páxina esquierda</emph> y <emph>Páxina derecha</emph>. Tamién pue crease un estilu de páxina personalizáu."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Calque col botón derechu del mur sobre \"Páxina derecha\" na llista d'estilos de páxina y escueya <emph>Modificar</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Nel cuadru de diálogu <item type=\"menuitem\">Estilos de páxina</item>, faiga clic na llingüeta <item type=\"menuitem\">Testera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Escueyi <item type=\"menuitem\">Activar testera</item> y calca na llingüeta <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Nel cuadru <item type=\"menuitem\">Estilu siguiente</item>, seleicione \"Páxina esquierda\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Nel cuadru de diálogu <item type=\"menuitem\">Estilos de páxina</item>, faiga clic na llingüeta <item type=\"menuitem\">Testera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Escueyi <item type=\"menuitem\">Activar testera</item> y calca na llingüeta <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Nel cuadru <item type=\"menuitem\">Estilu siguiente</item>, escueyi «Páxina derecha»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na llista d'estilos de páxina, col botón derechu del mur faiga clic nun elementu y escueya <emph>Nuevu</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Na ficha <emph>Alministrar</emph>, asigne un nome al estilu de páxina nel cuadru <emph>Nome</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Escueya <emph>Saltu de páxina</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Nel cuadru <item type=\"menuitem\">Estilu</item>, escueya un estilu de páxina qu'use'l fondu de páxina."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Inxertar un <emph>saltu de páxina automáticu</emph> a la fin d'una páxina que'l so estilu de páxina tien un valor distintu pal \"estilu siguiente\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Faiga clic col botón derechu sobre un estilu de páxina y escueya <emph>Nuevu</emph>. El nuevu estilu de páxina va llograr toles propiedaes del estilu de páxina escoyíu."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Na llingüeta <emph>Organizador</emph>, asigna un nome al estilu de páxina nel cuadru <emph>Nome</emph>; por exemplu, «El mio paisaxe»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Estilos d'una sola páxina"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Rangu definíu manualmente d'un estilu de páxina"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na llista d'estilos de páxina, col botón derechu del mur faiga clic nun elementu y escueya <emph>Nuevu</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Na llingüeta <emph>Alministrar</emph>, escriba un nome nel cuadru <emph>Nome</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index ed44e5940a8..6572090fccc 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-15 05:41+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. kBovX
@@ -14408,14 +14408,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14641,14 +14642,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23503,91 +23505,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Xenerales"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Llinia"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Área"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Solombres"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Tresparencia"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Tipu lletra"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangríes y espaciáu"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Testu"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animación del testu"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotación"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Resaltáu"
@@ -24199,103 +24201,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Desaniciar"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ensin berbesos"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Tolos berbesos"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Contornu - Berbesos"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24333,49 +24238,49 @@ msgid "Format Cells"
msgstr "Formatu de caxelles"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Númberos"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipu lletra"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fondu"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Proteición de caxelles"
@@ -28544,43 +28449,43 @@ msgid "Page Style"
msgstr "Estilu de páxina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Xenerales"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Páxina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fondu"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Testera"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Pie de páxina"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Fueya"
@@ -28623,55 +28528,55 @@ msgid "Cell Style"
msgstr "Estilu de caxella"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Xenerales"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Númberos"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Fonte"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fondu"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Proteición de caxelles"
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index da5bdf2f8f6..e2a4dc3594e 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: 2024-06-17 15:59+0200\n"
-"PO-Revision-Date: 2024-06-15 05:41+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ast/>\n"
"Language: ast\n"
@@ -2583,10 +2583,9 @@ msgstr "Segundu color:"
#. cZUiD
#: sd/inc/strings.hrc:396
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FILL_COLOR_PROPERTY"
msgid "Fill color:"
-msgstr "Primer columna"
+msgstr "Color de rellenu:"
#. U5ZDL
#: sd/inc/strings.hrc:397
@@ -2596,17 +2595,15 @@ msgstr "Estilu:"
#. vKLER
#: sd/inc/strings.hrc:398
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_PROPERTY"
msgid "Font:"
-msgstr "Tipografía"
+msgstr "Tipu lletra:"
#. Fdsks
#: sd/inc/strings.hrc:399
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FONT_COLOR_PROPERTY"
msgid "Font color:"
-msgstr "Primer columna"
+msgstr "Color de la lletra:"
#. nT7dm
#: sd/inc/strings.hrc:400
@@ -2622,17 +2619,15 @@ msgstr "Tipografía:"
#. nAqeR
#: sd/inc/strings.hrc:402
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_LINE_COLOR_PROPERTY"
msgid "Line color:"
-msgstr "Color de la llinia"
+msgstr "Color de la llinia:"
#. w7G4Q
#: sd/inc/strings.hrc:403
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SIZE_PROPERTY"
msgid "Font size:"
-msgstr "Tamañu de fonte"
+msgstr "Tamañu de la lletra:"
#. R3GgU
#: sd/inc/strings.hrc:404
@@ -9735,97 +9730,97 @@ msgid "_Standard"
msgstr "E_stándar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Xenerales"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Llinia"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Área"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Solombres"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Tresparencia"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipu lletra"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangríes y espaciáu"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Testu"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animación del testu"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotación"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Coneutor"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Resaltáu"
diff --git a/source/ast/sfx2/messages.po b/source/ast/sfx2/messages.po
index c8944f450b0..6e5c07c6395 100644
--- a/source/ast/sfx2/messages.po
+++ b/source/ast/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-15 05:41+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"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540149375.000000\n"
#. bHbFE
@@ -1617,376 +1617,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Amosar les macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Amosar les opciones de seguranza"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Buxu elegante"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianu"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderna"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Chinu simplificáu, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Desaniciar"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Llargor de la clave"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilícenlu: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Documentu"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Fueya de cálculu"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dibuxu"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Utilizaos recientemente"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Nun hai caráuteres recién"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importar"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categoría nueva"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspeutor d'oxetos UNO"
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 6c7a5ca89fe..4a9d90c133e 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-15 05:41+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"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nun se pudo afitar la conexón de rede con $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Mensax de fallu del sirvidor: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Mensax de fallu del sirvidor: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Hebo un fallu xeneral d'Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Los datos d'Internet solicitaos nun tán disponibles na memoria caché y nun se puen tresmitir porque nun s'activó el mou En llinia."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Nun pudo crease'l conteníu."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "El nome del ficheru ye enforma llargu pal sistema de ficheros de destín."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintaxis de la entrada nun ye válida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Guarde'l documentu nun formatu de ficheru de %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Aportóse al máximu permitíu de documentos que pueden abrise al empar. Pa poder abrir otru documentu tienes de zarrar ún o más documentos."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nun pudo crease la copia de seguridá."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "El llargor de los datos nun val."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Función imposible: el camín contién el direutoriu actual."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Función imposible: el preséu (unidá) nun ye'l mesmu."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Preséu (unidá) non llistu."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Función imposible: protexíu escontra escritura."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desactiva'l mou compartíu primero."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Fallu xeneral de OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "L'aición nun pue executase nel estáu actual del oxetu."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'oxetu nun almite denguna aición."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'oxetu nun almite esta aición."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) al activar l'oxetu"
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index d35ab8d346c..9c2f9f64b86 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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-15 05:41+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+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"
@@ -8181,7 +8181,7 @@ msgstr "Combinación de caráuteres diacríticos"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Griegu y coptu"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -10192,134 +10192,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Dengún berbesu"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Berbesos entecruciaos"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Tolos cuatro berbesos"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Falta'l caráuter"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10328,19 +10378,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
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:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
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)"
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index d10b0b37103..7969d119314 100644
--- a/source/ast/sw/messages.po
+++ b/source/ast/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-15 05:41+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"
@@ -3029,9 +3029,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10684,38 +10684,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabla"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatu"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Lleendes simulaes"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numberación"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16565,55 +16571,55 @@ msgid "Frame"
msgstr "Marcu"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posición y tamañu"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opciones"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Axuste"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Área"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnes"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -29178,43 +29184,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Xenerales"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Fonte"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posición"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Diseñu asiáticu"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Resaltáu"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Berbesos"
@@ -29226,85 +29232,85 @@ msgid "List Style"
msgstr "Estilu de llista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Xenerales"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Esquema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imaxe"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posición"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalizar"
@@ -29316,109 +29322,109 @@ msgid "Paragraph Style"
msgstr "Estilu de párrafu"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Xenerales"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sangríes y espaciáu"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alliniamientu"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Fluxu de testu"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipu lletra"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efeutos tipográficos"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posición"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Diseñu asiáticu"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Resaltáu"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Lletres capitales"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Área"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Berbesos"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condición"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Esquema y llista"
@@ -29430,55 +29436,55 @@ msgid "Frame Style"
msgstr "Estilu del marcu"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Xenerales"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Triba"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opciones"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Axuste"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Área"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Berbesos"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnes"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29496,61 +29502,61 @@ msgid "Standard"
msgstr "Estándar"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Xenerales"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Páxina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Área"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Testera"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Pie de páxina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Berbesos"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnes"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota al pie"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Cuadrícula de testu"
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 04675cf3a53..2eed69e36fe 100644
--- a/source/az/cui/messages.po
+++ b/source/az/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2545,10 +2545,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index b2d26310c73..aebaee5061f 100644
--- a/source/az/sc/messages.po
+++ b/source/az/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14236,14 +14236,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14466,14 +14467,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23214,91 +23216,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23901,102 +23903,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24034,49 +23940,49 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr ""
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr ""
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr ""
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr ""
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr ""
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28207,43 +28113,43 @@ msgid "Page Style"
msgstr ""
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Sәhifә"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr ""
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr ""
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr ""
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr ""
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -28287,55 +28193,55 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr ""
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr ""
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr ""
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr ""
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index 2960a97b202..c12451ac8a4 100644
--- a/source/az/sd/messages.po
+++ b/source/az/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9610,98 +9610,98 @@ msgid "_Standard"
msgstr ""
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Xəttlər"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr ""
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr ""
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr ""
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/az/sfx2/messages.po b/source/az/sfx2/messages.po
index 4f8362785c5..f94fd92d2cc 100644
--- a/source/az/sfx2/messages.po
+++ b/source/az/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1572,377 +1572,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "~Sil"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/az/svtools/messages.po b/source/az/svtools/messages.po
index 0544571a64a..1f6b0ba5f76 100644
--- a/source/az/svtools/messages.po
+++ b/source/az/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2392,16 +2392,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2409,37 +2417,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2447,19 +2455,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2472,43 +2480,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2516,43 +2524,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 20e7d341ef4..d396c4c0682 100644
--- a/source/az/svx/messages.po
+++ b/source/az/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10166,134 +10166,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10302,19 +10352,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 81b2e4b17a7..d17cfcb8177 100644
--- a/source/az/sw/messages.po
+++ b/source/az/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3040,9 +3040,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10662,38 +10662,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16560,55 +16566,55 @@ msgid "Frame"
msgstr ""
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Seçimlər"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr ""
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr ""
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr ""
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr ""
@@ -29095,43 +29101,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr ""
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr ""
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -29143,86 +29149,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr ""
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Şəkillər"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr ""
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29234,109 +29240,109 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr ""
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr ""
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr ""
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr ""
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr ""
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29348,55 +29354,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Növ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Seçimlər"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr ""
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr ""
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr ""
@@ -29414,61 +29420,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Sәhifә"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr ""
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr ""
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr ""
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr ""
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index f425e2fce0a..3a2bcdcd914 100644
--- a/source/be/cui/messages.po
+++ b/source/be/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2558,10 +2558,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index f21b6994914..d295052775f 100644
--- a/source/be/sc/messages.po
+++ b/source/be/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14593,14 +14593,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14830,14 +14831,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23734,91 +23736,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24428,105 +24430,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Без рамкі"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Структура - Межы"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Левая мяжа"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Правая мяжа"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-#, fuzzy
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Без рамкі"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-#, fuzzy
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Левыя і правыя старонкі"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24564,49 +24467,49 @@ msgid "Format Cells"
msgstr "Фарматаваць клеткі"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Лічбы"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Шрыфт"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Раўнаванне"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Межы"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Фон"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Засцераганне клетак"
@@ -28769,43 +28672,43 @@ msgid "Page Style"
msgstr "Стыль старонкі"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Старонка"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Межы"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Калантытул верхні"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Калантытул ніжні"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Аркуш"
@@ -28848,55 +28751,55 @@ msgid "Cell Style"
msgstr "Стыль клеткі"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Лічбы"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Шрыфт"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Раўнаванне"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Межы"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Засцераганне клетак"
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 7b1896f94b7..c0e3ae7911c 100644
--- a/source/be/sd/messages.po
+++ b/source/be/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "Стандарт"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Лінія"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Абсяг"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ценяванне"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Празрыстасць"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Шрыфт"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Водступы і інтэрвалы"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Тэкст"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Анімаваны тэкст"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Мерная лінія"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Злучальнік"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Раўнаванне"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Табуляцыі"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Падсвятленне"
diff --git a/source/be/sfx2/messages.po b/source/be/sfx2/messages.po
index d4f62b6a8f9..c4e28f571d4 100644
--- a/source/be/sfx2/messages.po
+++ b/source/be/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1614,376 +1614,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Сіняя крывая"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Заход сонца"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Рэтра"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Сцерці"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Ачысціць усё"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/be/svtools/messages.po b/source/be/svtools/messages.po
index 9999f82c4b8..38cc202e600 100644
--- a/source/be/svtools/messages.po
+++ b/source/be/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2385,10 +2385,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Could not establish Internet connection to $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2396,7 +2404,7 @@ msgstr ""
"Server error message: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2406,37 +2414,37 @@ msgstr ""
"Server error message: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "General Internet error has occurred."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Не ўдалося стварыць змест."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "The file name is too long for the target file system."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Недапушчальны сінтаксіс уводу."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2446,19 +2454,19 @@ msgstr ""
"Запішыце дакумент у фармаце файлаў %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Could not create backup copy."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2478,43 +2486,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Няправільная даўжыня даных."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Функцыя немагчымая: шлях утрымлівае бягучы каталог."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Function not possible: device (drive) not identical."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Прыстасаванне (дыск) не гатова."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Няправільная кантрольная сума."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Function not possible: write protected."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2524,43 +2532,43 @@ msgstr ""
"Deactivate sharing mode first."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Агульная памылка OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Немагчыма выканаць пры гэтым стане аб'екта."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Аб'ект не падтрымлівае ніякіх дзеянняў."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Аб'ект не падтрымлівае гэтага дзеяння."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) пры актывацыі аб'екту"
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index 84575a226f8..731a5908870 100644
--- a/source/be/svx/messages.po
+++ b/source/be/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Belarusian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/be/>\n"
@@ -10154,134 +10154,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10290,19 +10340,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 62145d062f7..b4f62c95738 100644
--- a/source/be/sw/messages.po
+++ b/source/be/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3027,9 +3027,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Рамка"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Настаўленні"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Абгортванне"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Спасылка"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Межы"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Абсяг"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Калонкі"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Макрас"
@@ -28879,43 +28885,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Шрыфт"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Месца"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Азіяцкі лад друку"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Падсвятленне"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Межы"
@@ -28927,85 +28933,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Структура"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Выява"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Месца"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Падагнаць"
@@ -29017,109 +29023,109 @@ msgid "Paragraph Style"
msgstr "Стыль абзаца"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Водступы і інтэрвалы"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Раўнаванне"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Плынь тэксту"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Азіяцкі лад друку"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Шрыфт"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Шрыфтавыя эфекты"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Месца"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Азіяцкі лад друку"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Падсвятленне"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Табуляцыі"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Буквіцы"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Абсяг"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Межы"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Умова"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29131,55 +29137,55 @@ msgid "Frame Style"
msgstr "Стыль рамкі"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Тып"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Настаўленні"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Абгортванне"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Абсяг"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Межы"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Калонкі"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Макрас"
@@ -29197,61 +29203,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Старонка"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Абсяг"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Калантытул верхні"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Калантытул ніжні"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Межы"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Калонкі"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Зноска"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Тэкставая рашотка"
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 8f53963409e..0a3cee3e8fb 100644
--- a/source/bg/cui/messages.po
+++ b/source/bg/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-25 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bg/>\n"
"Language: bg\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "За да отворите CSV файл като нов лист в текущата електронна таблица, използвайте „Лист ▸ Лист от файл“."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Можете да продължите да пишете с подразбираните атрибути за форматиране след ръчно прилагане на получер, курсив или подчертаване, като натиснете %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16456,13 +16456,13 @@ msgstr "минути"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Автоматично записване на документа вместо това"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Указва, че офис пакетът записва самия променен документ, вместо да създава временна версия за автовъзстановяване. Използва се същият времеви интервал, както за автовъзстановяването."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 590c0c11a8e..9faf5b0ccb8 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 11:18+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562357170.000000\n"
@@ -54600,7 +54600,7 @@ msgctxt ""
"par_id431716730587722\n"
"help.text"
msgid "Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present."
-msgstr ""
+msgstr "Всеки от незадължителните аргументи може да бъде пропуснат. Незадължителният аргумент изисква да присъстват всички предходни разделители."
#. GAPGX
#: common_func_workdaysintl.xhp
@@ -57174,7 +57174,7 @@ msgctxt ""
"par_id711715953325962\n"
"help.text"
msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>. You can however, use the mode modifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> to force search for a case-sensitive match."
-msgstr ""
+msgstr "Функцията винаги е <emph>нечувствителна към регистъра</emph>, независимо дали е отметнато полето <emph>Отчитане на регистъра</emph> в <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Изчисляване</menuitem></link>. Можете обаче да използвате модификатора за режим <emph>(?-i)</emph> в <link href=\"text/shared/01/02100001.xhp\">регулярните изрази</link>, за да наложите търсене със зачитане на регистъра."
#. 8DbP2
#: func_aggregate.xhp
@@ -69126,7 +69126,7 @@ msgctxt ""
"par_id31710859838046\n"
"help.text"
msgid "Sums values from the range C2:C6 only if the corresponding range in A2:A6 exactly match the letters \"pen\". Returns 85 because rows A2 and A4:A6 do not meet the criterion."
-msgstr ""
+msgstr "Сумира стойностите от диапазона C2:C6 само ако съответният диапазон в A2:A6 съвпада точно с буквите „кош“. Връща 85, защото редовете A2 и A4:A6 не отговарят на критерия."
#. L9Ftz
#: func_sumif.xhp
@@ -69135,7 +69135,7 @@ msgctxt ""
"par_id781710871590769\n"
"help.text"
msgid "<input>=SUMIF(A2:A6,\"pen*\",C2:C6)</input>"
-msgstr ""
+msgstr "<input>=SUMIF(A2:A6,\"кош*\",C2:C6)</input>"
#. netyd
#: func_sumif.xhp
@@ -69144,7 +69144,7 @@ msgctxt ""
"par_id431710871624405\n"
"help.text"
msgid "Sums the values from the range C2:C6 only if the corresponding cell in range A2:A6 contains the letters \"pen\". Returns the value 150 because rows A4:A5 do not meet the criterion."
-msgstr ""
+msgstr "Сумира стойностите от диапазона C2:C6 само ако съответната клетка в диапазона A2:A6 съдържа буквите „кош“. Връща стойността 150, защото редовете A4:A5 не удовлетворяват критерия."
#. PdFbx
#: func_sumif.xhp
@@ -69153,7 +69153,7 @@ msgctxt ""
"par_id311711128230771\n"
"help.text"
msgid "<input>=SUMIF(ProductName,\"pen*\",Revenue)</input>"
-msgstr ""
+msgstr "<input>=SUMIF(ИмеНаПродукт;\"кош*\";Приходи)</input>"
#. ZeyUD
#: func_sumif.xhp
@@ -69162,7 +69162,7 @@ msgctxt ""
"par_id741711128545751\n"
"help.text"
msgid "A named range can be given as the Range or SumRange parameter. For example, if the columns in the above table are respectively named \"ProductName\", \"Sales\", and \"Revenue\", the function returns 150. This function will only work as described if you have defined the names of the columns using the <link href=\"text/scalc/01/04070100.xhp#definenames)\">Define Names</link> dialog."
-msgstr ""
+msgstr "Като параметър „Диапазон“ или „ДиапазонЗаСумиране“ може да се подаде наименуван диапазон. Например ако колоните в горната таблица са наименувани съответно „ИмеНаПродукт“, „Продажби“ и „Приходи“, функцията връща 150. Тази функция ще работи, както е описано, само ако сте дефинирали имената на колоните чрез диалога <link href=\"text/scalc/01/04070100.xhp#definenames)\">Дефиниране на имена</link>."
#. amnCv
#: func_sumif.xhp
@@ -69198,7 +69198,7 @@ msgctxt ""
"par_id11711031541218\n"
"help.text"
msgid "If E2 = pen, the function returns 85 because the link to the cell is substituted with its contents."
-msgstr ""
+msgstr "Ако E2 = кош, функцията връща 85, защото връзката към клетката се замества със съдържанието ѝ."
#. gyimf
#: func_sumif.xhp
@@ -70134,7 +70134,7 @@ msgctxt ""
"par_id311715698119400\n"
"help.text"
msgid "<emph>By col</emph>: (optional) a logical value that indicates how to compare data: TRUE - compares data horizontally for a match of all cells in each column, across all columns. FALSE or omitted (default) - compares data vertically, for a match of all cells of each row, across all rows."
-msgstr ""
+msgstr "<emph>По колона</emph>: (незадължителен) логическа стойност, която показва как да се сравняват данните: TRUE – данните се сравняват хоризонтално за съвпадение с всички клетки във всяка колона. FALSE или пропуснат (подразбира се) – данните се сравняват вертикално за съвпадение с всички клетки на всеки ред."
#. DSDnH
#: func_unique.xhp
@@ -70143,7 +70143,7 @@ msgctxt ""
"par_id531715698124705\n"
"help.text"
msgid "<emph>Uniqueness</emph>: (optional) A logical value that defines which values are considered unique. TRUE returns values that occur only once. The default is FALSE or omitted, which returns all distinct values in the range or array."
-msgstr ""
+msgstr "<emph>Уникалност</emph>: (незадължителен) логическа стойност, която определя кои стойности се смятат за уникални. При TRUE се връщат стойности, които се срещат само веднъж. Подразбира се FALSE или пропуснат аргумент, при което се връщат всички различни стойности в диапазона или масива."
#. fknB6
#: func_unique.xhp
@@ -70152,7 +70152,7 @@ msgctxt ""
"par_id501715889339407\n"
"help.text"
msgid "The UNIQUE function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
-msgstr ""
+msgstr "Функцията UNIQUE трябва да се въвежда като <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">формула за масив</link>."
#. RUvGf
#: func_unique.xhp
@@ -70161,7 +70161,7 @@ msgctxt ""
"par_id471715980557106\n"
"help.text"
msgid "Given the data table below, the examples returns unique occurrences of grades and age."
-msgstr ""
+msgstr "Ако е дадена следната таблица с данни, примерите връщат уникалните срещания на клас и възраст."
#. Kgeri
#: func_unique.xhp
@@ -70170,7 +70170,7 @@ msgctxt ""
"hd_id931715984553129\n"
"help.text"
msgid "Example 1"
-msgstr ""
+msgstr "Пример 1"
#. nbDpQ
#: func_unique.xhp
@@ -70179,7 +70179,7 @@ msgctxt ""
"par_id641715980827372\n"
"help.text"
msgid "<input>{=UNIQUE(B1:C10,FALSE(),FALSE())}</input> returns the array below. The grades and ages of the rows with name Andy and Harry are returned only once. The same for rows with name Eva and Irene."
-msgstr ""
+msgstr "<input>{=UNIQUE(B1:C10;FALSE();FALSE())}</input> връща долния масив. Класовете и възрастите от редовете с имената Андрей и Здравко се връщат само веднъж. Същото важи за редовете с имената Даниела и Ирена."
#. 9XEhA
#: func_unique.xhp
@@ -70188,7 +70188,7 @@ msgctxt ""
"par_id641715983343641\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Клас</emph>"
#. LFWFS
#: func_unique.xhp
@@ -70197,7 +70197,7 @@ msgctxt ""
"par_id511715983350731\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Възраст</emph>"
#. i74Ub
#: func_unique.xhp
@@ -70206,7 +70206,7 @@ msgctxt ""
"hd_id981715984567844\n"
"help.text"
msgid "Example 2"
-msgstr ""
+msgstr "Пример 2"
#. FuxKt
#: func_unique.xhp
@@ -70215,7 +70215,7 @@ msgctxt ""
"par_id801715981230387\n"
"help.text"
msgid "<input>{=UNIQUE(B1:C10,FALSE(),TRUE())}</input>, with <emph>Uniqueness</emph> as TRUE. Returns the array below with the rows of Andy, Harry, Eva and Irene omitted because their combined grades and ages are not unique."
-msgstr ""
+msgstr "<input>{=UNIQUE(B1:C10;FALSE();TRUE())}</input>, с <emph>Уникалност</emph> TRUE. Връща долния масив, в който редовете с Андрей, Здравко, Даниела и Ирена са пропуснати, защото съчетанията им от клас и възраст не са уникални."
#. dScyG
#: func_unique.xhp
@@ -70224,7 +70224,7 @@ msgctxt ""
"par_id501715983764524\n"
"help.text"
msgid "<emph>Grade</emph>"
-msgstr ""
+msgstr "<emph>Клас</emph>"
#. GAopa
#: func_unique.xhp
@@ -70233,7 +70233,7 @@ msgctxt ""
"par_id31715983773608\n"
"help.text"
msgid "<emph>Age</emph>"
-msgstr ""
+msgstr "<emph>Възраст</emph>"
#. oV47W
#: func_unique.xhp
@@ -70242,7 +70242,7 @@ msgctxt ""
"par_id701677016751508\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/UNIQUE\">UNIQUE wiki page</link>."
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/UNIQUE\">Уикистраница за UNIQUE</link>"
#. w86Dm
#: func_value.xhp
@@ -70935,7 +70935,7 @@ msgctxt ""
"par_id901535122363436\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Описание"
#. V79BD
#: func_weeknum.xhp
@@ -71709,7 +71709,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "XLOOKUP Function"
-msgstr ""
+msgstr "Функция XLOOKUP"
#. EFZfF
#: func_xlookup.xhp
@@ -71718,7 +71718,7 @@ msgctxt ""
"bm_id361708283183878\n"
"help.text"
msgid "<bookmark_value>XLOOKUP function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>XLOOKUP, функция</bookmark_value>"
#. DDESR
#: func_xlookup.xhp
@@ -71727,7 +71727,7 @@ msgctxt ""
"hd_id821708279355736\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xlookup.xhp\">XLOOKUP</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/scalc/01/func_xlookup.xhp\">XLOOKUP</link></variable>"
#. yC7FC
#: func_xlookup.xhp
@@ -71736,7 +71736,7 @@ msgctxt ""
"par_id581708279355738\n"
"help.text"
msgid "Searches for a value in an array and returns a reference to a cell or range of cells."
-msgstr ""
+msgstr "Търси стойност в масив и връща обръщение към клетка или диапазон от клетки."
#. mekaB
#: func_xlookup.xhp
@@ -71745,7 +71745,7 @@ msgctxt ""
"par_id631708282151776\n"
"help.text"
msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) or regular expressions for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
-msgstr ""
+msgstr "Функцията XLOOKUP е съвременен и гъвкав заместител за по-старите функции като <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link> и <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP поддържа приблизителни и точни съвпадения, заместващи знаци (* ?) и регулярни изрази за частични съвпадения, както и търсене във вертикални или хоризонтални диапазони. XLOOKUP може да извършва обратно търсене и предлага възможност за бързо двоично търсене при работа с големи съвкупности от данни."
#. TwFcc
#: func_xlookup.xhp
@@ -71754,7 +71754,7 @@ msgctxt ""
"par_id211708281649651\n"
"help.text"
msgid "XLOOKUP( [Lookup] ; Array ; Return [ ; [ NotFound ] [ ; [MatchType] [ ; SearchMode ] ] ] )"
-msgstr ""
+msgstr "XLOOKUP( [Ключ] ; Масив ; Резултат [ ; [ Ненамерен] [ ; [ТипСъвпадение] [ ; РежимНаТърсене ] ] ] )"
#. WoJu6
#: func_xlookup.xhp
@@ -71763,7 +71763,7 @@ msgctxt ""
"par_id861708281340704\n"
"help.text"
msgid "<emph>Lookup</emph>: (optional) The value of any type to search for in <emph>Array</emph>. If omitted, XLOOKUP returns blank cells it finds in <emph>Array</emph>."
-msgstr ""
+msgstr "<emph>Ключ</emph>: (незадължителен) стойността от произволен тип, която да бъде търсена в <emph>Масив</emph>. Ако е пропуснат, XLOOKUP връща празните клетки, които открие в <emph>Масив</emph>."
#. hBE9s
#: func_xlookup.xhp
@@ -71772,7 +71772,7 @@ msgctxt ""
"par_id831708281625340\n"
"help.text"
msgid "<emph>Array</emph>: is the reference of the array to search. Array must be a 1-dimensional array and must be contained in one sheet only."
-msgstr ""
+msgstr "<emph>Масив</emph>: обръщение към претърсвания масив. „Масив“ трябва да представлява едномерен масив и да се разпростира само в един лист."
#. nWhEP
#: func_xlookup.xhp
@@ -71781,7 +71781,7 @@ msgctxt ""
"par_id241708281629922\n"
"help.text"
msgid "<emph>Return</emph>: is the reference of the array or range to return."
-msgstr ""
+msgstr "<emph>Резултат</emph>: обръщението към масива или диапазона, който да се връща като резултат."
#. G4DLq
#: func_xlookup.xhp
@@ -71790,7 +71790,7 @@ msgctxt ""
"par_id821708357634624\n"
"help.text"
msgid "If <emph>Return</emph> is a range of cells, the XLOOKUP function must be entered as an <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">array formula</link>."
-msgstr ""
+msgstr "Ако <emph>Резултат</emph> е диапазон от клетки, функцията XLOOKUP трябва да бъде въведена като <link href=\"text/scalc/01/04060107.xhp#creating_array_formulas\">формула за масив</link>."
#. WTFGZ
#: func_xlookup.xhp
@@ -71799,7 +71799,7 @@ msgctxt ""
"par_id271708281637035\n"
"help.text"
msgid "<emph>NotFound</emph>: a text or cell content to return if the <emph>Lookup</emph> value is not found. If a valid match is not found and <emph>NotFound</emph> is omitted, the function returns the #N/A error."
-msgstr ""
+msgstr "<emph>Ненамерен</emph>: текст или съдържание на клетка, което да бъде върнато, ако стойността <emph>Ключ</emph> не бъде открита. Ако не се намери валидно съвпадение и <emph>Ненамерен</emph> е пропуснат, функцията връща грешка #N/A."
#. ruAWq
#: func_xlookup.xhp
@@ -71808,7 +71808,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>ТипСъвпадение</emph>: (незадължителен) указва типа на съвпадението. Стойностите му могат да бъдат:"
#. go9sN
#: func_xlookup.xhp
@@ -71817,7 +71817,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found and <emph>NotFound</emph> text is omitted, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>: точно съвпадение (подразбира се). Ако стойността <emph>Ключ</emph> не бъде намерена и не е зададен текст за <emph>Ненамерен</emph>, се връща грешка #N/A."
#. CtG9A
#: func_xlookup.xhp
@@ -71826,7 +71826,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: проверява се за точно съвпадение. Ако не се намери стойността <emph>Ключ</emph>, се връща следващият по-малък елемент."
#. CpEkK
#: func_xlookup.xhp
@@ -71835,7 +71835,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>1</emph>: проверява се за точно съвпадение. Ако не се намери стойността <emph>Ключ</emph>, се връща следващият по-голям елемент."
#. DEt3s
#: func_xlookup.xhp
@@ -71844,7 +71844,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: търси се съвпадение със <link href=\"text/scalc/guide/wildcards.xhp\">заместващи знаци</link>, при което знаците *, ? и ~ имат специално значение, или съвпадение с <link href=\"text/shared/01/02100001.xhp\">регулярен израз</link>."
#. EqTBc
#: func_xlookup.xhp
@@ -71853,7 +71853,7 @@ msgctxt ""
"par_id871708281607313\n"
"help.text"
msgid "<emph>SearchMode</emph>: (optional) specifies the search mode to use."
-msgstr ""
+msgstr "<emph>РежимНаТърсене</emph>: (незадължителен) указва какъв режим на търсене да се използва."
#. FfKjN
#: func_xlookup.xhp
@@ -71862,7 +71862,7 @@ msgctxt ""
"par_id281708281579757\n"
"help.text"
msgid "<emph>1</emph>: returns the first occurrence starting from the first item of <emph>Array</emph> (default)."
-msgstr ""
+msgstr "<emph>1</emph>: връща се първото срещане, започвайки от първия елемент на <emph>Масив</emph> (подразбира се)."
#. 8CD3w
#: func_xlookup.xhp
@@ -71871,7 +71871,7 @@ msgctxt ""
"par_id251708281584285\n"
"help.text"
msgid "<emph>-1</emph>: reverse search. Returns the first occurrence starting from the last item of <emph>Array</emph>."
-msgstr ""
+msgstr "<emph>-1</emph>: обратно търсене. Връща се първото срещане, започвайки от последния елемент на <emph>Масив</emph>."
#. 6aABE
#: func_xlookup.xhp
@@ -71880,7 +71880,7 @@ msgctxt ""
"par_id191708281589997\n"
"help.text"
msgid "<emph>2</emph>: binary search that relies on <emph>Array</emph> being sorted in ascending order. If not sorted, invalid results will be returned."
-msgstr ""
+msgstr "<emph>2</emph>: двоично търсене, при което се разчита, че <emph>Масив</emph> е сортиран във възходящ ред. Ако не е сортиран, ще бъдат връщани погрешни резултати."
#. pwwij
#: func_xlookup.xhp
@@ -71889,7 +71889,7 @@ msgctxt ""
"par_id561708281595885\n"
"help.text"
msgid "<emph>-2</emph>: binary search that relies on <emph>Array</emph> being sorted in descending order. If not sorted, invalid results will be returned."
-msgstr ""
+msgstr "<emph>-2</emph>: двоично търсене, при което се разчита, че <emph>Масив</emph> е сортиран в низходящ ред. Ако не е сортиран, ще бъдат връщани погрешни резултати."
#. jo6AY
#: func_xlookup.xhp
@@ -71898,7 +71898,7 @@ msgctxt ""
"par_id551718627629229\n"
"help.text"
msgid "<emph>MatchType</emph> value 2 cannot be combined with binary search (<emph>SearchMode</emph> value <emph>2</emph> or <emph>-2</emph>)."
-msgstr ""
+msgstr "Стойност 2 за <emph>ТипСъвпадение</emph> не може да бъде комбинирана с двоично търсене (стойност на <emph>РежимНаТърсене</emph> <emph>2</emph> или <emph>-2</emph>)."
#. fHQrZ
#: func_xlookup.xhp
@@ -71907,7 +71907,7 @@ msgctxt ""
"par_id141716739193733\n"
"help.text"
msgid "<input>{=XLOOKUP(\"Atomic Number\";A2:A4;A2:DO4)}</input> returns the array"
-msgstr ""
+msgstr "<input>{=XLOOKUP(\"Атомен номер\";A2:A4;A2:DO4)}</input> връща масива"
#. tkRq7
#: func_xlookup.xhp
@@ -71916,7 +71916,7 @@ msgctxt ""
"par_id231716739652495\n"
"help.text"
msgid "<input>{=XLOOKUP(\"Helium\";B1:DO1;B1:DO4)}</input> returns the array"
-msgstr ""
+msgstr "<input>{=XLOOKUP(\"Хелий\";B1:DO1;B1:DO4)}</input> returns the array"
#. D5tG5
#: func_xlookup.xhp
@@ -71925,7 +71925,7 @@ msgctxt ""
"par_id21716739329244\n"
"help.text"
msgid "Helium"
-msgstr ""
+msgstr "Хелий"
#. vaCSD
#: func_xlookup.xhp
@@ -71934,7 +71934,7 @@ msgctxt ""
"par_id671708356683379\n"
"help.text"
msgid "<input>{=XLOOKUP(\"Kryptonite\";B1:DO1;B1:DO4;\"Unknown element\")}</input> returns the array {\"Unknown element\",\"Unknown element\",\"Unknown element\",\"Unknown element\"}."
-msgstr ""
+msgstr "<input>{=XLOOKUP(\"Криптонит\";B1:DO1;B1:DO4;\"Непознат елемент\")}</input> връща масива {\"Непознат елемент\",\"Непознат елемент\",\"Непознат елемент\",\"Непознат елемент\"}."
#. SzUpN
#: func_xlookup.xhp
@@ -71943,7 +71943,7 @@ msgctxt ""
"par_id701677016751508\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/XLOOKUP\">XLOOKUP wiki page</link>."
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/XLOOKUP\">Уикистраница за XLOOKUP</link>"
#. z6i4f
#: func_xmatch.xhp
@@ -71952,7 +71952,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "XMATCH Function"
-msgstr ""
+msgstr "Функция XMATCH"
#. Q8WY3
#: func_xmatch.xhp
@@ -71961,7 +71961,7 @@ msgctxt ""
"bm_id361708283183878\n"
"help.text"
msgid "<bookmark_value>XMATCH function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>XMATCH, функция</bookmark_value>"
#. Y5Xci
#: func_xmatch.xhp
@@ -71970,7 +71970,7 @@ msgctxt ""
"hd_id821708279355736\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/scalc/01/func_xmatch.xhp\">XMATCH</link></variable>"
#. 8GYav
#: func_xmatch.xhp
@@ -71979,7 +71979,7 @@ msgctxt ""
"par_id581708279355738\n"
"help.text"
msgid "Searches for a value in a one-dimensional array and returns the relative position of the item."
-msgstr ""
+msgstr "Търси стойност в едномерен масив и връща относителната позиция на елемента."
#. qJsbC
#: func_xmatch.xhp
@@ -71988,7 +71988,7 @@ msgctxt ""
"par_id321716754048322\n"
"help.text"
msgid "XMATCH outperforms function <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link> as it allows searches according to the search mode."
-msgstr ""
+msgstr "XMATCH е с по-добра производителност от <link href=\"text/scalc/01/04060109.xhp#Section12\">MATCH</link>, защото позволява търсене според зададен режим."
#. NFwz8
#: func_xmatch.xhp
@@ -71997,7 +71997,7 @@ msgctxt ""
"par_id211708281649651\n"
"help.text"
msgid "XMATCH(Lookup; Array [; MatchType [; SearchMode ] ] )"
-msgstr ""
+msgstr "XMATCH(Ключ; Масив [; ТипСъвпадение [; РежимНаТърсене ] ] )"
#. NA2BM
#: func_xmatch.xhp
@@ -72006,7 +72006,7 @@ msgctxt ""
"par_id861708281340704\n"
"help.text"
msgid "<emph>Lookup</emph>: The value of any type to search for in <emph>Array</emph>."
-msgstr ""
+msgstr "<emph>Ключ</emph>: стойността от произволен тип, която да бъде търсена в <emph>Масив</emph>."
#. BuCGn
#: func_xmatch.xhp
@@ -72015,7 +72015,7 @@ msgctxt ""
"par_id831708281625340\n"
"help.text"
msgid "<emph>Array</emph>: is the reference of the array or range to search."
-msgstr ""
+msgstr "<emph>Масив</emph>: обръщението към претърсвания масив или диапазон."
#. yxFjM
#: func_xmatch.xhp
@@ -72024,7 +72024,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>ТипСъвпадение</emph>: (незадължителен) указва типа на съвпадението. Стойностите му могат да бъдат:"
#. jmwqp
#: func_xmatch.xhp
@@ -72033,7 +72033,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>: точно съвпадение (подразбира се). Ако стойността <emph>Ключ</emph> не бъде намерена, се връща грешката #N/A."
#. 9SMUK
#: func_xmatch.xhp
@@ -72042,7 +72042,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: проверява се за точно съвпадение. Ако не се намери стойността <emph>Ключ</emph>, се връща следващият по-малък елемент."
#. hwonA
#: func_xmatch.xhp
@@ -72051,7 +72051,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>1</emph>: проверява се за точно съвпадение. Ако не се намери стойността <emph>Ключ</emph>, се връща следващият по-голям елемент."
#. y5cx9
#: func_xmatch.xhp
@@ -72060,7 +72060,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: търси се съвпадение със <link href=\"text/scalc/guide/wildcards.xhp\">заместващи знаци</link>, при което знаците *, ? и ~ имат специално значение, или съвпадение с <link href=\"text/shared/01/02100001.xhp\">регулярен израз</link>."
#. WMXaP
#: func_xmatch.xhp
@@ -72069,7 +72069,7 @@ msgctxt ""
"par_id471716753503759\n"
"help.text"
msgid "<input>=XMATCH(\"Atomic Number\",A1:A4)</input> returns 3, the third line of the A1:A4 array."
-msgstr ""
+msgstr "<input>=XMATCH(\"Атомен номер\";A1:A4)</input> връща 3, третия ред от масива A1:A4."
#. QTDzi
#: func_xmatch.xhp
@@ -72078,7 +72078,7 @@ msgctxt ""
"par_id581716753499133\n"
"help.text"
msgid "<input>=XMATCH(\"Li\",A2:DO2)</input> returns 4, the fourth column of the A2:DO2 array."
-msgstr ""
+msgstr "<input>=XMATCH(\"Li\";A2:DO2)</input> връща 4, четвъртата колона на масива A2:DO2."
#. 2AAX5
#: func_xmatch.xhp
@@ -72087,7 +72087,7 @@ msgctxt ""
"par_id701677016751508\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/XMATCH\">XMATCH wiki page</link>."
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/Calc_Functions/XMATCH\">Уикистраница за XMATCH</link>"
#. dABAX
#: func_year.xhp
@@ -72150,7 +72150,7 @@ msgctxt ""
"par_id451715611481885\n"
"help.text"
msgid "YEAR() returns the integer part of the year."
-msgstr ""
+msgstr "YEAR() връща цялата част на годината."
#. 3RPng
#: func_year.xhp
@@ -72438,7 +72438,7 @@ msgctxt ""
"bm_id240920171018528200\n"
"help.text"
msgid "<bookmark_value>Data Stream;Live data stream</bookmark_value><bookmark_value>Data Stream;Streams</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>поток от данни;на живо</bookmark_value><bookmark_value>поток от данни;потоци</bookmark_value>"
#. xuUHC
#: live_data_stream.xhp
@@ -72447,7 +72447,7 @@ msgctxt ""
"hd_id240920171003006302\n"
"help.text"
msgid "<link href=\"text/scalc/01/live_data_stream.xhp\">Streams</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/live_data_stream.xhp\">Потоци</link>"
#. mB9BH
#: live_data_stream.xhp
@@ -72663,7 +72663,7 @@ msgctxt ""
"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 ""
+msgstr "<bookmark_value>споделяне на електронна таблица</bookmark_value><bookmark_value>електронна таблица;съвместна работа</bookmark_value><bookmark_value>електронна таблица;споделяне</bookmark_value>"
#. yDBns
#: shared_spreadsheet.xhp
@@ -72681,7 +72681,7 @@ msgctxt ""
"par_id9590136\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Share Document dialog where you can enable or disable collaborative sharing of the document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Отваря диалога „Споделяне на документ“, в който можете да активирате или деактивирате споделянето на документа за съвместна работа.</ahelp>"
#. KZGLG
#: shared_spreadsheet.xhp
@@ -73833,7 +73833,7 @@ msgctxt ""
"par_id401698839153661\n"
"help.text"
msgid "Opens the <emph>Sparklines Properties</emph> dialog to define sparkline settings."
-msgstr ""
+msgstr "Отваря диалога <emph>Свойства на блещукащи линии</emph> за задаване настройките за блещукащи линии."
#. wUPfH
#: sparklines.xhp
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index b614f2c6987..29a6556ea23 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-11 17:47+0000\n"
+"PO-Revision-Date: 2024-06-27 13:51+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/bg/>\n"
"Language: bg\n"
@@ -9240,7 +9240,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "To show or hide the comment indicator, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
-msgstr "За да покажете или скриете индикатора за коментар, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Изглед</emph> и отметнете или изчистете полето за отметка <emph>Индикатори на коментари</emph>."
+msgstr "За да покажете или скриете индикатора за коментар, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Изглед</emph> и отметнете или изчистете полето за отметка <emph>Индикатор на коментар</emph>."
#. TYg9E
#: note_insert.xhp
diff --git a/source/bg/helpcontent2/source/text/sdraw/01.po b/source/bg/helpcontent2/source/text/sdraw/01.po
index 1a4b16ce7bf..260030a3fe3 100644
--- a/source/bg/helpcontent2/source/text/sdraw/01.po
+++ b/source/bg/helpcontent2/source/text/sdraw/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-04-25 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw01/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1558871705.000000\n"
#. 9EjcP
@@ -536,7 +536,7 @@ msgctxt ""
"hd_id861623510996086\n"
"help.text"
msgid "<link href=\"text/sdraw/01/consolidatetext.xhp\">Consolidate Text</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/consolidatetext.xhp\">Консолидиране на текст</link>"
#. zsb7F
#: consolidatetext.xhp
@@ -716,7 +716,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Equalize Height"
-msgstr ""
+msgstr "Изравняване на височината"
#. YzLZ7
#: equalize_height.xhp
@@ -725,7 +725,7 @@ msgctxt ""
"bm_id911716062352822\n"
"help.text"
msgid "<bookmark_value>shape; equalize height</bookmark_value><bookmark_value>drawing object; equalize height</bookmark_value><bookmark_value>height; equalize</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>фигура; изравняване на височината</bookmark_value><bookmark_value>графичен обект; изравняване на височината</bookmark_value><bookmark_value>височина; изравняване</bookmark_value>"
#. 6aFop
#: equalize_height.xhp
@@ -734,7 +734,7 @@ msgctxt ""
"hd_41716903489414\n"
"help.text"
msgid "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Equalize Height</link></variable>"
-msgstr ""
+msgstr "<variable id=\"equalize_height_h1\"><link href=\"text/sdraw/01/equalize_height.xhp\">Изравняване на височината</link></variable>"
#. jbdbE
#: equalize_height.xhp
@@ -743,7 +743,7 @@ msgctxt ""
"par_id03149165419149\n"
"help.text"
msgid "Sets the height of two or more selected objects to the height of the object selected last. <menuitem>Equalize Height</menuitem> is only available when two or more drawing objects are selected."
-msgstr ""
+msgstr "Прави височината на два или повече избрани обекта равна на тази на последния избран обект. <menuitem>Изравняване на височината</menuitem> е достъпна само когато са избрани два или повече графични обекта."
#. cvXqr
#: equalize_height.xhp
@@ -752,7 +752,7 @@ msgctxt ""
"par_id27975425109289\n"
"help.text"
msgid "Choose <menuitem>Shape - Equalize Height</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Фигура - Изравняване на височината</menuitem>."
#. h7hJ7
#: equalize_height.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"par_id09268594688434\n"
"help.text"
msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Height</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Рисуване</menuitem>, после в падащия списък <menuitem>Рисуване</menuitem> изберете <menuitem>Изравняване на височината</menuitem>."
#. xDKxC
#: equalize_height.xhp
@@ -770,7 +770,7 @@ msgctxt ""
"par_id35381451047272\n"
"help.text"
msgid "Choose <menuitem>Shapes - Equalize Height</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Фигура - Изравняване на височината</menuitem>."
#. KD2Cv
#: equalize_width.xhp
@@ -779,7 +779,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Equalize Width"
-msgstr ""
+msgstr "Изравняване на ширината"
#. dFStW
#: equalize_width.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"bm_id911716062352822\n"
"help.text"
msgid "<bookmark_value>shape; equalize width</bookmark_value><bookmark_value>drawing object; equalize width</bookmark_value><bookmark_value>width; equalize</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>фигура; изравняване на ширината</bookmark_value><bookmark_value>графичен обект; изравняване на ширината</bookmark_value><bookmark_value>ширината; изравняване</bookmark_value>"
#. 7sBAD
#: equalize_width.xhp
@@ -797,7 +797,7 @@ msgctxt ""
"hd_41716903489414\n"
"help.text"
msgid "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Equalize Width</link></variable>"
-msgstr ""
+msgstr "<variable id=\"equalize_width_h1\"><link href=\"text/sdraw/01/equalize_width.xhp\">Изравняване на ширината</link></variable>"
#. YBRGe
#: equalize_width.xhp
@@ -806,7 +806,7 @@ msgctxt ""
"par_id03149165419149\n"
"help.text"
msgid "Sets the width of two or more selected objects to the width of the object selected last. <menuitem>Equalize Width</menuitem> is only available when two or more drawing objects are selected."
-msgstr ""
+msgstr "Прави ширината на два или повече избрани обекта равна на тази на последния избран обект. <menuitem>Изравняване на ширината</menuitem> е достъпна само когато са избрани два или повече графични обекта."
#. VUC74
#: equalize_width.xhp
@@ -815,7 +815,7 @@ msgctxt ""
"par_id27975425109289\n"
"help.text"
msgid "Choose <menuitem>Shape - Equalize Width</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Фигура - Изравняване на ширината</menuitem>."
#. Y9hBE
#: equalize_width.xhp
@@ -824,7 +824,7 @@ msgctxt ""
"par_id58194124979923\n"
"help.text"
msgid "Choose <menuitem>Draw</menuitem>, then in the <menuitem>Draw</menuitem> dropdown choose <menuitem>Equalize Width</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Рисуване</menuitem>, после в падащия списък <menuitem>Рисуване</menuitem> изберете <menuitem>Изравняване на ширината</menuitem>."
#. 3xmAx
#: equalize_width.xhp
@@ -833,7 +833,7 @@ msgctxt ""
"par_id35381451047272\n"
"help.text"
msgid "Choose <menuitem>Shapes - Equalize Width</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Фигура - Изравняване на ширината</menuitem>."
#. 2LJK2
#: insert_layer.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index fcb367f26fe..e4fc74b401a 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/bg/>\n"
"Language: bg\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Наследени настройки"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Стойностите за текущия раздел се заместват с тези от съответния раздел на стила, указан в „Наследяване от“ в „Организатор“. Във всички случаи, включително когато „Наследяване от“ е „Няма“, стойностите в раздела се премахват от полето „Съдържа“."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "В раздела <menuitem>Инструменти</menuitem> щракнете върху бутона <menuitem>Настройки</menuitem>, после отворете <menuitem>Зареждане/записване - Общи</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Изберете раздела <emph>Форматиране - Клетки - Фон</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Изберете раздела <menuitem>Форматиране - Стил на страница - Организатор</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Изберете раздела <menuitem>Стилове - Редактиране на стил - Организатор</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Изберете раздела <menuitem>Форматиране - Стил на страница - Организатор</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Изберете <menuitem>Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Изберете раздела <menuitem>Форматиране - Стилове - Редактиране на стил - Организатор</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Изберете <menuitem>Форматиране - Стилове - Управление на стиловете</menuitem> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Изберете раздела <menuitem>Кадър - Свойства - Страница</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Изберете <menuitem>Изглед - Стилове</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - отворете контекстното меню на елемент и изберете раздела <menuitem>Нов/Редактиране на стил - Организатор</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 0733c260277..108ea0d9208 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bg/>\n"
"Language: bg\n"
@@ -2733,7 +2733,7 @@ msgctxt ""
"par_id71543592343227\n"
"help.text"
msgid "Use <link href=\"text/shared/guide/openpgp.xml\">OpenPGP</link> public keys to encrypt documents."
-msgstr ""
+msgstr "Използване на публични ключове на <link href=\"text/shared/guide/openpgp.xml\">OpenPGP</link> за шифроване на документи."
#. SqPSp
#: 01070000.xhp
@@ -3030,7 +3030,7 @@ msgctxt ""
"bm_id661712409722063\n"
"help.text"
msgid "<bookmark_value>description; document properties</bookmark_value> <bookmark_value>description; file properties</bookmark_value> <bookmark_value>description; metadata</bookmark_value> <bookmark_value>metadata; adding metadata</bookmark_value> <bookmark_value>metadata; editing metadata</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>описание; свойства на документ</bookmark_value><bookmark_value>описание; свойства на файл</bookmark_value><bookmark_value>описание; метаданни</bookmark_value><bookmark_value>метаданни; добавяне на метаданни</bookmark_value><bookmark_value>метаданни; редактиране на метаданни</bookmark_value>"
#. NQDen
#: 01100100.xhp
@@ -3057,7 +3057,7 @@ msgctxt ""
"par_id721712354151660\n"
"help.text"
msgid "Choose <menuitem>File - Properties</menuitem> then select the <menuitem>Description</menuitem> tab."
-msgstr ""
+msgstr "Изберете <menuitem>Файл - Свойства</menuitem>, после изберете раздела <menuitem>Описание</menuitem>."
#. PSac7
#: 01100100.xhp
@@ -3066,7 +3066,7 @@ msgctxt ""
"par_id271712404524124\n"
"help.text"
msgid "%PRODUCTNAME supports the Dublin Core Metadata Element Set, a standardized set of metadata elements used to describe physical and electronic documents."
-msgstr ""
+msgstr "%PRODUCTNAME поддържа Dublin Core Metadata Element Set (дъблински основен набор от елементи за метаданни), стандартизиран набор от елементи за метаданни, използвани за описване на физически и електронни документи."
#. DQhzs
#: 01100100.xhp
@@ -3075,7 +3075,7 @@ msgctxt ""
"par_id311712404964926\n"
"help.text"
msgid "You can add additional metadata elements in the <link href=\"text/shared/01/01100300.xhp\"><menuitem>Custom Properties</menuitem></link> tab."
-msgstr ""
+msgstr "Можете да добавяте допълнителни елементи на метаданни в раздела <link href=\"text/shared/01/01100300.xhp\"><menuitem>Потребителски свойства</menuitem></link>."
#. DB262
#: 01100100.xhp
@@ -3093,7 +3093,7 @@ msgctxt ""
"hd_id101714412611703\n"
"help.text"
msgid "<variable id=\"elements_h2\">Elements</variable>"
-msgstr ""
+msgstr "<variable id=\"elements_h2\">Елементи</variable>"
#. V3K7D
#: 01100100.xhp
@@ -3102,7 +3102,7 @@ msgctxt ""
"hd_id3152372\n"
"help.text"
msgid "<variable id=\"title_h3\">Title</variable>"
-msgstr ""
+msgstr "<variable id=\"title_h3\">Заглавие</variable>"
#. m9p8k
#: 01100100.xhp
@@ -3120,7 +3120,7 @@ msgctxt ""
"par_id291714416716612\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A name given to the resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> име, дадено на ресурса."
#. mirp7
#: 01100100.xhp
@@ -3129,7 +3129,7 @@ msgctxt ""
"hd_id3145669\n"
"help.text"
msgid "<variable id=\"subject_h3\">Subject</variable>"
-msgstr ""
+msgstr "<variable id=\"subject_h3\">Тема</variable>"
#. aPM28
#: 01100100.xhp
@@ -3147,7 +3147,7 @@ msgctxt ""
"par_id781714416090632\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The topic of the resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> темата на ресурса."
#. ntXMN
#: 01100100.xhp
@@ -3156,7 +3156,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "<variable id=\"keywords_h3\">Keywords</variable>"
-msgstr ""
+msgstr "<variable id=\"keywords_h3\">Ключови думи</variable>"
#. 4pHTt
#: 01100100.xhp
@@ -3174,7 +3174,7 @@ msgctxt ""
"hd_id991712331471026\n"
"help.text"
msgid "<variable id=\"contributor_h3\">Contributor</variable>"
-msgstr ""
+msgstr "<variable id=\"contributor_h3\">Сътрудник</variable>"
#. BejA7
#: 01100100.xhp
@@ -3183,7 +3183,7 @@ msgctxt ""
"par_id1001712331484014\n"
"help.text"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document. For example, the names of the document’s authors, or team members who contributed data to it."
-msgstr ""
+msgstr "Въведете имената на хората, организациите или други страни, които са допринесли към документа. Например имената на авторите на документа или членовете на екипа, които са предоставили данни за съставянето му."
#. CicCF
#: 01100100.xhp
@@ -3192,7 +3192,7 @@ msgctxt ""
"par_id341714417205026\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An entity responsible for making contributions to the resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> страна, даваща принос към ресурса."
#. 9HoTd
#: 01100100.xhp
@@ -3201,7 +3201,7 @@ msgctxt ""
"hd_id291712331494279\n"
"help.text"
msgid "<variable id=\"coverage_h3\">Coverage</variable>"
-msgstr ""
+msgstr "<variable id=\"coverage_h3\">Обхват</variable>"
#. vCizD
#: 01100100.xhp
@@ -3210,7 +3210,7 @@ msgctxt ""
"par_id961712331502781\n"
"help.text"
msgid "Enter the time, place, or jurisdiction that the document is relevant to. For example, a range of dates, a place, or an institution that the document applies to."
-msgstr ""
+msgstr "Въведете времето, мястото или юрисдикцията, за която се отнася документът. Например диапазон от дати, място или институция, за която е приложим."
#. 3NGzr
#: 01100100.xhp
@@ -3219,7 +3219,7 @@ msgctxt ""
"par_id751714417027700\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant."
-msgstr ""
+msgstr "<emph>Дефиниция според DCIM:</emph> пространственият или времевият предмет на ресурса, пространствената му приложимост или юрисдикцията, за която се отнася."
#. oCXtb
#: 01100100.xhp
@@ -3228,7 +3228,7 @@ msgctxt ""
"hd_id91712331508846\n"
"help.text"
msgid "<variable id=\"identifier_h3\">Identifier</variable>"
-msgstr ""
+msgstr "<variable id=\"identifier_h3\">Идентификатор</variable>"
#. knfFR
#: 01100100.xhp
@@ -3237,7 +3237,7 @@ msgctxt ""
"par_id311712331541857\n"
"help.text"
msgid "Enter a unique and unambiguous identifier for the document. For example, a document number or ISBN."
-msgstr ""
+msgstr "Въведете уникален и еднозначен идентификатор за документа. Например номер на документ или ISBN."
#. ifeVh
#: 01100100.xhp
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_id951714414695195\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An unambiguous reference to the document within a specific context."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> еднозначна референция към документа в определен контекст."
#. xXzCz
#: 01100100.xhp
@@ -3255,7 +3255,7 @@ msgctxt ""
"hd_id941712331544480\n"
"help.text"
msgid "<variable id=\"publisher_h3\">Publisher</variable>"
-msgstr ""
+msgstr "<variable id=\"publisher_h3\">Издател</variable>"
#. 3CXu4
#: 01100100.xhp
@@ -3264,7 +3264,7 @@ msgctxt ""
"par_id971712331610892\n"
"help.text"
msgid "Enter the name of the entity that is making the document available. For example, a company, university, or government body."
-msgstr ""
+msgstr "Въведете името на страната, която предоставя документа. Например търговско дружество, университет или правителствен орган."
#. wwXLg
#: 01100100.xhp
@@ -3273,7 +3273,7 @@ msgctxt ""
"par_id951714495693749\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An entity responsible for making the resource available."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> страна, която отговаря за предоставянето на ресурса."
#. EHSTB
#: 01100100.xhp
@@ -3282,7 +3282,7 @@ msgctxt ""
"hd_id991712331616227\n"
"help.text"
msgid "<variable id=\"relation_h3\">Relation</variable>"
-msgstr ""
+msgstr "<variable id=\"relation_h3\">Връзка</variable>"
#. dtGAj
#: 01100100.xhp
@@ -3291,7 +3291,7 @@ msgctxt ""
"par_id41712331631248\n"
"help.text"
msgid "Enter information about resources related to the document. For example, a set of volumes the document is part of, or the document's edition number."
-msgstr ""
+msgstr "Въведете информация за ресурси, свързани с документа. Например набор от томове, от които документът е част, или номер на издание на документа."
#. 3adUT
#: 01100100.xhp
@@ -3300,7 +3300,7 @@ msgctxt ""
"par_id121714495775615\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A related resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCIM:</emph> ресурс, свързан с документа."
#. EwqDc
#: 01100100.xhp
@@ -3309,7 +3309,7 @@ msgctxt ""
"hd_id371712331706300\n"
"help.text"
msgid "<variable id=\"rights_h3\">Rights</variable>"
-msgstr ""
+msgstr "<variable id=\"rights_h3\">Права</variable>"
#. gAqnL
#: 01100100.xhp
@@ -3318,7 +3318,7 @@ msgctxt ""
"par_id381712331724319\n"
"help.text"
msgid "Enter information intellectual property rights associated with the document. For example, a copyright statement, or information about who has permission to access the document."
-msgstr ""
+msgstr "Въведете информация за права върху интелектуалната собственост, свързана с документа. Например декларация за авторски права или информация за това кой има право на достъп до документа."
#. U5YE6
#: 01100100.xhp
@@ -3327,7 +3327,7 @@ msgctxt ""
"par_id651714495803137\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>Information about rights held in and over the resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> информация за права, отнасящи се до ресурса."
#. U7iEe
#: 01100100.xhp
@@ -3336,7 +3336,7 @@ msgctxt ""
"hd_id691712336584526\n"
"help.text"
msgid "<variable id=\"source_h3\">Source</variable>"
-msgstr ""
+msgstr "<variable id=\"source_h3\">Източник</variable>"
#. 7gvvH
#: 01100100.xhp
@@ -3345,7 +3345,7 @@ msgctxt ""
"par_id281712331745647\n"
"help.text"
msgid "Enter information about other resources from which the document is derived. For example, the name or identifier of a hard copy that the document was scanned from, or a url that the document was downloaded from."
-msgstr ""
+msgstr "Въведете информация за други ресурси, от които документът е производен. Например името или идентификатора на физическо копие, от което е сканиран документът, или URL адрес, от който е изтеглен."
#. 4bXyK
#: 01100100.xhp
@@ -3354,7 +3354,7 @@ msgctxt ""
"par_id511714495809888\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A related resource from which the described resource is derived."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> свързан ресурс, от който е производен описваният ресурс."
#. 7GCuX
#: 01100100.xhp
@@ -3363,7 +3363,7 @@ msgctxt ""
"hd_id921712336596379\n"
"help.text"
msgid "<variable id=\"type_h3\">Type</variable>"
-msgstr ""
+msgstr "<variable id=\"type_h3\">Тип</variable>"
#. DQaEH
#: 01100100.xhp
@@ -3372,7 +3372,7 @@ msgctxt ""
"par_id61712336816144\n"
"help.text"
msgid "Enter information about the category or format of the document. For example, whether the document is a text document, image, or multimedia presentation."
-msgstr ""
+msgstr "Въведете информация за категорията или формата на документа. Например дали е текстов документ, изображение или мултимедийна презентация."
#. z9u52
#: 01100100.xhp
@@ -3381,7 +3381,7 @@ msgctxt ""
"par_id971714495815222\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The nature or genre of the resource."
-msgstr ""
+msgstr "<emph>Дефиниция според DCMI:</emph> естеството или жанрът на ресурса."
#. hCVdH
#: 01100100.xhp
@@ -3390,7 +3390,7 @@ msgctxt ""
"hd_id3148620\n"
"help.text"
msgid "<variable id=\"comments_h3\">Comments</variable>"
-msgstr ""
+msgstr "<variable id=\"comments_h3\">Коментари</variable>"
#. ZmWzL
#: 01100100.xhp
@@ -3408,7 +3408,7 @@ msgctxt ""
"hd_id621714663020660\n"
"help.text"
msgid "Help"
-msgstr ""
+msgstr "Помощ"
#. GZhGz
#: 01100100.xhp
@@ -3417,7 +3417,7 @@ msgctxt ""
"hd_id681714663041980\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Нулиране"
#. sQD8r
#: 01100100.xhp
@@ -3426,7 +3426,7 @@ msgctxt ""
"hd_id21714663049092\n"
"help.text"
msgid "OK"
-msgstr ""
+msgstr "OK"
#. HYSCn
#: 01100100.xhp
@@ -3435,7 +3435,7 @@ msgctxt ""
"hd_id71714663031713\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Отказ"
#. Q7CCy
#: 01100100.xhp
@@ -3444,7 +3444,7 @@ msgctxt ""
"par_id621714749828805\n"
"help.text"
msgid "<link href=\"https://www.dublincore.org/specifications/dublin-core/dces/\">DCES Page on the DCMI Website</link>"
-msgstr ""
+msgstr "<link href=\"https://www.dublincore.org/specifications/dublin-core/dces/\">Страница за DCES в уебсайта на DCMI</link>"
#. 63szi
#: 01100200.xhp
@@ -8394,7 +8394,7 @@ msgctxt ""
"par_id3155342\n"
"help.text"
msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> <caseinline select=\"IMPRESS\"/> <defaultinline>Allows you to search for advanced patterns using meta characters.</defaultinline> </switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"/><caseinline select=\"IMPRESS\"/><defaultinline>Позволява ви да търсите сложни изрази с помощта на метазнаци.</defaultinline></switchinline>"
#. ouL3p
#: 02100000.xhp
@@ -8403,7 +8403,7 @@ msgctxt ""
"par_id3727225\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Allows you to search for advanced patterns using meta characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Позволява ви да търсите сложни изрази с помощта на метазнаци.</ahelp>"
#. gDuQb
#: 02100000.xhp
@@ -9096,7 +9096,7 @@ msgctxt ""
"par_id361680709269316\n"
"help.text"
msgid "The Unicode character names can be searched and viewed by choosing <menuitem>Insert - Special Character</menuitem>."
-msgstr "Имената на знаците от Уникод могат да а се търсят и преглеждат с <menuitem>Вмъкване - Специален знак</menuitem>."
+msgstr "Имената на знаците от Уникод могат да се търсят и преглеждат с <menuitem>Вмъкване - Специален знак</menuitem>."
#. 6Swuu
#: 02100001.xhp
@@ -9159,7 +9159,7 @@ msgctxt ""
"par_id891559576747109\n"
"help.text"
msgid "To group terms in a complex expression to be operated on by the post-fix operators: \"*\", \"+\" and \"?\" along with the post-fix repetition operators. For example, the regular expression \"a(bc)?d\" matches both \"ad\" and \"abcd\"; \"M(iss){2}ippi\" matches \"Mississippi\"."
-msgstr ""
+msgstr "Групиране на термове в сложен израз, за да се приложи върху тях постфиксен оператор като „*“, „+“, „?“ или някой от постфиксните оператори за повторение. Например регулярният израз „а(бв)?г“ съвпада с „аг“ и „абвг“, а „М(ис){2}ипи“ съвпада с „Мисисипи“."
#. GYnF7
#: 02100001.xhp
@@ -9168,7 +9168,7 @@ msgctxt ""
"par_id801559576780692\n"
"help.text"
msgid "To reference the matched sub string inside the parentheses for later use. The \"\\N\" construct is used in the <widget>Find</widget> box, the \"$N\" construct is used in the <widget>Replace</widget> box. \"N\" being a digit, the reference to the first match is represented by \"\\1\" in the <widget>Find</widget> box and by \"$1\" in the <widget>Replace</widget> box; \"\\2\" and \"$2\" reference to the second matched, and so on."
-msgstr ""
+msgstr "Обозначаване на съвпадащия подниз в скобите за по-късно използване. Конструкцията „\\N“ се използва в полето <widget>Търсене</widget> , а „$N“ – в полето <widget>Замяна</widget>. N е цифра, обръщението към първото съвпадение се представя с „\\1“ в полето <widget>Търсене</widget> и с „$1“ в полето <widget>Замяна</widget>, към второто – съответно с „\\2“ и „$2“ и т.н."
#. WpQrk
#: 02100001.xhp
@@ -9177,7 +9177,7 @@ msgctxt ""
"par_id951559576846997\n"
"help.text"
msgid "For example, the regular expression \"(890)xy\\1z\\1\" matches \"890xy890z890\"."
-msgstr ""
+msgstr "Например регулярният израз „(890)xy\\1z\\1“ съвпада с „890xy890z890“."
#. DCFjT
#: 02100001.xhp
@@ -9186,7 +9186,7 @@ msgctxt ""
"par_id561559576865734\n"
"help.text"
msgid "With the regular expression \"(fruit|truth)\\b\" in the Find box, and the replacement expression \"$1ful\" in the Replace box, occurrences of \"fruit\" and \"truth\" are replaced with \"fruitful\" and \"truthful\" respectively. Note: \"\\b\" prevents \"fruitfully\" or \"truthfully\" from matching."
-msgstr ""
+msgstr "С регулярния израз „(плод|дар)\\b“ в полето „Търсене“ и регулярния израз „$1овит“ в полето „Замяна“ срещанията на думите „плод“ и „дар“ се заместват съответно с „плодовит“ и „даровит“. Бележка: „\\b“ предотвратява съвпадение с „плодовете“ или „даровете“."
#. rdpGK
#: 02100001.xhp
@@ -10302,7 +10302,7 @@ msgctxt ""
"hd_id3153948\n"
"help.text"
msgid "Character highlighting color"
-msgstr ""
+msgstr "Цвят за осветяване на знаците"
#. sjNRp
#: 02100200.xhp
@@ -10311,7 +10311,7 @@ msgctxt ""
"par_id3145300\n"
"help.text"
msgid "Finds characters that use the <emph>highlighting color</emph> attribute."
-msgstr ""
+msgstr "Указва търсене на знаци с атрибута <emph>Цвят за осветяване</emph>."
#. o2PGG
#: 02100200.xhp
@@ -12543,7 +12543,7 @@ msgctxt ""
"hd_id3152952\n"
"help.text"
msgid "<variable id=\"track_changes_h1\"><link href=\"text/shared/01/02230000.xhp\">Track Changes</link></variable>"
-msgstr ""
+msgstr "<variable id=\"track_changes_h1\"><link href=\"text/shared/01/02230000.xhp\">Следене на промените</link></variable>"
#. vZ58F
#: 02230000.xhp
@@ -12588,7 +12588,7 @@ msgctxt ""
"hd_id3150758\n"
"help.text"
msgid "<variable id=\"record_changes_h1\"><link href=\"text/shared/01/02230100.xhp\">Record Changes</link></variable>"
-msgstr ""
+msgstr "<variable id=\"record_changes_h1\"><link href=\"text/shared/01/02230100.xhp\">Регистриране на промените</link></variable>"
#. FeZzp
#: 02230100.xhp
@@ -12930,7 +12930,7 @@ msgctxt ""
"par_id581668110199198\n"
"help.text"
msgid "The default. Insertions and deletions are displayed in the content according to the settings in <link href=\"text/shared/optionen/01060600.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Changes</menuitem></link>."
-msgstr ""
+msgstr "Подразбира се. Вмъкванията и изтриванията се показват в текста според настройките в <link href=\"text/shared/optionen/01060600.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Промени</menuitem></link>."
#. ARQV7
#: 02230200.xhp
@@ -12948,7 +12948,7 @@ msgctxt ""
"par_id351668110205116\n"
"help.text"
msgid "Show the deleted content in the margin. Insertions are displayed in the content."
-msgstr ""
+msgstr "Показване на изтритото съдържание в полето. Вмъкванията се показват в текста."
#. v49KG
#: 02230200.xhp
@@ -12966,7 +12966,7 @@ msgctxt ""
"par_id751668110211057\n"
"help.text"
msgid "Show the inserted content in the margin. Deletions are displayed in the content."
-msgstr ""
+msgstr "Показване на вмъкнатото съдържание в полето. Изтриванията се показват в текста."
#. nXYPN
#: 02230300.xhp
@@ -14424,7 +14424,7 @@ msgctxt ""
"hd_id3150467\n"
"help.text"
msgid "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Standard Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Лента „Стандартни“</link></variable>"
#. iyNTo
#: 03020000.xhp
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Връща оригиналния размер на избраната графика.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>организиране; стилове</bookmark_value><bookmark_value>стилове; организиране</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Организатор</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index babba26bae2..4d8fa88ea8b 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-04-10 19:29+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356897.000000\n"
@@ -3246,7 +3246,7 @@ msgctxt ""
"bm_id170820161240508275\n"
"help.text"
msgid "<bookmark_value>SSH;remote file service setup</bookmark_value> <bookmark_value>remote file service setup;SSH</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>SSH;настройване на услуга за отдалечени файлове</bookmark_value> <bookmark_value>отдалечени файлове, настройване на услуга за;SSH</bookmark_value>"
#. ryMGU
#: cmis-remote-files-setup.xhp
@@ -3255,7 +3255,7 @@ msgctxt ""
"hd_id1508201618160340\n"
"help.text"
msgid "Connecting to SSH servers"
-msgstr ""
+msgstr "Свързване с SSH сървъри"
#. D99tw
#: cmis-remote-files-setup.xhp
@@ -3264,7 +3264,7 @@ msgctxt ""
"par_id150820161816039418\n"
"help.text"
msgid "<emph>Type</emph>: SSH"
-msgstr ""
+msgstr "<emph>Тип</emph>: SSH"
#. A4WZP
#: cmis-remote-files-setup.xhp
@@ -3282,7 +3282,7 @@ msgctxt ""
"par_id150820161816046286\n"
"help.text"
msgid "<emph>Port</emph>: port number (usually 22 for SSH)."
-msgstr ""
+msgstr "<emph>Порт</emph>: номер на порт (обикновено 22 за SSH)."
#. smhDd
#: cmis-remote-files-setup.xhp
@@ -3291,7 +3291,7 @@ msgctxt ""
"par_id150820161816041989\n"
"help.text"
msgid "<emph>User, Password</emph>: the username and password of the service."
-msgstr ""
+msgstr "<emph>Потребител, Парола</emph>: потребителското име и паролата за услугата."
#. BoDeK
#: cmis-remote-files-setup.xhp
@@ -3507,7 +3507,7 @@ msgctxt ""
"par_id150820161816033566\n"
"help.text"
msgid "%PRODUCTNAME supports many document servers that use well known network protocols such as WebDAV, Windows share, and SSH. It also supports popular services like Google Drive as well as commercial and open source servers that implement the OASIS CMIS standard."
-msgstr ""
+msgstr "%PRODUCTNAME поддържа много сървъри за документи, които използват разпространени мрежови протоколи като WebDAV, споделени ресурси на Windows и SSH. Освен това поддържа популярни услуги като Google Drive, както и комерсиални и свободни сървъри, реализиращи стандарта CMIS на OASIS."
#. f6m3j
#: cmis-remote-files.xhp
@@ -3633,7 +3633,7 @@ msgctxt ""
"par_id170820161605426690\n"
"help.text"
msgid "There are no checkin/checkout controls for remote files in Windows Shares, WebDAV and SSH services."
-msgstr ""
+msgstr "За споделените ресурси на Windows и услугите WebDAV и SSH не се поддържа извличане и вкарване на файлове."
#. ykFEK
#: cmis-remote-files.xhp
@@ -3993,7 +3993,7 @@ msgctxt ""
"hd_id401704727687777\n"
"help.text"
msgid "Resolve Conflicts dialog"
-msgstr ""
+msgstr "Диалог „Разрешаване на конфликти“"
#. vSBHr
#: collab.xhp
@@ -4002,7 +4002,7 @@ msgctxt ""
"par_id5800653\n"
"help.text"
msgid "<ahelp hid=\".\">If the same contents are changed by different users, the Resolve Conflicts dialog opens. For each conflict, decide which changes to keep.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ако едно и също съдържание е променено от различни потребители, се показва диалогът „Разрешаване на конфликти“. За всеки конфликт трябва да решите кои промени да се запазят.</ahelp>"
#. GPWds
#: collab.xhp
@@ -4011,7 +4011,7 @@ msgctxt ""
"hd_id1001704727711775\n"
"help.text"
msgid "Keep Mine"
-msgstr ""
+msgstr "Запазване - моя"
#. QVkZk
#: collab.xhp
@@ -4020,7 +4020,7 @@ msgctxt ""
"par_id6263924\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps your change, voids the other change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Запазва вашата промяна и анулира другата.</ahelp>"
#. EBzEe
#: collab.xhp
@@ -4029,7 +4029,7 @@ msgctxt ""
"hd_id781704727739081\n"
"help.text"
msgid "Keep Other"
-msgstr ""
+msgstr "Запазване - чужда"
#. qsr52
#: collab.xhp
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3609118\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps the change of the other user, voids your change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Запазва промяната на другия потребител и анулира вашата.</ahelp>"
#. tA4eD
#: collab.xhp
@@ -4047,7 +4047,7 @@ msgctxt ""
"hd_id931704727781391\n"
"help.text"
msgid "Keep All Mine"
-msgstr ""
+msgstr "Запазване - всички мои"
#. 2JEYD
#: collab.xhp
@@ -4056,7 +4056,7 @@ msgctxt ""
"par_id7184057\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps all your changes, voids all other changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Запазва всички ваши промени, анулира всички чужди.</ahelp>"
#. m5UUm
#: collab.xhp
@@ -4065,7 +4065,7 @@ msgctxt ""
"hd_id681704727819702\n"
"help.text"
msgid "Keep All Others"
-msgstr ""
+msgstr "Запазване - всички чужди"
#. i8MDM
#: collab.xhp
@@ -4074,7 +4074,7 @@ msgctxt ""
"par_id786767\n"
"help.text"
msgid "<ahelp hid=\".\">Keeps the changes of all other users, voids your changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Запазва промените на всички други потребители, анулира вашите.</ahelp>"
#. 4fXQR
#: collab.xhp
@@ -6810,7 +6810,7 @@ msgctxt ""
"par_id451635293273893\n"
"help.text"
msgid "CSV Export"
-msgstr ""
+msgstr "Експортиране към CSV"
#. orAqx
#: csv_params.xhp
@@ -6837,7 +6837,7 @@ msgctxt ""
"par_id451635293273894\n"
"help.text"
msgid "CSV Import"
-msgstr ""
+msgstr "Импортиране от CSV"
#. uEcBD
#: csv_params.xhp
@@ -9996,7 +9996,7 @@ msgctxt ""
"bm_id7430951\n"
"help.text"
msgid "<bookmark_value>certificates</bookmark_value><bookmark_value>digital signatures;overview</bookmark_value><bookmark_value>security;digital signatures</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>сертификати</bookmark_value><bookmark_value>цифрови подписи;преглед</bookmark_value><bookmark_value>сигурност;цифрови подписи</bookmark_value>"
#. 3NrAw
#: digital_signatures.xhp
@@ -10131,7 +10131,7 @@ msgctxt ""
"par_id0821200912504010\n"
"help.text"
msgid "<image id=\"img_id0821200912421569\" src=\"xmlsecurity/res/certificate_16.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912421569\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912421569\" src=\"xmlsecurity/res/certificate_16.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912421569\">Икона</alt></image>"
#. YC276
#: digital_signatures.xhp
@@ -10149,7 +10149,7 @@ msgctxt ""
"par_id082120091250418\n"
"help.text"
msgid "<image id=\"img_id0821200912431081\" src=\"xmlsecurity/res/notcertificate_16.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912431081\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912431081\" src=\"xmlsecurity/res/notcertificate_16.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912431081\">Икона</alt></image>"
#. FE8hU
#: digital_signatures.xhp
@@ -10176,7 +10176,7 @@ msgctxt ""
"par_id0821200912504237\n"
"help.text"
msgid "<image id=\"img_id0821200912435090\" src=\"svx/res/caution_11x16.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912435090\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id0821200912435090\" src=\"svx/res/caution_11x16.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id0821200912435090\">Икона</alt></image>"
#. h98zw
#: digital_signatures.xhp
@@ -11175,7 +11175,7 @@ msgctxt ""
"bm_id3147226\n"
"help.text"
msgid "<bookmark_value>documents; saving</bookmark_value><bookmark_value>saving; documents</bookmark_value><bookmark_value>backups; documents</bookmark_value><bookmark_value>files; saving</bookmark_value><bookmark_value>text documents; saving</bookmark_value><bookmark_value>spreadsheets; saving</bookmark_value><bookmark_value>drawings; saving</bookmark_value><bookmark_value>presentations; saving</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>документи; записване</bookmark_value><bookmark_value>записване; документи</bookmark_value><bookmark_value>резервни копия; документи</bookmark_value><bookmark_value>файлове; записване</bookmark_value><bookmark_value>текстови документи; записване</bookmark_value><bookmark_value>електронни таблици; записване</bookmark_value><bookmark_value>рисунки; записване</bookmark_value><bookmark_value>презентации; записване</bookmark_value>"
#. irkmW
#: doc_save.xhp
@@ -13596,7 +13596,7 @@ msgctxt ""
"bm_id3145136\n"
"help.text"
msgid "<bookmark_value>Gallery; inserting pictures from</bookmark_value> <bookmark_value>pictures; inserting from Gallery</bookmark_value> <bookmark_value>inserting; from Gallery into text</bookmark_value> <bookmark_value>objects; inserting from Gallery</bookmark_value> <bookmark_value>textures;inserting from Gallery</bookmark_value> <bookmark_value>backgrounds;inserting from Gallery</bookmark_value> <bookmark_value>inserting;objects from Gallery</bookmark_value> <bookmark_value>copying;from Gallery</bookmark_value> <bookmark_value>replacing;objects from Gallery</bookmark_value> <bookmark_value>Gallery;dragging pictures to draw objects</bookmark_value> <bookmark_value>draw objects;dropping Gallery pictures</bookmark_value> <bookmark_value>drag and drop;from Gallery to draw objects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>галерия; вмъкване на картини от</bookmark_value><bookmark_value>картини; вмъкване от галерията</bookmark_value><bookmark_value>вмъкване; от галерията в текст</bookmark_value><bookmark_value>обекти; вмъкване от галерията</bookmark_value><bookmark_value>текстури;вмъкване от галерията</bookmark_value><bookmark_value>фонове;вмъкване от галерията</bookmark_value><bookmark_value>вмъкване;обекти от галерията</bookmark_value><bookmark_value>копиране;от галерията</bookmark_value><bookmark_value>замяна;обекти от галерията</bookmark_value><bookmark_value>галерия;плъзгане на картини за рисуване на обекти</bookmark_value><bookmark_value>графични обекти;пускане на картини от галерията</bookmark_value><bookmark_value>плъзгане и пускане;от галерията в графични обекти</bookmark_value>"
#. 2ZbhA
#: gallery_insert.xhp
@@ -13605,7 +13605,7 @@ msgctxt ""
"hd_id3145136\n"
"help.text"
msgid "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\">Inserting Objects From the Gallery</link></variable>"
-msgstr ""
+msgstr "<variable id=\"gallery_insert\"><link href=\"text/shared/guide/gallery_insert.xhp\">Вмъкване на обекти от галерията</link></variable>"
#. EPdES
#: gallery_insert.xhp
@@ -13614,7 +13614,7 @@ msgctxt ""
"par_id3145345\n"
"help.text"
msgid "You can insert an object from the <link href=\"text/shared/01/gallery.xhp)\"><menuitem>Gallery</menuitem></link> into a text, spreadsheet, drawing or presentation document by dragging and dropping or using the Context Menu. Inserting an object creates a copy of the object so any changes to the object in your document will not affect the object in the Gallery."
-msgstr ""
+msgstr "Можете да вмъкнете обект от <link href=\"text/shared/01/gallery.xhp)\"><menuitem>галерията</menuitem></link> в текст, електронна таблица, рисунка или презентация чрез плъзгане и пускане или чрез контекстното меню. Вмъкването на обект създава негово копие, така че промените, нанасяни върху обекта в документа, няма да се отразят на обекта в галерията."
#. X9jZA
#: gallery_insert.xhp
@@ -13623,7 +13623,7 @@ msgctxt ""
"hd_id3145313\n"
"help.text"
msgid "Inserting an object into a document"
-msgstr ""
+msgstr "Вмъкване на обект в документ"
#. LCTJG
#: gallery_insert.xhp
@@ -13632,7 +13632,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "Open the <menuitem>Gallery</menuitem>."
-msgstr ""
+msgstr "Отворете <menuitem>галерията</menuitem>."
#. oiga2
#: gallery_insert.xhp
@@ -13659,7 +13659,7 @@ msgctxt ""
"par_id3153561\n"
"help.text"
msgid "Drag the object into the document, or right-click to open the context menu and select <emph>Insert</emph>."
-msgstr ""
+msgstr "Плъзнете обекта в документа или щракнете с десния бутон, за да отворите контекстното меню, и изберете <emph>Вмъкване</emph>."
#. cgcUR
#: gallery_insert.xhp
@@ -13668,7 +13668,7 @@ msgctxt ""
"hd_id561711644566506\n"
"help.text"
msgid "Replacing an object in a document"
-msgstr ""
+msgstr "Замяна на обект в документ"
#. qsx9s
#: gallery_insert.xhp
@@ -13677,7 +13677,7 @@ msgctxt ""
"hd_id511711975545500\n"
"help.text"
msgid "By dragging and dropping"
-msgstr ""
+msgstr "Чрез плъзгане и пускане"
#. kTFT5
#: gallery_insert.xhp
@@ -13686,7 +13686,7 @@ msgctxt ""
"par_id741711644406741\n"
"help.text"
msgid "Open the <menuitem>Gallery</menuitem>."
-msgstr ""
+msgstr "Отворете <menuitem>галерията</menuitem>."
#. ReoPv
#: gallery_insert.xhp
@@ -13695,7 +13695,7 @@ msgctxt ""
"par_id111711644455162\n"
"help.text"
msgid "Select a theme."
-msgstr ""
+msgstr "Изберете тема."
#. G3AdH
#: gallery_insert.xhp
@@ -13704,7 +13704,7 @@ msgctxt ""
"par_id831711644480884\n"
"help.text"
msgid "Select an object using a single click."
-msgstr ""
+msgstr "Изберете обект чрез еднократно щракване."
#. UZEnF
#: gallery_insert.xhp
@@ -13713,7 +13713,7 @@ msgctxt ""
"par_id991711644510397\n"
"help.text"
msgid "Drag the object over the one you want to replace while holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key."
-msgstr ""
+msgstr "Плъзнете обекта върху този, който искате да замените, задържайки клавиша <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>."
#. 8GQeC
#: gallery_insert.xhp
@@ -13722,7 +13722,7 @@ msgctxt ""
"hd_id711711975589781\n"
"help.text"
msgid "Using the context menu"
-msgstr ""
+msgstr "Чрез контекстното меню"
#. gioE7
#: gallery_insert.xhp
@@ -13731,7 +13731,7 @@ msgctxt ""
"par_id121711975624165\n"
"help.text"
msgid "Open the <menuitem>Gallery</menuitem>"
-msgstr ""
+msgstr "Отворете <menuitem>галерията</menuitem>."
#. 4DhkW
#: gallery_insert.xhp
@@ -13740,7 +13740,7 @@ msgctxt ""
"par_id771711975652268\n"
"help.text"
msgid "Select a theme."
-msgstr ""
+msgstr "Изберете тема."
#. VA8rF
#: gallery_insert.xhp
@@ -13749,7 +13749,7 @@ msgctxt ""
"par_id101711975737933\n"
"help.text"
msgid "Left-click on the object you want to replace."
-msgstr ""
+msgstr "Щракнете с левия бутон върху обекта, който искате да заместите."
#. bB6AS
#: gallery_insert.xhp
@@ -13758,7 +13758,7 @@ msgctxt ""
"par_id381711975764271\n"
"help.text"
msgid "Right-click on the object you want to replace it with and select <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Щракнете с десния бутон върху обекта, с който искате да го замените, и изберете <menuitem>Вмъкване</menuitem>."
#. WtmDo
#: gallery_insert.xhp
@@ -13776,7 +13776,7 @@ msgctxt ""
"par_id3152920\n"
"help.text"
msgid "Open the <menuitem>Gallery</menuitem>."
-msgstr ""
+msgstr "Отворете <menuitem>галерията</menuitem>."
#. LzBki
#: gallery_insert.xhp
@@ -13803,7 +13803,7 @@ msgctxt ""
"par_id3147289\n"
"help.text"
msgid "Open the context menu and choose <emph>Insert - Background - Page</emph> or <emph>Insert - Background - Paragraph</emph>."
-msgstr ""
+msgstr "Отворете контекстното меню и изберете <emph>Вмъкване - Фон - Страница</emph> или <emph>Вмъкване - Фон - Абзац</emph>."
#. 7jTqy
#: gallery_insert.xhp
@@ -13812,7 +13812,7 @@ msgctxt ""
"par_id171711643080652\n"
"help.text"
msgid "The option to insert an object as a background image is only available in %PRODUCTNAME Writer."
-msgstr ""
+msgstr "Възможността да вмъкнете обект като фоново изображение, е налице само в %PRODUCTNAME Writer."
#. PydiW
#: groups.xhp
@@ -15288,7 +15288,7 @@ msgctxt ""
"par_id3155620\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">On <emph>Windows:</emph> To insert a character using its numeric code, press and hold down Alt while typing the numbers on the numeric keypad. Code starting with 0 is interpreted as Unicode character; otherwise, below 256 is interpreted in Windows codepage.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"WIN\">В <emph>Windows:</emph> за да вмъкнете знак чрез числовия му код, натиснете и задръжте клавиша Alt, докато въвеждате числа с цифровия блок на клавиатурата. Кодовете, започващи с 0, се интерпретират като знаци от Уникод; иначе стойностите под 256 се интерпретират в кодовата страница на Windows.</caseinline></switchinline>"
#. m8Zky
#: insert_specialchar.xhp
@@ -15297,7 +15297,7 @@ msgctxt ""
"par_id3155630\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">At present on Unix systems, there are three ways of entering letters with accents directly from the keyboard.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"UNIX\">В момента за системи, съвместими с Unix, има три начина за въвеждане на букви с ударения директно от клавиатурата.</caseinline></switchinline>"
#. B4kWh
#: insert_specialchar.xhp
@@ -15342,7 +15342,7 @@ msgctxt ""
"par_id3149088\n"
"help.text"
msgid "<link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Entering Unicode Characters</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/04/01010000.xhp#unicode_shortcut\">Въвеждане на знаци от Уникод</link>"
#. FpxDy
#: insert_specialchar.xhp
@@ -21858,7 +21858,7 @@ msgctxt ""
"bm_id380260\n"
"help.text"
msgid "<bookmark_value>Format Paintbrush</bookmark_value> <bookmark_value>clone formatting</bookmark_value> <bookmark_value>formatting;copying</bookmark_value> <bookmark_value>copying;formatting</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>четка за формати</bookmark_value><bookmark_value>клониране на форматирането</bookmark_value><bookmark_value>форматиране;копиране</bookmark_value><bookmark_value>копиране;форматиране</bookmark_value><bookmark_value>четка</bookmark_value>"
#. 7BBrB
#: paintbrush.xhp
@@ -21876,7 +21876,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "Use the <link href=\"text/shared/02/paintbrush.xhp\"><emph>Clone Formatting</emph></link> tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object."
-msgstr ""
+msgstr "Използвайте инструмента <link href=\"text/shared/02/paintbrush.xhp\"><emph>Клониране на форматирането</emph></link>, за да копирате форматиране от избран текст или обект и да го приложите върху друг текст или обект."
#. F7Fcd
#: paintbrush.xhp
@@ -21894,7 +21894,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "On the <link href=\"text/shared/main0201.xhp\"><emph>Standard Bar</emph></link>, click the <emph>Clone Formatting</emph> icon. The mouse cursor will change to a paint bucket."
-msgstr ""
+msgstr "В лентата <link href=\"text/shared/main0201.xhp\"><emph>Стандартни</emph></link> щракнете върху иконата <emph>Клониране на форматирането</emph>. Курсорът на мишката ще се промени на кофа с боя."
#. AZjCv
#: paintbrush.xhp
@@ -22137,7 +22137,7 @@ msgctxt ""
"par_id791717184075742\n"
"help.text"
msgid "Text within Impress table is selected"
-msgstr ""
+msgstr "Избран е текст в таблица на Impress"
#. 44VEa
#: paintbrush.xhp
@@ -22146,7 +22146,7 @@ msgctxt ""
"par_id211717184260731\n"
"help.text"
msgid "Copies formatting attributes that apply to all characters in the cell. Formatting can only be copied within the same table."
-msgstr ""
+msgstr "Копира атрибутите на форматирането, които се отнасят за всички знаци в клетката. Форматирането може да се копира само в рамките на същата таблица."
#. G7z8F
#: paintbrush.xhp
@@ -22155,7 +22155,7 @@ msgctxt ""
"par_id10821388499239\n"
"help.text"
msgid "Impress table or cells are selected"
-msgstr ""
+msgstr "Избрана е таблица или клетки в Impress"
#. xXcmM
#: paintbrush.xhp
@@ -22164,7 +22164,7 @@ msgctxt ""
"par_id23538680114944\n"
"help.text"
msgid "Not supported"
-msgstr ""
+msgstr "Не се поддържа"
#. Sigiv
#: palette_files.xhp
@@ -27141,7 +27141,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<emph>--show[=slide_number]</emph>"
-msgstr ""
+msgstr "<emph>--show[=номер_на_кадър]</emph>"
#. M9EKN
#: start_parameters.xhp
@@ -27150,7 +27150,7 @@ msgctxt ""
"par_id3153838\n"
"help.text"
msgid "Opens and starts the slideshow of the following presentation documents immediately. Files are closed after the showing. If a <literal>slide_number</literal> is provided, they start at that slide."
-msgstr ""
+msgstr "Отваря и стартира прожекцията на следващите презентации незабавно. Файловете се затварят след показването. Ако е зададен <literal>номер_на_кадър</literal>, те започват от съответния кадър."
#. 5R6iA
#: start_parameters.xhp
@@ -29526,7 +29526,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "When you first start a <emph>Open</emph> or <emph>Save</emph> dialog, $[officename] displays your working directory. To change this first directory:"
-msgstr ""
+msgstr "Когато за пръв път задействате диалог <emph>Отваряне</emph> или <emph>Записване</emph>, $[officename] показва работната ви директория. За да смените тази първа директория:"
#. 6GsFV
#: workfolder.xhp
@@ -29562,7 +29562,7 @@ msgctxt ""
"par_id3158003\n"
"help.text"
msgid "When you change to different directories in <emph>Open</emph> or <emph>Save</emph> dialog, $[officename] will display the last directory used."
-msgstr ""
+msgstr "Когато сменяте директорията в диалога <emph>Отваряне</emph> или <emph>Записване</emph>, $[officename] ще показва последната използвана директория."
#. Cz6ve
#: workfolder.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/help.po b/source/bg/helpcontent2/source/text/shared/help.po
index 547f4f594cd..67de3c885de 100644
--- a/source/bg/helpcontent2/source/text/shared/help.po
+++ b/source/bg/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-02-19 09:45+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1555410098.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Книги за LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 942c09b6b6a..ec7be9bcf5e 100644
--- a/source/bg/helpcontent2/source/text/shared/optionen.po
+++ b/source/bg/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-19 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 13:51+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/bg/>\n"
"Language: bg\n"
@@ -933,15 +933,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Автоматично записване на документа вместо това"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9483,7 +9483,7 @@ msgctxt ""
"hd_id3156414\n"
"help.text"
msgid "<variable id=\"calc_options_h1\"><link href=\"text/shared/optionen/01060000.xhp\">%PRODUCTNAME Calc Options</link></variable>"
-msgstr ""
+msgstr "<variable id=\"calc_options_h1\"><link href=\"text/shared/optionen/01060000.xhp\">Настройки на %PRODUCTNAME Calc</link></variable>"
#. Z6bPt
#: 01060000.xhp
@@ -9510,7 +9510,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>клетки; видими линии на мрежата (Calc)</bookmark_value><bookmark_value>кантове; клетки върху екрана (Calc)</bookmark_value><bookmark_value>мрежи; видими линии (Calc)</bookmark_value><bookmark_value>цветове; мрежи и клетки (Calc)</bookmark_value><bookmark_value>разделители на страници; показване (Calc)</bookmark_value><bookmark_value>помощни линии; показване (Calc)</bookmark_value><bookmark_value>манипулатори; показване простиl/големи (Calc)</bookmark_value><bookmark_value>манипулатори; прости/големи (Calc)</bookmark_value><bookmark_value>показване; нулеви стойности (Calc)</bookmark_value><bookmark_value>нулеви стойности; показване (Calc)</bookmark_value><bookmark_value>таблици в електронни таблици; осветяване на стойности</bookmark_value><bookmark_value>клетки; форматиране без ефект (Calc)</bookmark_value><bookmark_value>клетки; оцветяване (Calc)</bookmark_value><bookmark_value>котви; показване (Calc)</bookmark_value><bookmark_value>цветове;ограничаване (Calc)</bookmark_value><bookmark_value>препълване с текст в клетки от електронна таблица</bookmark_value><bookmark_value>обръщения; показване в цвят (Calc)</bookmark_value><bookmark_value>обекти; показване в електронни таблици</bookmark_value><bookmark_value>картини; показване в Calc</bookmark_value><bookmark_value>диаграми; показване (Calc)</bookmark_value><bookmark_value>чертожни обекти; показване (Calc)</bookmark_value><bookmark_value>заглавия на редове; показване (Calc)</bookmark_value><bookmark_value>заглавия на колони; показване (Calc)</bookmark_value><bookmark_value>плъзгачи; показване (Calc)</bookmark_value><bookmark_value>етикети на листи; показване</bookmark_value><bookmark_value>етикети; показване на етикети на листи</bookmark_value><bookmark_value>планове;символи за план</bookmark_value><bookmark_value>клетки;индикатор за формула в клетка</bookmark_value><bookmark_value>клетки;подсказване за формула</bookmark_value><bookmark_value>показване; авторство на коментарите</bookmark_value><bookmark_value>показалец; от тема</bookmark_value><bookmark_value>показалец; системен</bookmark_value><bookmark_value>намиране на всичко; показване резюме на търсенето</bookmark_value><bookmark_value>клетки; осветяване</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9537,7 +9537,7 @@ msgctxt ""
"par_id111715611366567\n"
"help.text"
msgid "Choose <menuitem>Tools - Options - %PRODUCTNAME Calc - View</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Инструменти - Настройки - %PRODUCTNAME Calc - Изглед</menuitem>."
#. USQUC
#: 01060100.xhp
@@ -9546,7 +9546,7 @@ msgctxt ""
"par_id741715611637972\n"
"help.text"
msgid "Press <input>Alt+F12</input> then choose <menuitem>%PRODUCTNAME Calc - View</menuitem>."
-msgstr ""
+msgstr "Натиснете <input>Alt+F12</input>, после изберете <menuitem>%PRODUCTNAME Calc - Изглед</menuitem>."
#. 4eD3Z
#: 01060100.xhp
@@ -9609,7 +9609,7 @@ msgctxt ""
"hd_id3147348\n"
"help.text"
msgid "Comment indicator"
-msgstr "Индикатори на коментар"
+msgstr "Индикатор на коментар"
#. Bx8yt
#: 01060100.xhp
@@ -9618,7 +9618,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/tpviewpage/annot\">Specifies that a small triangle in the top right corner of the cell indicates that a comment exists. The comment will be shown only when you enable tips under <emph>%PRODUCTNAME - General</emph> in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/tpviewpage/annot\">Указва, че наличието на коментар се отбелязва с триъгълниче в горния десен ъгъл на клетката. Коментарът ще се показва само ако активирате подсказките в <emph>%PRODUCTNAME - Общи</emph> в диалоговия прозорец „Настройки“.</ahelp>"
#. 48K7Q
#: 01060100.xhp
@@ -9627,7 +9627,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Индикатор на коментар</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9636,7 +9636,7 @@ msgctxt ""
"par_id3150487\n"
"help.text"
msgid "<ahelp hid=\".uno:NoteVisible\">To display a comment permanently, select the <emph>Show comment</emph> command from the cell's context menu.</ahelp>"
-msgstr "<ahelp hid=\".uno:NoteVisible\">За да покажете коментар за постоянно, изберете командата <emph>Показване на кометнар</emph> от контекстното меню на клетката.</ahelp>"
+msgstr "<ahelp hid=\".uno:NoteVisible\">За да покажете коментар за постоянно, изберете командата <emph>Показване на коментар</emph> от контекстното меню на клетката.</ahelp>"
#. Dk85Q
#: 01060100.xhp
@@ -9645,7 +9645,7 @@ msgctxt ""
"par_id3149667\n"
"help.text"
msgid "You can type and edit comments with the <link href=\"text/shared/01/04050000.xhp\"><emph>Insert - Comment</emph></link> command. Comments that are permanently displayed can be edited by clicking the comment box. Click the Navigator and under the <emph>Comments</emph> entry you can view all comments in the current document. By double clicking a comment in Navigator, the cursor will jump to the corresponding cell containing the comment."
-msgstr "Можете да въвеждате и редактирате коментари с командата <link href=\"text/shared/01/04050000.xhp\"><emph>Вмъкване - Коментар</emph></link>. Постоянно показаните коментари могат да бъдат редактирани чрез щракване върху карето с коментара. Щракнете в навигатора и под елемента <emph>Коментари</emph> можете да разгледате всички коментари в текущия документ. Когато щракнете двукратно върху коментар в навигатора, курсорът ще прескочи към клетката, съдържаща кометнтара."
+msgstr "Можете да въвеждате и редактирате коментари с командата <link href=\"text/shared/01/04050000.xhp\"><emph>Вмъкване - Коментар</emph></link>. Постоянно показаните коментари могат да бъдат редактирани чрез щракване върху карето с коментара. Щракнете в навигатора и под елемента <emph>Коментари</emph> можете да разгледате всички коментари в текущия документ. Когато щракнете двукратно върху коментар в навигатора, курсорът ще прескочи към клетката, съдържаща коментара."
#. T78Zm
#: 01060100.xhp
@@ -9654,7 +9654,7 @@ msgctxt ""
"hd_id261715605964558\n"
"help.text"
msgid "Comment authorship"
-msgstr ""
+msgstr "Авторство на коментарите"
#. RjWVM
#: 01060100.xhp
@@ -9663,7 +9663,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Ако това поле е отметнато, авторът на коментара, както и датата и часът, когато е направен, ще се показват в прозореца на коментара, когато го посочите с мишката."
#. tYLiN
#: 01060100.xhp
@@ -9672,7 +9672,7 @@ msgctxt ""
"par_id611716209450981\n"
"help.text"
msgid "The comment author name appears as it appears in the <emph>First Name</emph> and <emph>Last Name</emph> fields in the <link href=\"text/shared/optionen/01010100.xhp#name\"><emph>User Data</emph></link> dialog. If those fields are blank, the author name appears as \"Unknown Author\". Updating the user data only affects comments made after the update."
-msgstr ""
+msgstr "Името на автора на коментара се показва така, както е дадено в полетата <emph>Име</emph> и <emph>Фамилия</emph> в диалога <link href=\"text/shared/optionen/01010100.xhp#name\"><emph>Данни за потребител</emph></link>. Ако тези полета са празни, името на автора се изписва като „Неизвестен автор“. Обновяването на данните за потребител се отразява само на коментарите, създадени след промяната."
#. rRMZW
#: 01060100.xhp
@@ -9699,7 +9699,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Индикатор за формула</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9735,7 +9735,7 @@ msgctxt ""
"hd_id441715869656096\n"
"help.text"
msgid "Column/Row highlighting"
-msgstr ""
+msgstr "Осветяване на колони/редове"
#. 95fif
#: 01060100.xhp
@@ -9744,7 +9744,7 @@ msgctxt ""
"par_id311715869701090\n"
"help.text"
msgid "When this command is active, the column and row of a selected cell is highlighted. If multiple cells are selected, only the column and row of the first cell is highlighted."
-msgstr ""
+msgstr "Когато тази команда е активна, колоната и редът на избраната клетка се осветяват. Ако са избрани няколко клетки, се осветяват само колоната и редът на първата клетка."
#. PEjWg
#: 01060100.xhp
@@ -9753,7 +9753,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Осветяване на колони/редове</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9762,7 +9762,7 @@ msgctxt ""
"hd_id301715869411090\n"
"help.text"
msgid "Edit cell highlighting"
-msgstr ""
+msgstr "Осветяване на редактираната клетка"
#. ZwybY
#: 01060100.xhp
@@ -9771,7 +9771,7 @@ msgctxt ""
"par_id221715869527909\n"
"help.text"
msgid "When this command is active, the background of a cell is highlighted when it is in edit mode."
-msgstr ""
+msgstr "Когато тази команда е активна, фонът на клетката се осветява, когато тя е в режим на редактиране."
#. Tg7iF
#: 01060100.xhp
@@ -9780,7 +9780,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Осветяване на редактираната клетка</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9807,7 +9807,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Котва на изображение</alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9834,7 +9834,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Цветни обръщения</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9879,7 +9879,7 @@ msgctxt ""
"hd_id131715608178914\n"
"help.text"
msgid "Pointer"
-msgstr ""
+msgstr "Показалец"
#. ucn54
#: 01060100.xhp
@@ -9888,7 +9888,7 @@ msgctxt ""
"par_id471715608193873\n"
"help.text"
msgid "Specifies whether %PRODUCTNAME Calc displays the pointer in the system default style, or the style which matches the icon theme."
-msgstr ""
+msgstr "Указва дали %PRODUCTNAME Calc да показва показалеца с подразбирания стил на системата или със стила, който съответства на темата с икони."
#. io6DW
#: 01060100.xhp
@@ -9897,7 +9897,7 @@ msgctxt ""
"hd_id221715609620456\n"
"help.text"
msgid "Themed"
-msgstr ""
+msgstr "От темата"
#. AwDnq
#: 01060100.xhp
@@ -9906,7 +9906,7 @@ msgctxt ""
"par_id331715609634665\n"
"help.text"
msgid "Shows the pointer as defined by the icon theme, typically as a fat cross."
-msgstr ""
+msgstr "Показва показалеца така, както е зададен в темата с икони, обикновено дебел кръст."
#. LMvd3
#: 01060100.xhp
@@ -9915,7 +9915,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Курсор от тема</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9924,7 +9924,7 @@ msgctxt ""
"hd_id1001715609641174\n"
"help.text"
msgid "System"
-msgstr ""
+msgstr "Системен"
#. EhJuR
#: 01060100.xhp
@@ -9933,7 +9933,7 @@ msgctxt ""
"par_id31715609645437\n"
"help.text"
msgid "Shows the pointer as the system default, typically as an arrow."
-msgstr ""
+msgstr "Показва подразбирания системен показалец, обикновено стрелка."
#. 4n7Uj
#: 01060100.xhp
@@ -9942,7 +9942,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Системен курсор</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10005,7 +10005,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Обекти/изображения"
#. DMhEf
#: 01060100.xhp
@@ -10167,7 +10167,7 @@ msgctxt ""
"hd_id931715613945224\n"
"help.text"
msgid "Summary on search"
-msgstr ""
+msgstr "Резюме на търсенето"
#. 79z6u
#: 01060100.xhp
@@ -10176,7 +10176,7 @@ msgctxt ""
"par_id471715613958781\n"
"help.text"
msgid "If this box is checked, a Search Results window appears when you choose <menuitem>Find All</menuitem> in the <link href=\"text/shared/find_toolbar.xhp\"><menuitem>Find Bar</menuitem></link>. The Search Results box states the number of matching search results and lists:"
-msgstr ""
+msgstr "Ако това поле е отметнато, се показва прозорец „Резултати от търсенето“, когато изберете <menuitem>Търсене на всички</menuitem> в лентата <link href=\"text/shared/find_toolbar.xhp\"><menuitem>Търсене</menuitem></link>. Прозорецът „Резултати от търсенето“ отчита броя съответстващи резултати и изброява:"
#. VtT98
#: 01060100.xhp
@@ -10185,7 +10185,7 @@ msgctxt ""
"par_id671715625666455\n"
"help.text"
msgid "the sheet where each result is located;"
-msgstr ""
+msgstr "листа, в който се намира всеки от резултатите;"
#. DgERX
#: 01060100.xhp
@@ -10194,7 +10194,7 @@ msgctxt ""
"par_id171715626207799\n"
"help.text"
msgid "the cell where each result is located; and"
-msgstr ""
+msgstr "клетката, в която се намира всеки от резултатите;"
#. m8yZc
#: 01060100.xhp
@@ -10203,7 +10203,7 @@ msgctxt ""
"par_id171715625670755\n"
"help.text"
msgid "the contents of the cell containing each result."
-msgstr ""
+msgstr "съдържанието на клетката, съдържаща всеки от резултатите."
#. iQEKa
#: 01060100.xhp
@@ -10212,7 +10212,7 @@ msgctxt ""
"par_id131715625842347\n"
"help.text"
msgid "Unchecking the <menuitem>Show this dialog</menuitem> box in the Search Results window disables this feature."
-msgstr ""
+msgstr "Премахването на отметката от полето <menuitem>Показване на този диалог</menuitem> в прозореца „Резултати от търсенето“ деактивира тази функция."
#. RT3qR
#: 01060100.xhp
@@ -16197,7 +16197,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Разширени - Отваряне на експертните настройки</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16206,7 +16206,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "В раздела <menuitem>Инструменти</menuitem> щракнете върху бутона <menuitem>Настройки</menuitem>, после върху <menuitem>%PRODUCTNAME - Разширени - Отваряне на експертните настройки</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/00.po b/source/bg/helpcontent2/source/text/swriter/00.po
index 7f46a25ec4b..a64c59b1bac 100644
--- a/source/bg/helpcontent2/source/text/swriter/00.po
+++ b/source/bg/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-30 14:12+0200\n"
-"PO-Revision-Date: 2024-04-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547853218.000000\n"
#. E9tti
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3154505\n"
"help.text"
msgid "<variable id=\"fussnote\">Choose <emph>Edit - Reference - Footnote or Endnote</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fussnote\">Изберете <emph>Редактиране - Препратка - Бележка под линия или в края</emph>.</variable>"
#. D4PcF
#: 00000402.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id3149053\n"
"help.text"
msgid "<variable id=\"feldbefehldatum\">Choose <menuitem>Insert - Field - Date (Fixed)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbefehldatum\">Изберете <menuitem>Вмъкване - Поле - Дата (фиксирана)</menuitem>.</variable>"
#. 687nA
#: 00000404.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id791709600478217\n"
"help.text"
msgid "<variable id=\"field_command_date_variable\">Choose <menuitem>Insert - Field - Date (Variable)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"field_command_date_variable\">Изберете <menuitem>Вмъкване - Поле - Дата (променлива)</menuitem>.</variable>"
#. DSgfF
#: 00000404.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id3151393\n"
"help.text"
msgid "<variable id=\"feldbefehluhrzeit\">Choose <menuitem>Insert - Field - Time (Fixed)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbefehluhrzeit\">Изберете <menuitem>Вмъкване - Поле - Час (фиксиран)</menuitem>.</variable>"
#. QoBsr
#: 00000404.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id171709600782780\n"
"help.text"
msgid "<variable id=\"field_command_time_variable\">Choose <menuitem>Insert - Field - Time (Variable)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"field_command_time_variable\">Изберете <menuitem>Вмъкване - Поле - Час (променлив)</menuitem>.</variable>"
#. WHhqc
#: 00000404.xhp
@@ -1409,7 +1409,7 @@ msgctxt ""
"par_id3151322\n"
"help.text"
msgid "Choose <menuitem>Insert - Footnote and Endnote - Insert Special Footnote/Endnote</menuitem>"
-msgstr ""
+msgstr "Изберете <menuitem>Вмъкване - Бележка под линия или в края - Вмъкване на специална бележка под линия/в края</menuitem>."
#. DGDoW
#: 00000404.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id91705505003097\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Изтъкване</menuitem>."
#. Ap6v8
#: 00000405.xhp
@@ -2201,7 +2201,7 @@ msgctxt ""
"par_id751692650117734\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Direct Formatting</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Изтъкване - Пряко знаково форматиране</menuitem>."
#. pe2jB
#: 00000405.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"par_id991705508323227\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Paragraph Formatting</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Изтъкване - Форматиране на абзаци</menuitem>."
#. TG5F7
#: 00000405.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id361688480578471\n"
"help.text"
msgid "Open the <emph>Styles - Paragraph</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr ""
+msgstr "Отворете колодата <emph>Стилове - Абзац</emph>, отметнете полето <menuitem>Изтъкване</menuitem>."
#. 95qcn
#: 00000405.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id121705508327920\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Formatting</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Изтъкване - Знаково форматиране</menuitem>."
#. t4bGN
#: 00000405.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"par_id841705508304691\n"
"help.text"
msgid "Open the <emph>Styles - Character</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr ""
+msgstr "Отворете колодата <emph>Стилове - Знак</emph>, отметнете полето <menuitem>Изтъкване</menuitem>."
#. GA9eA
#: 00000405.xhp
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id681693688270842\n"
"help.text"
msgid "Choose <menuitem>Delete - Columns</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Изтриване - Колони</menuitem>."
#. BRSwg
#: 00000405.xhp
@@ -3767,7 +3767,7 @@ msgctxt ""
"par_id401713819764756\n"
"help.text"
msgid "Choose <menuitem>Format - Table - Select</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Таблица - Избиране</menuitem>."
#. Puzip
#: 00000405.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_id401713820421114\n"
"help.text"
msgid "Choose <menuitem>Format - Table - Delete Table</menuitem>."
-msgstr ""
+msgstr "Изберете <menuitem>Форматиране - Таблица - Изтриване на таблица</menuitem>."
#. DacRK
#: 00000405.xhp
@@ -4145,7 +4145,7 @@ msgctxt ""
"par_id3154477\n"
"help.text"
msgid "<variable id=\"fussnoteneinstellung\">Choose <emph>Tools - Footnote/Endnote Settings</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fussnoteneinstellung\">Изберете <emph>Инструменти - Настройки на бележките под линия/в края</emph>.</variable>"
#. nJCyB
#: 00000406.xhp
@@ -4154,7 +4154,7 @@ msgctxt ""
"par_id3153669\n"
"help.text"
msgid "<variable id=\"fussnoten\">Choose <emph>Tools - Footnote/Endnote Settings - Footnotes</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"fussnoten\">Изберете раздела <emph>Инструменти - Настройки на бележките под линия/в края - Бележки под линия</emph>.</variable>"
#. nMAbg
#: 00000406.xhp
@@ -4163,7 +4163,7 @@ msgctxt ""
"par_id3150972\n"
"help.text"
msgid "<variable id=\"endnoten\">Choose <emph>Tools - Footnote/Endnote Settings - Endnotes</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"fussnoten\">Изберете раздела <emph>Инструменти - Настройки на бележките под линия/в края - Бележки в края</emph>.</variable>"
#. LFvpA
#: 00000406.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 211d58274ba..02b3ddc0735 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 19:26+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562351067.000000\n"
@@ -23363,14 +23363,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Прякото форматиране замества всякакво форматиране, зададено от знаков стил. За да премахнете прякото форматиране от селекция, използвайте <menuitem>Форматиране - Изчистване на прякото форматиране</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Използвайте областта <emph>Съдържа</emph> в раздела „Организатор“, за да видите свойствата на знаковия стил."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/02.po b/source/bg/helpcontent2/source/text/swriter/02.po
index 0cd4f69c687..9857cbb884f 100644
--- a/source/bg/helpcontent2/source/text/swriter/02.po
+++ b/source/bg/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2024-04-19 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547852096.000000\n"
#. sqxGb
@@ -3686,7 +3686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Date (Fixed)"
-msgstr ""
+msgstr "Дата (фиксирана)"
#. 8mad6
#: 18030100.xhp
@@ -3722,7 +3722,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Time (Fixed)"
-msgstr ""
+msgstr "Час (фиксиран)"
#. yxN2Q
#: 18030200.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 548fe7c7878..a68048fb159 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/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: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564897611.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "В списъка със стилове за страници щракнете с десния бутон върху \"Лява страница\" и изберете <emph>Промяна</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Изберете раздела <emph>Организатор</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -5927,7 +5927,7 @@ msgctxt ""
"hd_id331715628566984\n"
"help.text"
msgid "<embedvar href=\"text/swriter/guide/title_page.xhp#usingtitlepage\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/swriter/guide/title_page.xhp#usingtitlepage\"/>"
#. dfM3L
#: footer_pagenumber.xhp
@@ -5936,7 +5936,7 @@ msgctxt ""
"par_id21715629004389\n"
"help.text"
msgid "Title pages are a common way to create documents with different page numbering schemes."
-msgstr ""
+msgstr "Заглавните страници са разпространен начин да се създават документи с различни схеми за номериране на страниците."
#. bf2Mp
#: footnote_usage.xhp
@@ -5999,7 +5999,7 @@ msgctxt ""
"par_id3147120\n"
"help.text"
msgid "Choose <link href=\"text/swriter/01/04030000.xhp\"><emph>Insert - Footnote and Endnote - Insert Special Footnote/Endnote</emph></link>."
-msgstr ""
+msgstr "Изберете <link href=\"text/swriter/01/04030000.xhp\"><emph>Вмъкване - Бележка под линия/в края - Вмъкване на специална бележка под линия/в края</emph></link>."
#. GzUpe
#: footnote_usage.xhp
@@ -6125,7 +6125,7 @@ msgctxt ""
"par_id3145081\n"
"help.text"
msgid "To edit the numbering properties of a footnote or endnote anchor, click in front of the anchor, and choose <link href=\"text/swriter/01/02150000.xhp\"><emph>Edit - Reference - Footnote or Endnote</emph></link>."
-msgstr ""
+msgstr "За да редактирате свойствата на номерацията на котва на бележка под линия или в края, щракнете пред котвата и изберете <link href=\"text/swriter/01/02150000.xhp\"><emph>Редактиране - Препратка - Бележка под линия/в края</emph></link>."
#. uir8R
#: footnote_usage.xhp
@@ -6134,7 +6134,7 @@ msgctxt ""
"par_id3147776\n"
"help.text"
msgid "To change the formatting that $[officename] applies to footnotes and endnotes, choose <link href=\"text/swriter/01/06080000.xhp\"><emph>Tools - Footnote/Endnote Settings</emph></link>."
-msgstr ""
+msgstr "За да промените форматирането, което $[officename] прилага върху бележки под линия и в края, изберете <link href=\"text/swriter/01/06080000.xhp\"><emph>Инструменти - Настройки на бележките под линия/в края</emph></link>."
#. yAmpU
#: footnote_usage.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Можете да използвате различни колонтитули в различните страници от документа, стига въпросните страници да ползват различни стилове за страница. $[officename] предлага няколко предварително дефинирани стилове за страници, например <emph>Първа страница</emph>, <emph>Лява страница</emph> и <emph>Дясна страница</emph>, а можете да добавяте и свои стилове за страници."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Ако желаете, можете да използвате и огледално оформление на страници, в случай че външното и вътрешното бяло поле на страниците се различават. За да приложите тази настройка върху стил за страници, изберете <item type=\"menuitem\">Форматиране - Стил на страница</item>, отворете раздела <item type=\"menuitem\">Страница</item> и в областта <item type=\"menuitem\">Настройки за оформление</item> изберете „Огледално“ в полето <item type=\"menuitem\">Подредба на страниците</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Щракнете върху \"Дясна страница\" в списъка със стилове за страници и изберете <emph>Промяна</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "В диалоговия прозорец <item type=\"menuitem\">Стил за страници</item> отворете раздела <item type=\"menuitem\">Горен колонтитул</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Отметнете полето <item type=\"menuitem\">Горен колонтитул</item> и отворете раздела <item type=\"menuitem\">Организатор</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "В полето <item type=\"menuitem\">Следващ стил</item> изберете „Лява страница“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "В прозореца <emph>Стилове</emph> щракнете с десния бутон върху „Лява страница“ в списъка със стилове за страници и изберете <emph>Промяна</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "В диалоговия прозорец <item type=\"menuitem\">Стил за страници</item> отворете раздела <item type=\"menuitem\">Горен колонтитул</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Отметнете полето <item type=\"menuitem\">Горен колонтитул</item> и отворете раздела <item type=\"menuitem\">Организатор</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "В полето <item type=\"menuitem\">Следващ стил</item> изберете „Дясна страница“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Щракнете върху елемент от списъка със стиловете за страници и изберете <emph>Нов</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "В раздела <emph>Организатор</emph> въведете име за стила на страницата в полето <emph>Име</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Изберете <emph>Нова страница</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "В полето <item type=\"menuitem\">Стил</item> изберете стил за страници, който включва желания фон."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,14 +11860,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Автоматичният разделител на страници</emph> се появява в края на страница, когато в стила й е зададен различен \"следващ стил\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Например в стила за страници „Първа страница“ като следващ стил е зададен „По подразбиране“. За да видите това, натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>, за да отворите прозореца <menuitem>Стилове</menuitem>, щракнете върху иконата <menuitem>Стилове за страници</menuitem> и щракнете с десния бутон върху елемента „Първа страница“. Изберете <menuitem>Редактиране на стил</menuitem> от контекстното меню. В раздела <menuitem>Организатор</menuitem> ще видите поле „Следващ стил“."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Щракнете с десния бутон върху стил за страници и изберете <emph>Нов</emph>. Новият стил за страници отначало приема всички свойства на избрания."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "В раздела <emph>Организатор</emph> въведете име за стила на страницата в полето <emph>Име</emph>, например \"Моят пейзаж\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Стилове с дължина една страница"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Всеки стил за страници може да бъде зададен така, че да се простира само върху една страница. Такъв е например стилът „Първа страница“. Това свойство се задава като посочите друг стил за страници в качеството на „следващ стил“ в раздела <menuitem>Форматиране - Стил на страница - Организатор</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Ръчно зададен обхват на стил за страници"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Стилът за страници „По подразбиране“ не задава различен „следващ стил“ в раздела <menuitem>Форматиране - Стил на страница - Организатор</menuitem>. Вместо това за „следващ стил“ е зададено също „По подразбиране“. Всички стилове за страници, последвани от същия стил, могат да се простират на по няколко страници. Долната и горната граница на диапазона от страници със стила се задават чрез знаци „разделител на страници със смяна на стила“. Всички страници между два знака „разделител на страници със смяна на стила“ са с един и същ стил."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Щракнете върху елемент от списъка със стиловете за страници и изберете <emph>Нов</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "В раздела <emph>Организатор</emph> въведете име в полето <emph>Име</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
@@ -15737,7 +15737,7 @@ msgctxt ""
"par_id0525200902184476\n"
"help.text"
msgid "To check the spelling and the grammar of a text, the appropriate dictionaries must be installed. For many languages three different dictionaries exist: a spellchecker, a hyphenation dictionary, and a thesaurus. Each dictionary covers one language only. Grammar checkers can be downloaded and installed as extensions. See the <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">extensions web page</link>."
-msgstr ""
+msgstr "За да проверите правописа и граматиката на текст, трябва да са инсталирани съответните речници. За много езици съществуват по три речника: правописен, за сричкопренасяне и синонимен. Всеки речник обхваща само един език. Проверяващите модули за граматика могат да се изтеглят и инсталират като разширения. Вижте <link href=\"https://extensions.libreoffice.org/?Tags[]=50\">уебстраницата с разширения</link>."
#. X3zXc
#: spellcheck_dialog.xhp
@@ -15827,7 +15827,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Styles"
-msgstr ""
+msgstr "Изтъкване на стиловете"
#. P9uc3
#: spotlight_styles.xhp
@@ -15836,7 +15836,7 @@ msgctxt ""
"bm_id401688481259265\n"
"help.text"
msgid "<bookmark_value>spotlight;styles</bookmark_value> <bookmark_value>styles spotlight;visual indicator of styles</bookmark_value> <bookmark_value>styles visual indicator;spotlighting styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>изтъкване;стилове</bookmark_value><bookmark_value>стилове, изтъкване;визуален индикатор за стилове</bookmark_value><bookmark_value>стилове, визуален индикатор;изтъкване на стилове</bookmark_value>"
#. wexaF
#: spotlight_styles.xhp
@@ -15845,7 +15845,7 @@ msgctxt ""
"hd_id901688480262925\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/guide/spotlight_styles.xhp\">Styles Spotlighting</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/guide/spotlight_styles.xhp\">Изтъкване на стиловете</link></variable>"
#. RABFw
#: spotlight_styles.xhp
@@ -15854,7 +15854,7 @@ msgctxt ""
"par_id721688480262925\n"
"help.text"
msgid "The styles spotlight in %PRODUCTNAME Writer gives a visual indicator of styles and direct formatting present in the document."
-msgstr ""
+msgstr "Изтъкването на стиловете в %PRODUCTNAME Writer дава визуална индикация за стиловете и прякото форматиране, присъстващи в документа."
#. DPLrV
#: spotlight_styles.xhp
@@ -15863,7 +15863,7 @@ msgctxt ""
"par_id441688481502370\n"
"help.text"
msgid "Use the styles spotlight to inspect usage of styles and direct formatting in the document."
-msgstr ""
+msgstr "Използвайте изтъкването на стиловете, за да преглеждате употребата на стилове и пряко форматиране в документа."
#. xzB7C
#: spotlight_styles.xhp
@@ -15872,7 +15872,7 @@ msgctxt ""
"par_id361688480578471\n"
"help.text"
msgid "Open the <emph>Styles</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr ""
+msgstr "Отворете колодата <emph>Стилове</emph>, отметнете полето <menuitem>Изтъкване</menuitem>."
#. ejCjY
#: spotlight_styles.xhp
@@ -15881,7 +15881,7 @@ msgctxt ""
"par_id701688481512511\n"
"help.text"
msgid "The Spotlight visual indicator is codified using numbers and colors. The feature shows direct formatting for characters and paragraphs indicated by a hatch pattern in the Spotlight colored on the margin."
-msgstr ""
+msgstr "Визуалната индикация се осъществява чрез числа и цветове. Функцията показва прякото форматиране за знаци и абзаци посредством щриховка върху индикатора в полето на страницата."
#. RjcYe
#: spotlight_styles.xhp
@@ -15890,7 +15890,7 @@ msgctxt ""
"par_id871688481600843\n"
"help.text"
msgid "The Spotlight feature can visualize paragraphs and characters styles only."
-msgstr ""
+msgstr "Функцията „Изтъкване“ може да визуализира само стилове на абзаци и знаци."
#. agBzx
#: spotlight_styles.xhp
@@ -15899,7 +15899,7 @@ msgctxt ""
"par_id751688481764432\n"
"help.text"
msgid "When the extended tips features is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools – Options</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – General</menuitem>, a tooltip shows the style name and many attributes of the style applied."
-msgstr ""
+msgstr "Когато са включени разширените подсказки в <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – Общи</menuitem>, името на приложения стил и много от атрибутите му се показват в подсказка."
#. C5AEv
#: spotlight_styles.xhp
@@ -15908,7 +15908,7 @@ msgctxt ""
"par_id891688481774765\n"
"help.text"
msgid "Paragraph direct formatting is indicated in two ways: by a hatch pattern in the coloured indicators and by the text \"+ Paragraph Direct Formatted\" added to the name of the style."
-msgstr ""
+msgstr "Директното форматиране на абзац се показва по два начина: с щриховка в цветните индикатори и чрез текста „+ Пряко абзацно форматиране“, добавен към името на стила."
#. pG2Wi
#: spotlight_styles.xhp
@@ -15917,7 +15917,7 @@ msgctxt ""
"par_id61688482137651\n"
"help.text"
msgid "Refer to Styles for more information about <link href=\"text/swriter/01/05130000.xhp\">Style Categories and Style Groups</link>"
-msgstr ""
+msgstr "Вижте „Стилове“ за повече информация относно <link href=\"text/swriter/01/05130000.xhp\">категориите и групите стилове</link>."
#. fp2Jd
#: spotlight_styles.xhp
@@ -15926,7 +15926,7 @@ msgctxt ""
"par_id381688482143901\n"
"help.text"
msgid "<link href=\"text/shared/guide/template_manager.xhp\">Manage Templates</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/template_manager.xhp\">Управление на шаблоните</link>"
#. cgrCU
#: stylist_fillformat.xhp
@@ -15935,7 +15935,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying Styles in Fill Format Mode"
-msgstr "Прилагане на стилове в режим Запълване"
+msgstr "Прилагане на стилове в режим „Запълване с формат“"
#. kP3p2
#: stylist_fillformat.xhp
@@ -15953,7 +15953,7 @@ msgctxt ""
"hd_id3145084\n"
"help.text"
msgid "<variable id=\"stylist_fillformat\"><link href=\"text/swriter/guide/stylist_fillformat.xhp\">Applying Styles in Fill Format Mode</link></variable>"
-msgstr "<variable id=\"stylist_fillformat\"><link href=\"text/swriter/guide/stylist_fillformat.xhp\">Прилагане на стилове в режим Запълване</link></variable>"
+msgstr "<variable id=\"stylist_fillformat\"><link href=\"text/swriter/guide/stylist_fillformat.xhp\">Прилагане на стилове в режим „Запълване с формат“</link></variable>"
#. vvJoU
#: stylist_fillformat.xhp
@@ -16286,7 +16286,7 @@ msgctxt ""
"bm_id3155174\n"
"help.text"
msgid "<bookmark_value>text; subscript and superscript</bookmark_value><bookmark_value>superscript text</bookmark_value><bookmark_value>subscript text</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>текст; долен и горен индекс</bookmark_value><bookmark_value>горен индекс в текст</bookmark_value><bookmark_value>долен индекс в текст</bookmark_value>"
#. GiQL5
#: subscript.xhp
@@ -16331,7 +16331,7 @@ msgctxt ""
"par_id3156111\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+P</keycode> to make the text superscript, and <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+B</keycode> to make the text subscript."
-msgstr ""
+msgstr "Натиснете <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+P</keycode>, за да превърнете текста в горен индекс, или <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Shift+B</keycode>, за да го превърнете в долен индекс."
#. ALJRV
#: subscript.xhp
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index f1e17a4783e..1e0f0db933c 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 17:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562424086.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Режим на съответствие"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – точно съвпадение. Ще върне #N/A, ако няма съвпадение. (Подразбира се.)\n"
-"-1 – точно съвпадение или следващият по-малък елемент.\n"
-"1 – точно съвпадение или следващият по-голям елемент.\n"
-"2 – съвпадение със заместващи знаци или регулярен израз."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Режим на съответствие"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – точно съвпадение. Ще върне #N/A, ако няма съвпадение. (Подразбира се.)\n"
-"-1 – точно съвпадение или следващият по-малък елемент.\n"
-"1 – точно съвпадение или следващият по-голям елемент.\n"
-"2 – съвпадение със заместващи знаци или регулярен израз."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "Стандартно"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Общи"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Линия"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Област"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Засенчване"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Прозрачност"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Шрифт"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Отстъпи и разредка"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Текст"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Анимиран текст"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Оразмеряване"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Подравняване"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азиатска типография"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Табулатори"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Осветяване"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Изтриване"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Без кантове"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Всички кантове"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Кантове по края"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Дебели кантове по края"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Дебел кант отдолу"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Двоен кант отдолу"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Кант отгоре и дебел кант отдолу"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Кант отгоре и двоен кант отдолу"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Кант отляво"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Кант отдясно"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Кант отгоре"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Кант отдолу"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Диагонал нагоре"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Диагонал надолу"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Кантове отгоре и отдолу"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Кантове отляво и отдясно"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Форматиране на клетки"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Числа"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Шрифт"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Подравняване"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Азиатска типография"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Кантове"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Фон"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Защита на клетки"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Стил за страници"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Общи"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Страница"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Кантове"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Горен колонтитул"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Долен колонтитул"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Лист"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Стил за клетки"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Общи"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Числа"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Шрифт"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Подравняване"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азиатска типография"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Кантове"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Защита на клетки"
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index d8b5e8c429e..6c0dc5ca176 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-13 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bg/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Стандартен"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Общи"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Линия"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Област"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Засенчване"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Прозрачност"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Шрифт"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Отстъпи и разредка"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Текст"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Анимиран текст"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Оразмеряване"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Съединителна линия"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Подравняване"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Азиатска типография"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Табулатори"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Осветяване"
diff --git a/source/bg/sfx2/messages.po b/source/bg/sfx2/messages.po
index f39b178dac7..9e94528de4b 100644
--- a/source/bg/sfx2/messages.po
+++ b/source/bg/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-08 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559599623.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Макросите са забранени поради настройките в „Сигурност на макросите“."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Макросите са подписани, но документът (съдържащ събития на документ) не е подписан."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Показване на макросите"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Показване на настройките за сигурност"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Показване на събитията"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Сива елегантна"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Кошер"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Синя крива"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Чертеж"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Бонбони"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Жълта идея"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНК"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Горска птица"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Свежест"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Вдъхновение"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Светлини"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Растяща свобода"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Метрополис"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Тъмно синьо"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Природна илюстрация"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Молив"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Пиано"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогрес"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Залез"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Старомоден"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Семпъл"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Автобиография"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "По подразбиране"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Съвременен"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Съвременно бизнес писмо, безсерифен шрифт"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Съвременно бизнес писмо, серифен шрифт"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Визитка с лого"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Прост"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Опростен китайски, обикновен"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Японски, обикновен"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Премахване"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Изчистване на всичко"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Дължина на паролата"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Щракнете с %{key} за отваряне на хипервръзката: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Щракнете за отваряне на хипервръзката: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(използва се от: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Документ"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Електронна таблица"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Презентация"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Рисунка"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Последно използвани"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Няма скорошни знаци"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Нулиране на всички подразбирани шаблони"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Нулиране на подразбирания текстов документ"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Нулиране на подразбираната електронна таблица"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Нулиране на подразбираната презентация"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Нулиране на подразбираната рисунка"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Импортиране"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Разширения"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Преименуване"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Преименуване на категория"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Нова категория"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Инспектор на UNO обекти"
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 9fc49a1065e..b1626104059 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-20 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559419310.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Не е възможно да се установи интернет връзка с $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Съобщение за грешка от сървъра: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Съобщение за грешка от сървъра: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Възникна обща грешка при работа с Интернет."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Търсените данни от Интернет не са налице в кеша и не могат да бъдат прехвърлени, тъй като като не е активен режимът Онлайн."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Създаването на съдържание бе невъзможно."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Името на файла е твърде дълго за целевата файлова система."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Входният синтаксис е невалиден."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Моля, запишете документа във файлов формат на %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Достигнат е максималният брой едновременно отворени документи. Трябва да затворите един или повече документи, за да отворите нов."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Не бе възможно да се създаде резервно копие."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Грешна дължина на данните."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Действието е невъзможно: пътят съдържа текущата директория."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Действието е невъзможно: устройствата не са еднакви."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Устройството не е готово."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Неправилна контролна сума."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Действието е невъзможно: защита срещу запис."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Първо деактивирайте споделения режим."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Открита е грешка във формата на файла на позиция $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Филтърът за този файлов формат е забранен в конфигурацията. Моля, свържете се със системния администратор."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Обща грешка на OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Действието не може да бъде изпълнено в текущото състояние на обекта."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Обектът не поддържа никакви действия."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Обектът не поддържа това действие."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) при активиране на обект"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 3e23650e14d..e1b321182d9 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-13 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
"Language: bg\n"
@@ -8111,7 +8111,7 @@ msgstr "Основна латиница"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Латиница-1 – допълнение"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8147,7 +8147,7 @@ msgstr "Диакритични знаци"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Гръцки и коптски"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8747,7 +8747,7 @@ msgstr "Чероки"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Унифицирани срички на канадските аборигени"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9149,7 +9149,7 @@ msgstr "Самаритски"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Разширени унифицирани срички на канадските аборигени"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10001,7 +10001,7 @@ msgstr "Тото"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Разширени унифицирани срички на канадските аборигени-A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10143,134 +10143,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Без кантове"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Само външни кантове"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Външни кантове и хоризонтални линии"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Външни кантове и всички вътрешни линии"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Външни кантове и вертикални линии"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Външни кантове без промяна на вътрешните линии"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Само диагонални линии"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Диагонал надолу"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Диагонал нагоре"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Кръстосани кантове"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Всички четири канта"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Само ляв и десен кант"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Само горен и долен кант"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Горен и долен кант и всички хоризонтални линии"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Само ляв кант"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Само десен кант"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Само горен кант"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Само долен кант"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Горен и долен кант и всички вътрешни линии"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Ляв и десен кант и всички вътрешни линии"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Премахване от „Предпочитани“"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Липсващ знак"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Добавяне в „Предпочитани“"
@@ -10279,19 +10329,19 @@ msgstr "Добавяне в „Предпочитани“"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Проверка на размера на графика"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Изображението „%NAME%“ има твърде малко пиксели за текущия размер (%DPIX% x %DPIY% т./инч)."
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Изображението „%NAME%“ има твърде много пиксели за текущия размер (%DPIX% x %DPIY% т./инч)."
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index c559063cd8b..23babd9e9a2 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-10 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-25 01:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
"Language: bg\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Списък 5 - продълж."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Колонтитули"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,41 +10604,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Таблица"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Форматиране"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Симулирани надписи"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Номерация"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Други"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Щракнете за обновяване..."
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Рамка"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Позиция и размер"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Настройки"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Обтичане"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Кантове"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Област"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Колони"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Макрос"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Връщане на всички промени в показания тук раздел към настройките, които са присъствали при отваряне на диалога."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Общи"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Шрифт"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Позиция"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Азиатски езици"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Осветяване"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Кантове"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Стил за списък"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Наименуване и скриване на потребителски стилове"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Общи"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Избиране на предварително дефиниран тип водещи символи"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Неподреден"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Избиране на предварително дефиниран подреден списък"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Подреден"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Избиране на предварително дефиниран формат на план"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "План"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Избиране на предварително дефиниран графичен водещ символ"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Изображение"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Променяне на отстъпа, разстоянията и подравняването за номерата или символите на списък"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Позиция"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Конструиране на ваш собствен формат за списък или план"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Настройки"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Абзацен стил"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Общи"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Отстъпи и разредка"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Подравняване"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Изливане на текст"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Азиатска типография"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Шрифт"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Ефекти за шрифт"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Позиция"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Азиатски езици"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Осветяване"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Табулатори"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Бити букви"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Област"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Кантове"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Условие"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Задаване на ниво от плана, стил на списък и номериране на редовете за стил на абзац."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "План и списък"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Стил за рамки"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Общи"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Тип"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Настройки"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Обтичане"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Област"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Кантове"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Колони"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Макрос"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Стандартни"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Общи"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Страница"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Област"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Горен колонтитул"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Долен колонтитул"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Кантове"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Колони"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Бележка под линия"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Текстова мрежа"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 17f87bb000e..8cd34bb629b 100644
--- a/source/bn-IN/cui/messages.po
+++ b/source/bn-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bn_IN/>\n"
@@ -2561,10 +2561,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 96dacaefbad..7f28527a67d 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/00.po
+++ b/source/bn-IN/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 932af5359c3..58061218771 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/01.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-15 11:38+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bn_IN/>\n"
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 12203b01dd1..a4369164f44 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn-IN/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index c23bd72e9b4..9a3e4ab7244 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index 6deba88e7ce..b4acbdd8270 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, \"বাম পৃষ্ঠায়\" ডান-ক্লিক করুন এবং <emph>পরিবর্তন</emph> নির্বাচন করুন।"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>সংগঠক</emph> ট্যাবে ক্লিক করুন।"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "আপনি আপনার নথির ভিন্ন্য পৃষ্ঠায় ভিন্ন্য শীর্ষচরণ এবং পাদটীকা ব্যবহার করতে পারেন, যতোক্ষন পৃষ্ঠা ভিন্ন্য পৃষ্ঠা শৈলী ব্যবহার করে। $[officename] কিছু পূর্ব নির্ধারিত পৃষ্ঠা শৈলী প্রদান করে, যেমন <emph>প্রথম পৃষ্ঠা</emph>, <emph>বাম পৃষ্ঠা</emph> এবং <emph>ডান পৃষ্ঠা</emph>, অথবা আপনি একটি পছন্দসই পৃষ্ঠা শৈলী তৈরি করতে পারেন।"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকার \"ডান পৃষ্ঠায\" ডান ক্লিক করুন এবং <emph>পরিবর্তন করুন</emph> পছন্দ করুন।"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">পৃষ্ঠা শৈলী</item> ডায়ালগে, <item type=\"menuitem\">শীর্ষচরণ</item> ট্যাবে ক্লিক করুন।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">শীর্ষচরণ চালু</item> নির্বাচন করুন এবং <item type=\"menuitem\">সংগঠক</item> ট্যাবে ক্লিক করুন।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">পরবর্তী শৈলী</item> বাক্সে, \"বাম পৃষ্ঠা\" নির্বাচন করুন।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">পৃষ্ঠা শৈলী</item> ডায়ালগে, <item type=\"menuitem\">শীর্ষচরণ</item> ট্যাবে ক্লিক করুন।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">শীর্ষচরণ চালু</item> নির্বাচন করুন এবং <item type=\"menuitem\">সংগঠক</item> ট্যাবে ক্লিক করুন।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">পরবর্তী শৈলী</item> বাক্সে, \"ডান পৃষ্ঠা\" নির্বাচন করুন।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, একটি আইটেমে ডান-ক্লিক করুন, এবং এরপর <emph>নতুন</emph>নির্বাচন করুন।"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>সংগঠক</emph> ট্যাব পৃষ্ঠায়, <emph>নাম</emph> বাক্সে পৃষ্ঠা শৈলীর জন্য একটি নাম লিখুন।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>পৃষ্ঠা বিভাজক</emph> নির্বাচন করুন।"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">শৈলী</item> বাক্সে, পৃষ্ঠা পটভূমি ব্যবহারকারী একটি পৃষ্ঠা শৈলী নির্বাচন করুন।"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "যখন পৃষ্ঠা শৈলীর একটি ভিন্ন \"পরবর্তী শৈলী\" থাকে তখন পৃষ্ঠার শেষে একটি <emph>স্বয়ংক্রিয় পৃষ্ঠা বিরতি</emph> আবির্ভূত হয়।"
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "একটি পৃষ্ঠা শৈলীতে ডান ক্লিক করুন এবং <emph>নতুন</emph> নির্বাচন করুন। নতুন পৃষ্ঠা শৈলীটি প্রাথমিক ভাবে নির্বাচিত পৃষ্ঠা শৈলীর সব বৈশিষ্ট্য পায়।"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>সংগঠক</emph> ট্যাব পৃষ্ঠায়,<emph>নাম</emph>বাক্সে পৃষ্ঠা শৈলীর জন্য একটি নাম লিখুন, উদাহরণস্বরূপ \"আমার আকাঁ প্রাকৃতিক দৃশ্য\"।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "এক পৃষ্ঠা দীর্ঘ শৈলী"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "স্বনির্ধারিত ভাবে উল্লেখকৃত পৃষ্ঠা শৈলীর পরিসর"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, একটি আইটেমে ডান-ক্লিক করুন, এবং এরপর <emph>নতুন</emph>নির্বাচন করুন।"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>সংগঠক</emph> ট্যাবে, <emph>নাম</emph> বাক্সে একটি নাম লিখুন।"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 61bddc8cbde..a092b731ce0 100644
--- a/source/bn-IN/sc/messages.po
+++ b/source/bn-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/bn_IN/>\n"
@@ -14537,14 +14537,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14770,14 +14771,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23690,91 +23692,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24375,103 +24377,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "কোন সীমানা নয়"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24510,49 +24415,49 @@ msgid "Format Cells"
msgstr "ঘর বিন্যাস"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "সংখ্যা"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ফন্ট"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ফন্টের আবহ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "পটভূমি"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ঘর সুরক্ষিতকরণ"
@@ -28734,43 +28639,43 @@ msgid "Page Style"
msgstr "পৃষ্ঠার শৈলী"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "পটভূমি"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "শীর্ষচরণ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "পাদচরণ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "শীট"
@@ -28812,55 +28717,55 @@ msgid "Cell Style"
msgstr "ঘরের শৈলী"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "সংখ্যা"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ফন্ট"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "অক্ষরের প্রভাব"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "পটভূমি"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ঘর সুরক্ষিতকরণ"
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 70d887366ef..fbf263ed57d 100644
--- a/source/bn-IN/sd/messages.po
+++ b/source/bn-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/bn_IN/>\n"
@@ -9732,97 +9732,97 @@ msgid "_Standard"
msgstr "মানক (_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "লাইন"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "অঞ্চল"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ছায়াদান"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ফন্ট"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ইন্ডেন্ট এবং ব্যবধান"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "টেক্সট"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "টেক্সট অ্যানিমেশন"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "মাত্রা নির্ধারণ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "সংযোজক"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "সাজানো"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ট্যাব"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/bn-IN/sfx2/messages.po b/source/bn-IN/sfx2/messages.po
index 626359e97d7..63f09f41dbf 100644
--- a/source/bn-IN/sfx2/messages.po
+++ b/source/bn-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/bn_IN/>\n"
@@ -1610,376 +1610,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "মৌচাক"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "নীল কার্ভ"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "ব্লুপ্রিন্ট পরিকল্পনা"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ডিএনএ"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "কেন্দ্রবিন্দু"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "অনুপ্রেরণা"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "আলো"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "মহানগরী"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "মাঝরাতের নিল"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "প্রকৃতি চিত্রণ"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "পেন্সিল"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "পিয়ানো"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "অগ্রগতি"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "সূর্যাস্ত"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "মদ"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "প্রাণবন্ত"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "সিভি"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "জীবনবৃত্তান্ত"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "অাধুনিক"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "আধুনিক ব্যবসা চিঠি সানস-সরিফ"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "আধুনিক ব্যবসা চিঠি serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "লোগো সঙ্গে ব্যবসা কার্ড"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "সরিয়ে ফেলুন"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "সব মুছে ফেলুন"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "পাসওয়ার্ড দৈর্ঘ্য"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/bn-IN/svtools/messages.po b/source/bn-IN/svtools/messages.po
index da902087252..d2b246448ca 100644
--- a/source/bn-IN/svtools/messages.po
+++ b/source/bn-IN/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bn_IN/>\n"
@@ -2392,10 +2392,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) এ নেটওয়ার্ক সংযোগ প্রতিষ্ঠা করা যায়নি।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2403,7 +2411,7 @@ msgstr ""
"সার্ভারের ত্রুটি বার্তা: $(ARG1)।"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2413,37 +2421,37 @@ msgstr ""
"সার্ভারের ত্রুটি বার্তা: $(ARG1)।"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "সাধারণ নেটওয়ার্ক ত্রুটি দেখা দিয়েছে।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ক্যাশেতে অনুরোধকৃত নেটওয়ার্ক ডাটা বিদ্যমান নেই এবং অনলাইন মোড সক্রিয় না থাকায় স্থানান্তর করা যাচ্ছে না।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "বিষয়বস্তু তৈরি করা যাবে না।"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "গন্তব্য ফাইল সিস্টেমের জন্য ফাইলের নামটি খুব লম্বা।"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ইনপুট সিনট্যাক্স অকার্যকর।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2453,19 +2461,19 @@ msgstr ""
"অনুগ্রহ করে নথিটি %PRODUCTNAME %PRODUCTVERSION ফাইল বিন্যাসে সংরক্ষণ করুন।"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "একই সময়ে সর্বোচ্চ যে সংখ্যক নথি খোলা যায়, তা খোলা হয়েছে। একটি নতুন নথি খোলার আগে, আপনাকে এক বা একাধিক নথি বন্ধ করতে হবে।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ব্যাকআপ অনুলিপি তৈরি করা যাবে না।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2485,43 +2493,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "অকার্যকর ডাটা দৈর্ঘ্য।"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ফাংশন সম্ভব নয়: পাথটি বর্তমান ডিরেক্টরি ধারণ করে।"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ফাংশন সম্ভব নয়: ডিভাইস (ড্রাইভ) এক নয়।"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ডিভাইস (ড্রাইভ) প্রস্তুত নয়।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ফাংশন সম্ভব নয়: লিখন সুরক্ষিত।"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2531,47 +2539,47 @@ msgstr ""
"প্রথমে শেয়ার মোড নিষ্ক্রিয় করে নিন।"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "সাধারণ OLE ত্রুটি।"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "অবজেক্টের বর্তমান অবস্থায় এই কাজটি কার্যকর করা যায়নি।"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "অবজেক্টটি কোনো কাজ সমর্থন করে না।"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "অবজেক্ট এই কাজটি সমর্থন করে না।"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index f3737765da8..b476298b220 100644
--- a/source/bn-IN/svx/messages.po
+++ b/source/bn-IN/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -10210,134 +10210,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10346,19 +10396,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 177e245c75f..8de31e65a01 100644
--- a/source/bn-IN/sw/messages.po
+++ b/source/bn-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bn_IN/>\n"
@@ -3048,9 +3048,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10780,38 +10780,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16759,57 +16765,57 @@ msgid "Frame"
msgstr "ফ্রেম"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "অপশন"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "এলাকা"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "কলাম"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -29559,44 +29565,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ফন্ট"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের আবহ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "অবস্থান"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "এশীয় বহির্বিন্যাস"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "সীমানা"
@@ -29608,86 +29614,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "আউটলাইন"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ছবি"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "অবস্থান"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29701,113 +29707,113 @@ msgid "Paragraph Style"
msgstr "(অনুচ্ছেদ শৈলী:"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
#, fuzzy
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ইন্ডেন্ট এবং ব্যবধান"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "লেখা প্রবাহ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ফন্ট"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের আবহ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "অবস্থান"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "এশীয় বহির্বিন্যাস"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ট্যাব"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ড্রপ ক্যাপ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "এলাকা"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "সীমানা"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "শর্ত (~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29820,57 +29826,57 @@ msgid "Frame Style"
msgstr "ফ্রেমের শৈলী"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ধরন"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "অপশন"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "এলাকা"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "সীমানা"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "কলাম"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -29889,62 +29895,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "এলাকা"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "শীর্ষচরণ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "পাদচরণ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "সীমানা"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "কলাম"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "পাদটীকা"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 7ff99baf5d6..e36e3c9ac9e 100644
--- a/source/bn/cui/messages.po
+++ b/source/bn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bn/>\n"
@@ -2587,10 +2587,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 4e4bb068847..11bb34c0b33 100644
--- a/source/bn/helpcontent2/source/text/shared/00.po
+++ b/source/bn/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 7a90622bb5a..c224972a56a 100644
--- a/source/bn/helpcontent2/source/text/shared/01.po
+++ b/source/bn/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 68dc6874f2d..103c9fab44d 100644
--- a/source/bn/helpcontent2/source/text/shared/optionen.po
+++ b/source/bn/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-08 17:29+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index 6c38585ce43..35ef5707060 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 774f2b0b607..b5d66d43d22 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, \"বাম পৃষ্ঠায়\" ডান-ক্লিক করুন এবং <emph>পরিবর্তন</emph> নির্বাচন করুন।"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>সংগঠক</emph> ট্যাবে ক্লিক করুন।"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "আপনি আপনার নথির ভিন্ন্য পৃষ্ঠায় ভিন্ন্য শীর্ষচরণ এবং পাদটীকা ব্যবহার করতে পারেন, যতোক্ষন পৃষ্ঠা ভিন্ন্য পৃষ্ঠা শৈলী ব্যবহার করে। $[officename] কিছু পূর্ব নির্ধারিত পৃষ্ঠা শৈলী প্রদান করে, যেমন <emph>প্রথম পৃষ্ঠা</emph>, <emph>বাম পৃষ্ঠা</emph> এবং <emph>ডান পৃষ্ঠা</emph>, অথবা আপনি একটি পছন্দসই পৃষ্ঠা শৈলী তৈরি করতে পারেন।"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকার \"ডান পৃষ্ঠায\" ডান ক্লিক করুন এবং <emph>পরিবর্তন করুন</emph> পছন্দ করুন।"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">পৃষ্ঠা শৈলী</item> ডায়ালগে, <item type=\"menuitem\">শীর্ষচরণ</item> ট্যাবে ক্লিক করুন।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">শীর্ষচরণ চালু</item> নির্বাচন করুন এবং <item type=\"menuitem\">সংগঠক</item> ট্যাবে ক্লিক করুন।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">পরবর্তী শৈলী</item> বাক্সে, \"বাম পৃষ্ঠা\" নির্বাচন করুন।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">পৃষ্ঠা শৈলী</item> ডায়ালগে, <item type=\"menuitem\">শীর্ষচরণ</item> ট্যাবে ক্লিক করুন।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">শীর্ষচরণ চালু</item> নির্বাচন করুন এবং <item type=\"menuitem\">সংগঠক</item> ট্যাবে ক্লিক করুন।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">পরবর্তী শৈলী</item> বাক্সে, \"ডান পৃষ্ঠা\" নির্বাচন করুন।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, একটি আইটেমে ডান-ক্লিক করুন, এবং এরপর <emph>নতুন</emph>নির্বাচন করুন।"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>সংগঠক</emph> ট্যাব পৃষ্ঠায়, <emph>নাম</emph> বাক্সে পৃষ্ঠা শৈলীর জন্য একটি নাম লিখুন।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>পৃষ্ঠা বিভাজক</emph> নির্বাচন করুন।"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">শৈলী</item> বাক্সে, পৃষ্ঠা পটভূমি ব্যবহারকারী একটি পৃষ্ঠা শৈলী নির্বাচন করুন।"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "যখন পৃষ্ঠা শৈলীর একটি ভিন্ন \"পরবর্তী শৈলী\" থাকে তখন পৃষ্ঠার শেষে একটি <emph>স্বয়ংক্রিয় পৃষ্ঠা বিরতি</emph> আবির্ভূত হয়।"
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "একটি পৃষ্ঠা শৈলীতে ডান ক্লিক করুন এবং <emph>নতুন</emph> নির্বাচন করুন। নতুন পৃষ্ঠা শৈলীটি প্রাথমিক ভাবে নির্বাচিত পৃষ্ঠা শৈলীর সব বৈশিষ্ট্য পায়।"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>সংগঠক</emph> ট্যাব পৃষ্ঠায়,<emph>নাম</emph>বাক্সে পৃষ্ঠা শৈলীর জন্য একটি নাম লিখুন, উদাহরণস্বরূপ \"আমার আকাঁ প্রাকৃতিক দৃশ্য\"।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "এক পৃষ্ঠা দীর্ঘ শৈলী"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "স্বনির্ধারিত ভাবে উল্লেখকৃত পৃষ্ঠা শৈলীর পরিসর"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "পৃষ্ঠা শৈলীর তালিকায়, একটি আইটেমে ডান-ক্লিক করুন, এবং এরপর <emph>নতুন</emph>নির্বাচন করুন।"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>সংগঠক</emph> ট্যাবে, <emph>নাম</emph> বাক্সে একটি নাম লিখুন।"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index cecd19f5e88..f1d76d57757 100644
--- a/source/bn/sc/messages.po
+++ b/source/bn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14602,14 +14602,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14835,14 +14836,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23792,91 +23794,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24496,103 +24498,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "কোন সীমানা নয়"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24632,51 +24537,51 @@ msgid "Format Cells"
msgstr "ঘর বিন্যাস"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "নম্বর"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ফন্ট"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "পটভূমি"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28909,44 +28814,44 @@ msgid "Page Style"
msgstr "পৃষ্ঠা শৈলী"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "পটভূমি"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "শীর্ষচরণ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "পাদচরণ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "শীট"
@@ -28990,57 +28895,57 @@ msgid "Cell Style"
msgstr "ঘরের শৈলী"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "নম্বর"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ফন্ট"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "পটভূমি"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index 3b5b8528e53..bbeb0e0827f 100644
--- a/source/bn/sd/messages.po
+++ b/source/bn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9834,99 +9834,99 @@ msgid "_Standard"
msgstr "আদর্শ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "লাইন"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "এলাকা"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ছায়াকরণ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ফন্ট"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "টেক্সট"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "লেখা অ্যানিমেশন"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "মাত্রা রেখা"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "সংযোগকারী"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/bn/sfx2/messages.po b/source/bn/sfx2/messages.po
index 010312cc6ab..69e63de9969 100644
--- a/source/bn/sfx2/messages.po
+++ b/source/bn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1616,376 +1616,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "অপসারণ করুন"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/bn/svtools/messages.po b/source/bn/svtools/messages.po
index b6e265f7211..f93b3841023 100644
--- a/source/bn/svtools/messages.po
+++ b/source/bn/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2396,10 +2396,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) এ নেটওয়ার্ক সংযোগ প্রতিষ্ঠা করা যায়নি।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2407,7 +2415,7 @@ msgstr ""
"সার্ভারের ত্রুটি বার্তা: $(ARG1)।"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgstr ""
"সার্ভারের ত্রুটি বার্তা: $(ARG1)।"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "সাধারণ নেটওয়ার্ক ত্রুটি দেখা দিয়েছে।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ক্যাশেতে অনুরোধকৃত নেটওয়ার্ক ডাটা বিদ্যমান নেই এবং অনলাইন মোড সক্রিয় না থাকায় স্থানান্তর করা যাচ্ছে না।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "বিষয়বস্তু তৈরি করা যাবে না।"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "গন্তব্য ফাইল সিস্টেমের জন্য ফাইলের নামটি খুব লম্বা।"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ইনপুট সিনট্যাক্স অকার্যকর।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"অনুগ্রহ করে নথিটি %PRODUCTNAME %PRODUCTVERSION ফাইল বিন্যাসে সংরক্ষণ করুন।"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "একই সময়ে সর্বোচ্চ যে সংখ্যক নথি খোলা যায়, তা খোলা হয়েছে। একটি নতুন নথি খোলার আগে, আপনাকে এক বা একাধিক নথি বন্ধ করতে হবে।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ব্যাকআপ অনুলিপি তৈরি করা যাবে না।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "অকার্যকর ডাটা দৈর্ঘ্য।"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ফাংশন সম্ভব নয়: পাথটি বর্তমান ডিরেক্টরি ধারণ করে।"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ফাংশন সম্ভব নয়: ডিভাইস (ড্রাইভ) এক নয়।"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ডিভাইস (ড্রাইভ) প্রস্তুত নয়।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ফাংশন সম্ভব নয়: লিখন সুরক্ষিত।"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"প্রথমে শেয়ার মোড নিষ্ক্রিয় করে নিন।"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "সাধারণ OLE ত্রুটি।"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "অবজেক্টের বর্তমান অবস্থায় এই কাজটি কার্যকর করা যায়নি।"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "অবজেক্টটি কোনো কাজ সমর্থন করে না।"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "অবজেক্ট এই কাজটি সমর্থন করে না।"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index eca02e17e22..414a58ec66e 100644
--- a/source/bn/svx/messages.po
+++ b/source/bn/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn/>\n"
@@ -10237,134 +10237,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10373,19 +10423,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 14edb78ee41..69fe882c5d4 100644
--- a/source/bn/sw/messages.po
+++ b/source/bn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3079,9 +3079,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10842,38 +10842,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16906,56 +16912,56 @@ msgid "Frame"
msgstr "ফ্রেম"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "অপশন"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "এলাকা"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "কলাম"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -29813,45 +29819,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ফন্ট"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "অবস্থান"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "এশীয় বহির্বিন্যাস"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "সীমানা"
@@ -29863,86 +29869,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "সীমারেখা"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "চিত্র"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "অবস্থান"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29955,113 +29961,113 @@ msgid "Paragraph Style"
msgstr "(অনুচ্ছেদ শৈলী:"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "এশীয় মুদ্রণশৈলী"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ফন্ট"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ফন্টের প্রভাব"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "অবস্থান"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "এশীয় বহির্বিন্যাস"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ট্যাব"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ড্রপ ক্যাপ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "এলাকা"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "সীমানা"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "শর্ত (~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30074,56 +30080,56 @@ msgid "Frame Style"
msgstr "ফ্রেমের শৈলী"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ধরন"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "অপশন"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "এলাকা"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "সীমানা"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "কলাম"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -30142,61 +30148,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "পৃষ্ঠা"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "এলাকা"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "শীর্ষচরণ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "পাদচরণ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "সীমানা"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "কলাম"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "পাদটীকা"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index d1be5a2f323..6604fc19fa6 100644
--- a/source/bo/cui/messages.po
+++ b/source/bo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bo/>\n"
@@ -2586,10 +2586,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index f596e0c3dd7..663e5e3abbb 100644
--- a/source/bo/helpcontent2/source/text/shared/00.po
+++ b/source/bo/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index a3837a6f1fd..afbf1f99b95 100644
--- a/source/bo/helpcontent2/source/text/shared/01.po
+++ b/source/bo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 2c307fb2c93..c34b31f71a0 100644
--- a/source/bo/helpcontent2/source/text/shared/optionen.po
+++ b/source/bo/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index 89e4ef6da82..f705ac61bf9 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 6a5dc7cb75c..8d7660dec5d 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "\"ཤོག་ངོས་བཟོ་ལྟའི་\"རེའུ་འགོད་ནང་གི་\"ཤོག་གྲངས་ཆའི་\"སྟེང་ཙིག་རྟགས་གཡས་མཐེབ་ཀྱིས་རྐྱང་རྡེབ་བྱས་རྗེས་<emph>[བཟོ་བཅོས་...]</emph>འདེམས།"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>\"དོ་དམ་\"</emph>འདེམས་གཞིར་རྐྱང་རྡེབ་བྱ།"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "ཡིག་ཚགས་ནང་གི་ཤོག་ངོས་མི་མཚུངས་པར་ཤོག་ངོས་བཟོ་ལྟ་མི་མཚུངས་པ་ཉེར་སྤྱོད་བྱེད་ ཤོག་ངོས་འདི་རྣམས་ནང་ཤོག་སྨིན་དང་ཤོག་ཞབས་མི་འདྲ་བ་སྤྱོད། $[officename] སྔོན་འགྲིག་གི་ཤོག་ངོས་བཟོ་ལྟ་མི་འདྲ་བ་མཁོ་འདོན་བྱེད་ དཔེར་ན་<emph>འགོ་ཤོག་</emph><emph>གཡོན་ཤོག་</emph>དང་<emph>གཡས་ཤོག་</emph> དེ་མིན་ ད་དུང་རང་མཚན་འཇོག་གི་ཤོག་ངོས་བཟོ་ལྟ་གསར་འཛུགས་བྱ་ཆོག"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "རེའུ་འགོད་ནང་གི་\"གཡས་ཤོག་\"སྟེང་ཙིག་རྟགས་གཡས་མཐེབ་ཀྱིས་རྐྱང་རྡེབ་བྱས་རྗེས་<emph>བཟོ་བཅོས་</emph>འདེམས་དགོས།"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ཤོག་ངོས་བཟོ་ལྟའི་རེའུ་འགོད་ནང་གཡས་མཐེབ་ཀྱིས་དེའི་ནང་གི་རྣམ་གྲངས་གཅིག་བདམས་རྗེས་ <emph>གསར་འཛུགས་</emph>འདེམས་དགོས།"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>དོ་དམ་ཆས་</emph>འདེམས་གཞི་ཁཱ་ཤོག་ངོས་ནང་གི་<emph>མིང་</emph>སྒྲོམ་ནང་ཤོག་ངོས་བཟོ་ལྟའི་མིང་ནང་འཇུག་བྱ།"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>ཤོག་ལྷེ་བརྗེ་</emph>འདེམས་དགོས།"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "ཙིག་རྟགས་གཡས་མཐེབ་ལ་རྐྱང་རྡེབ་བྱེད་པ་དང་ <emph>གསར་འཛུགས་</emph>འདེམས་དགོས།"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>དོ་དམ་ཆས་</emph>འདེམས་གཞི་ཁཱ་ཤོག་ངོས་ནང་<emph>མིང་</emph>སྒྲོམ་ནང་ཤོག་ངོས་བཟོ་ལྟ་འདེམས་དགོས།"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ཤོག་ངོས་བཟོ་ལྟའི་རེའུ་འགོད་ནང་གཡས་མཐེབ་ཀྱིས་དེའི་ནང་གི་རྣམ་གྲངས་གཅིག་བདམས་རྗེས་ <emph>གསར་འཛུགས་</emph>འདེམས་དགོས།"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>དོ་དམ་ཆས་</emph>འདེམས་གཞི་ཁཱ་སྟེང་གི་<emph>མིང་</emph>སྒྲོམ་ནང་མིང་ནང་འཇུག་བྱེད།"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 81ea8ce35d2..c37f0bb5288 100644
--- a/source/bo/sc/messages.po
+++ b/source/bo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14693,14 +14693,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14927,14 +14928,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23894,91 +23896,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24598,103 +24600,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "མཐའ་སྒྲོམ་མེད་པ།"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24734,52 +24639,52 @@ msgid "Format Cells"
msgstr "སྡེ་ཚན་ཁྲ་མིག་གི་རྣམ་གཞག"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "number"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཡག་ཉེས།"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "སྙོམ་སྒྲིག"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -29007,44 +28912,44 @@ msgid "Page Style"
msgstr "ཤོག་ངོས་བཟོ་ལྟ།"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ཤོག་ལྷེ།"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ཤོག་སྨིན།"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ཤོག་ཞབས།"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ལས་ཀའི་རེའུ་མིག"
@@ -29089,58 +28994,58 @@ msgid "Cell Style"
msgstr "སྡེ་ཚན་ཁྲ་མིག་གི་བཟོ་ལྟ།"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "number"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཡག་ཉེས།"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "སྙོམ་སྒྲིག"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index 66bdd46c0c7..df5f6fd27da 100644
--- a/source/bo/sd/messages.po
+++ b/source/bo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9847,102 +9847,102 @@ msgid "_Standard"
msgstr "ཚད་གཞི།"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ཐིག་རིས།"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "གསལ་བ།"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཡག་ཉེས།"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ཡི་གེ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "འགུལ་སྐྱོད་ཡི་གེ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "བཅད་གྲངས་ཐིག"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "འབྲེལ་མཐུད།"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "སྙོམ་སྒྲིག"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/bo/sfx2/messages.po b/source/bo/sfx2/messages.po
index 6d30889fef1..cd99183463e 100644
--- a/source/bo/sfx2/messages.po
+++ b/source/bo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1617,376 +1617,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "བསུབ་པ།"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/bo/svtools/messages.po b/source/bo/svtools/messages.po
index 6850c54827d..1cd20dbecf7 100644
--- a/source/bo/svtools/messages.po
+++ b/source/bo/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2401,16 +2401,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2418,37 +2426,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ནང་དོན་ཆགས་གྲུབ་བྱ་ཐབས་མེད།"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ཡིག་ཆའི་མིང་འདིའི་རིང་ཚད་ནི་དམིགས་ཡུལ་ཡིག་ཆའི་མ་ལག་དང་མི་འཕྲོད།"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "བསྒར་འཛུད་བྱས་པའི་བརྡ་སྤྱོད་ནོར་འདུག"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2458,19 +2466,19 @@ msgstr ""
"ཡིག་ཚགས་ %PRODUCTNAME 6.0 རྣམ་གཞག་ནང་ཡིག་ཚགས་ཉར་ཡོད།"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "དུས་མཉམ་དུ་ཡིག་ཚགས་ཁ་འབྱེད་པའི་གྲངས་ཆེ་ཤོས་སླེབས་ཡོད། ཡིག་ཚགས་གསར་པ་ཁ་མ་ཕྱེ་བའི་སྔོན་དུ་ཡིག་ཚགས་གཅིག་གམ་མང་པོ་ཁ་རྒྱག་དགོས།"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "གྲབས་ཉར་འདྲ་དེབ་གསར་བཟོ་བྱེད་ཐབས་བྲལ།"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2483,43 +2491,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ཕན་མེད་ཀྱི་གཞི་གྲངས་རིང་ཚད།"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "རྟེན་གྲངས་ལག་ཏུ་བསྟར་ཐབས་མེད། བརྒྱུད་ལམ་ལ་མིག་སྔའི་དཀར་ཆག་འདུས་ཡོད།"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "རྟེན་གྲངས་ལག་བསྟར་བྱ་ཐབས་མེད། སྒྲིག་ཆས་གཅིག་པ་མིན།(སྒུལ་འདེང་ཆས།)"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "སྒྲིག་ཆས་(སྒུལ་འདེད་སྡེར་)ད་དུང་གྲ་སྒྲིག་ཚར་མེད།"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "རྟེན་གྲངས་ལག་བསྟར་བྱ་ཐབས་མེད། སྲུང་སྐྱོབ་བྲིས་ཚར།"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2527,47 +2535,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "སྤྱིར་བཏང་གི་ OLE ནོར་འཁྲུལ།"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ད་ལྟའི་གནས་སྟངས་འོག་བྱ་ཡུལ་གྱིས་བཀོལ་སྤྱོད་འདི་བྱ་ཐབས་མི་འདུག"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "བྱ་ཡུལ་འདིས་བཀོལ་སྤྱོད་གང་ལའང་རྒྱབ་སྐྱོར་མི་བྱེད།"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "བྱ་ཡུལ་འདིས་བཀོལ་སྤྱོད་འདི་ལ་རྒྱབ་སྐྱོར་མི་བྱེད།"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 45f2b343455..7a6a23f2347 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10263,134 +10263,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10399,19 +10449,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index 5974384cf33..6dc6de19972 100644
--- a/source/bo/sw/messages.po
+++ b/source/bo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3083,9 +3083,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10850,38 +10850,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16913,59 +16919,59 @@ msgid "Frame"
msgstr "སྒྲོམ།"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "གདམ་ཚན།"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "གདུབ་འཁོར།(~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "རིམ་འདས་སྦྲེལ་མཐུད།"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
#, fuzzy
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ཚང་།"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29829,45 +29835,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཡག་ཉེས།"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "གནས་ས།"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ཕྲེང་ཟུང་གཅིག་སྒྲིལ།"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ཡིག་རྟགས་ཀྱི་རྒྱབ་ལྗོངས།"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
@@ -29879,86 +29885,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ཡིག་གཟུགས་ཀྱི་སྤྱི་ཁོག"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "བཪྙན་རིས།"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "གནས་ས།"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29971,114 +29977,114 @@ msgid "Paragraph Style"
msgstr "(དུམ་མཚམས་བཟོ་ལྟ་): "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "སྙོམ་གཤིབ།"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཡག་ཉེས།"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "གནས་ས།"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ཕྲེང་ཟུང་གཅིག་སྒྲིལ།"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ཡིག་རྟགས་ཀྱི་རྒྱབ་ལྗོངས།"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "རེའུ་འགོད་རྟགས།"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ཡིག་མགོ་ཆེན་པོ་བྲིས་པ།"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "ཆ་རྐྱེན།(~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30091,59 +30097,59 @@ msgid "Frame Style"
msgstr "སྒྲོམ་གྱི་བཟོ་ལྟ།"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "རིགས།"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "གདམ་ཚན།"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "གདུབ་འཁོར།(~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
#, fuzzy
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ཚང་།"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -30163,64 +30169,64 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
#, fuzzy
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ཤོག་ལྷེ།"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ཁ་སྐོང་།"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ཤོག་མགོ་"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ཤོག་ཞབས།"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "མཐའ་སྒྲོམ།"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
#, fuzzy
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ཚང་།"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ཞབས་མཆན།"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index c537dc90d23..a82344f9d69 100644
--- a/source/br/cui/messages.po
+++ b/source/br/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2564,10 +2564,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index a4d3ca5c51e..9eedcef68ad 100644
--- a/source/br/sc/messages.po
+++ b/source/br/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14500,14 +14500,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14733,14 +14734,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23589,91 +23591,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24273,104 +24275,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Riblenn ebet"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Trolinenn - Riblennoù"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24408,49 +24312,49 @@ msgid "Format Cells"
msgstr "Mentrezh ar c'helligoù"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Niveroù"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Nodrezh"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efedoù arouezennoù"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Steudadur"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Lizherennerezh aziat"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Riblennoù"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Drekleur"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Gwarezadur ar c'hellig"
@@ -28615,43 +28519,43 @@ msgid "Page Style"
msgstr "Stil ar bajenn"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pajenn"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Riblennoù"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Drekleur"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Reollin"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Troad pajenn"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Follenn"
@@ -28693,55 +28597,55 @@ msgid "Cell Style"
msgstr "Stil kellig"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Niveroù"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Nodrezh"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efedoù arouezennoù"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Steudadur"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Lizherennerezh aziat"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Riblennoù"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Drekleur"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Gwarezadur ar c'hellig"
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index 4f94430cd9a..ec5b68e8a42 100644
--- a/source/br/sd/messages.po
+++ b/source/br/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9688,97 +9688,97 @@ msgid "_Standard"
msgstr "_Skoueriek"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linenn"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Maez"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skeud"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Boullder"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Nodrezh"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efedoù nodrezh"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Pukadoù & Esaouiñ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Testenn"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Testenn fiñv"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Mentadur"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Kennasker"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Desteudañ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Arouezerezh aziat"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Taolennata"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Usskediñ"
diff --git a/source/br/sfx2/messages.po b/source/br/sfx2/messages.po
index 152777c51ba..ad5f7c16c34 100644
--- a/source/br/sfx2/messages.po
+++ b/source/br/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1617,377 +1617,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Dilemel"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/br/svtools/messages.po b/source/br/svtools/messages.po
index 8b529839661..0cb8a20940c 100644
--- a/source/br/svtools/messages.po
+++ b/source/br/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2392,10 +2392,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "N'haller ket savelañ ar c'hennaskañ rouedad ouzh $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2403,7 +2411,7 @@ msgstr ""
"Kemennadenn fazi an dafariad : $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2413,37 +2421,37 @@ msgstr ""
"Kemennadenn fazi an dafariad : $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "C'hoarvezet ez eus bet ur fazi hollek gant Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "N'eo ket hegerz roadennoù ar rouedad er grubuilh ha n'hallont ket bezañ treuzkaset rak n'eo ket bet deraouekaet ar mod enlinenn."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "N'haller ket krouiñ an endalc'had."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Re hir eo an anv restr evit ar reizhiad restroù bukenn."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Didalvoudek eo kevreadur an enankañ."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2453,19 +2461,19 @@ msgstr ""
"Enrollit an teul en ur mentrezh restr mod %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Digoret ho peus an niver uhelañ a zeulioù ez eus tu da zigeriñ war un taol. Dav eo deoc'h serriñ un teul pe muioc'h a-raok ma vo tu da zigeriñ un teul nevez."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Krouidigezh an eiladenn warediñ dibosupl."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2485,43 +2493,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Hirder ar roadennoù didalvoudek."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Arc'hwel dibosubl : an treug a zo enno ar c'havlec'hiad bremanel."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Arc'hwel dibosubl : trobarzhell (lenner) disheñvel."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "An drobarzhell (lenner) n'eo ket prest."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Arc'hwel dibosubl : gwarezet a-enep ar skrivañ."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2531,47 +2539,47 @@ msgstr ""
"Diwiredekait ar mod rannañ da gentañ."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Fazi hollek mod OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Stad bremanel an ergorenn ne ro ket tu da erounit ar gwered-mañ."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "An ergorenn-mañ ne skor gwered ebet."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Ne skor ket an ergorenn-se ar rizh gwered-mañ."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index 5943bc82bdf..715967207b2 100644
--- a/source/br/svx/messages.po
+++ b/source/br/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Breton <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/br/>\n"
@@ -10175,134 +10175,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10311,19 +10361,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index a2292bf13c3..0bde9808eb4 100644
--- a/source/br/sw/messages.po
+++ b/source/br/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3064,9 +3064,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10691,38 +10691,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16528,55 +16534,55 @@ msgid "Frame"
msgstr "Stern"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Dibarzhioù"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Azasaat"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Gourere"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Riblennoù"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Maez"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Boullder"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Bannoù"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -29082,43 +29088,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Nodrezh"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efedoù arouezennoù"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Lec'hiadur"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Pajennaozañ aziat"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Usskediñ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Riblennoù"
@@ -29130,85 +29136,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Steuñv"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Skeudenn"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Lec'hiadur"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personelaat"
@@ -29220,109 +29226,109 @@ msgid "Paragraph Style"
msgstr "Stil ar rannbennad"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Pukañ hag esaouiñ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Steudadur"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Gwidennadurioù"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Lizherennerezh aziat"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Nodrezh"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efedoù arouezennoù"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Lec'hiadur"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Pajennaozañ aziat"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Usskediñ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Taolennata"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Pennletrennoù"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Maez"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Boullder"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Riblennoù"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Diferadenn"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29334,55 +29340,55 @@ msgid "Frame Style"
msgstr "Stil stern"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Rizh"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Dibarzhioù"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Azasaat"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Maez"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Boullder"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Riblennoù"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Bannoù"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29400,61 +29406,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pajenn"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Maez"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Boullder"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Reollin"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Troad bajenn"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Riblennoù"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Bannoù"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Notenn traoñ pajenn"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Kael an destenn"
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 7006311e80f..586658f3c68 100644
--- a/source/brx/cui/messages.po
+++ b/source/brx/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2582,10 +2582,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index af6b4a84149..4aedf62afe0 100644
--- a/source/brx/sc/messages.po
+++ b/source/brx/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14563,14 +14563,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14796,14 +14797,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23730,91 +23732,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24434,103 +24436,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "सिमना गैया"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24570,51 +24475,51 @@ msgid "Format Cells"
msgstr "दाथाय खथासा"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "अनजिमा"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फन्ट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फन्ट जाउनफोर"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "सावगारिनि उनथि थानाय"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28840,45 +28745,45 @@ msgid "Page Style"
msgstr "बिखं आदब"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "बिखंफोर"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "सावगारिनि उनथि थानाय"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "हेडार"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "फुटार"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "शिट"
@@ -28922,57 +28827,57 @@ msgid "Cell Style"
msgstr "खथासा आदबफोर"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "अनजिमा"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फन्ट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फन्ट जाउनफोर"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "सावगारिनि उनथि थानाय"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index 619bd8aa1b3..6fc9e4796eb 100644
--- a/source/brx/sd/messages.po
+++ b/source/brx/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9837,100 +9837,100 @@ msgid "_Standard"
msgstr "थाखो मान"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "सारि"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ओनसोल"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "सायख्लुम होगासिनो दङ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "गोजों"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फन्ट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फन्ट जाउनफोर"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "फराय बिजाब"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "फराय बिजाब जिवगोनां"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "बिबांनि हांखो(लारि)"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "फोनांजाबग्रा"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/brx/sfx2/messages.po b/source/brx/sfx2/messages.po
index e72b3001cc2..b1c75b80993 100644
--- a/source/brx/sfx2/messages.po
+++ b/source/brx/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1606,376 +1606,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "गैया खालाम"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/brx/svtools/messages.po b/source/brx/svtools/messages.po
index 1aa1003a831..99aad3d42e1 100644
--- a/source/brx/svtools/messages.po
+++ b/source/brx/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2399,16 +2399,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2416,37 +2424,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "आयदाफोरखौ सोरजिनो हायाखै।"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "थांखि फाइल सिस्टेमनि थाखाय फाइल मुङा जोबोद गोलाव।"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "इनपुट सिनटेक्सआ बाहाय जाथाव नङा।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2456,19 +2464,19 @@ msgstr ""
" अननानै फोरमान बिलाइखौ %PRODUCTNAME %PRODUCTVERSION फाइल दाथायाव थिना दोन।"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "एखे समाव खेवनाय फोरमान बिलाइ एकाच वेळी उघडायचे असलेल्या दस्तऐवजांच्या कमाल संख्येपर्यंत पोचलो आहे. नवीन दस्तऐवज उघडायच्या आधी आपणास एक किंवा अनेक दस्तऐवज बंद करावे लागतील."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2481,43 +2489,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "बाहाय जाथाव नङै डाटानि गोलावथि"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "खामानिआ मावनो हाया: लामाआव बोहैथि डिरेक्टरि दङ।"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "खामानिआ मावनो हाया: खायदा(ड्राइभ) आ रोखोमसे नङा।"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "खायदा(ड्राइभ) आ थियारि नङा।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "खामानिआ मावनो हाया: लिरनाय निफ्राय रैखाथि"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2525,47 +2533,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सरासनस्रा OLE गोरोनथि"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "खामानिखौ बेसादनि बोहैथि थासारिआव खामानिआव बाहायनो हाया।"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "बेसादआ जेबो खामानिखौ मदद होया।"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "बेसादआ बे खामानिखौ मदद होया।"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index 5eab07a1465..53d1dbccc62 100644
--- a/source/brx/svx/messages.po
+++ b/source/brx/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bodo <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/brx/>\n"
@@ -10274,134 +10274,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10410,19 +10460,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index f1e63c88d3f..be1ec3a8644 100644
--- a/source/brx/sw/messages.po
+++ b/source/brx/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3080,9 +3080,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10843,38 +10843,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16896,57 +16902,57 @@ msgid "Frame"
msgstr "फ्रेम"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "उफ्राफोर"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~खोबसिननाय"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपारलिंक"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ओनसोल"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "गोजों"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "खाम्फाफोर"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मेक्र'"
@@ -29788,45 +29794,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फन्ट"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फन्ट जाउनफोर"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "थासारि"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एशियान लेआउट"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "गोजोंङै दिनथिबाय थानाय"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "सिमनाफोर"
@@ -29838,86 +29844,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "सिमा सारि"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "मुसुखा"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "थासारि"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29930,113 +29936,113 @@ msgid "Paragraph Style"
msgstr "(आन्थोर आदब: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फन्ट"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फन्ट जाउनफोर"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "थासारि"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एशियान लेआउट"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "गोजोंङै दिनथिबाय थानाय"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टेबफोर"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "गेदेर हांखो नागार"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ओनसोल"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "गोजों"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "थासारि"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30049,57 +30055,57 @@ msgid "Frame Style"
msgstr "फ्रेम आदब"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "रोखोम"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "उफ्राफोर"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~खोबसिननाय"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ओनसोल"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "गोजों"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "खाम्फाफोर"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मेक्र'"
@@ -30118,62 +30124,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "बिखं"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ओनसोल"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "गोजों"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "हेडार"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "फुटार"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "सिमनाफोर"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "खाम्फाफोर"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "आफांनि सिन"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index e976cbb8f3f..45abc70a1b6 100644
--- a/source/bs/cui/messages.po
+++ b/source/bs/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2572,10 +2572,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 2857b55fc59..6e596bf0627 100644
--- a/source/bs/helpcontent2/source/text/shared/00.po
+++ b/source/bs/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-12 13:30+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bosnian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/bs/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index f66229aa4e9..6a30309f1d9 100644
--- a/source/bs/helpcontent2/source/text/shared/01.po
+++ b/source/bs/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-30 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bosnian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bs/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organiziraj"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040200.xhp\">Strana</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index a29f6c03dea..2b5a95dfed0 100644
--- a/source/bs/helpcontent2/source/text/shared/optionen.po
+++ b/source/bs/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/bs/helpcontent2/source/text/swriter/01.po b/source/bs/helpcontent2/source/text/swriter/01.po
index 39fe7839e59..8d74c11a51a 100644
--- a/source/bs/helpcontent2/source/text/swriter/01.po
+++ b/source/bs/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/bs/helpcontent2/source/text/swriter/guide.po b/source/bs/helpcontent2/source/text/swriter/guide.po
index 79378617304..8bd1aa78ac1 100644
--- a/source/bs/helpcontent2/source/text/swriter/guide.po
+++ b/source/bs/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-04-10 13:33+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bosnian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/bs/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Na popisu stilova stranice, kliknite desnom tipkom miša \"lijeva stranica\" i izaberite <emph>Izmijeni</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Kliknite <emph>Organizator</emph> karticu."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na popisu stilova stranice, desnom tipkom miša pritisnite \"Desna stranica\" i izaberite <emph>Izmijeni</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na popisu stilova stranice, desnom tipkom miša pritisnite \"Desna stranica\" i izaberite <emph>Izmijeni</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index c2a27f12420..b21a97bbe64 100644
--- a/source/bs/sc/messages.po
+++ b/source/bs/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14494,14 +14494,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14728,14 +14729,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23660,91 +23662,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24357,104 +24359,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Bez okvira"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Obris - Okviri"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24493,49 +24397,49 @@ msgid "Format Cells"
msgstr "Formatiraj ćelije"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Brojevi"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efekti fonta"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Rubovi"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Pozadina"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Zaštita ćelije"
@@ -28754,43 +28658,43 @@ msgid "Page Style"
msgstr "Stil stranice"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Stranica"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Rubovi"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Pozadina"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Zaglavlje"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Fusnota"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Stranica"
@@ -28834,55 +28738,55 @@ msgid "Cell Style"
msgstr "Izgled ćelije"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Brojevi"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efekti fonta"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Rubovi"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Pozadina"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Zaštita ćelije"
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index 821bafa0f3d..7410f043ac8 100644
--- a/source/bs/sd/messages.po
+++ b/source/bs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9787,98 +9787,98 @@ msgid "_Standard"
msgstr "_Standardno"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Područje"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sjenčenje"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparentnost"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efekt fonta"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Uvlačenje i razmaci"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animacija teksta"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Razmjere"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Povezivač"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatori"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/bs/sfx2/messages.po b/source/bs/sfx2/messages.po
index 4bd3592f460..658ae1c9072 100644
--- a/source/bs/sfx2/messages.po
+++ b/source/bs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1619,377 +1619,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/bs/svtools/messages.po b/source/bs/svtools/messages.po
index e4f2ff320e4..ab6ff0bedae 100644
--- a/source/bs/svtools/messages.po
+++ b/source/bs/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2396,10 +2396,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nemoguće uspostaviti Internet konekciju za $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2407,7 +2415,7 @@ msgstr ""
"Server poruka greške: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgstr ""
"Server poruka greške: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Opća internetska greška otkrivena."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Traženi internetski podatak nije dostupan u cache memoriji i ne moze biti premješten kako Online modulacija ne mora biti aktivirana."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Sadržaj se nije mogao napraviti."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Ime datoteke je predugo za odredišni datotečni sistem."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Ulazna sintaksa nije ispravna."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"Snimite dokument u %PRODUCTNAME %PRODUCTVERSION formatu datoteke."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Dostignut je maksimum otvorenih dokumenata. Trebate zatvoriti jedan ili više dokumenata da otvorite novi."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nije napravljena rezervna kopija."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Neispravna dužina podatka."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija nije moguća: put sadrži trenutni direktorij."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija nije moguća: uređaj (pogonska jedinica) nije isti."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Uređaj (pogon) nije spreman."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija nije moguća: zaštita pisanja."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"Isključi modulaciju dijeljenja prvo."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Opšta OLE greška."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Akcija ne može biti izvršena u trenutnom stanju objekta."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekat ne podržava nijednu radnju."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekat ne podržava ovu radnju."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index ad9d1f8168d..f57708756e7 100644
--- a/source/bs/svx/messages.po
+++ b/source/bs/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10228,134 +10228,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10364,19 +10414,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index 14c9a9ccf79..ad5c046df70 100644
--- a/source/bs/sw/messages.po
+++ b/source/bs/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3062,9 +3062,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10834,38 +10834,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16740,57 +16746,57 @@ msgid "Frame"
msgstr "Okvir"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Postavke"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Umotavanje"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiper-link"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Rubovi"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "Površina"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolone"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -29472,44 +29478,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efekti fonta"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Pozicija"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Azijski raspored"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Isticanje"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Rubovi"
@@ -29521,85 +29527,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Kontura"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Slika"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Pozicija"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Prilagodi"
@@ -29611,112 +29617,112 @@ msgid "Paragraph Style"
msgstr "Stil odlomka"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Uvlačenje i razmaci"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Protok teksta"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efekti fonta"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Pozicija"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Azijski raspored"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Isticanje"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatori"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Uvećana početna slova"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Površina"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Rubovi"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Uslov"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29728,57 +29734,57 @@ msgid "Frame Style"
msgstr "Stil okvira"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Vrsta"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Postavke"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Omotavanje"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Površina"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Rubovi"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolone"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29796,63 +29802,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Strana"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Površina"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Zaglavlje"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Podnožje"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Rubovi"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolone"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fusnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Mreža teksta"
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index 8e6d4614d06..8dd77b89313 100644
--- a/source/ca-valencia/cui/messages.po
+++ b/source/ca-valencia/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca_VALENCIA/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Obriu un fitxer CSV com a full nou al full de càlcul actual mitjançant Full ▸ Insereix full des del fitxer."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Podeu continuar escrivint amb els atributs de formatació predeterminats després d'aplicar manualment negreta, cursiva o subratllat prement %MOD1+Maj+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index 14c0eec06d2..10c51cbc2ac 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/00.po
+++ b/source/ca-valencia/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 21:25+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ca_VALENCIA/>\n"
@@ -611,13 +611,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Reinicialitza als valors heretats"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13742,67 +13742,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trieu la pestanya <emph>Format ▸ Cel·les ▸ Fons</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Trieu la pestanya <menuitem>Format ▸ Estil de la pàgina ▸ Organitzador</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Trieu la pestanya <menuitem>Format ▸ Estils ▸ Edita l'estil ▸ Organitzador</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13814,13 +13814,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Trieu la pestanya Diapositiva <menuitem>▸ Propietats ▸ Pàgina</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index b4ebd539d84..054e3f6a52f 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/01.po
+++ b/source/ca-valencia/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 21:25+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca_VALENCIA/>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Restaura la mida original del gràfic seleccionat.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organitzador"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organitzador</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index ae0d177d73c..d8865ffac50 100644
--- a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca-valencia/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 21:25+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca_VALENCIA/>\n"
@@ -935,13 +935,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/01.po b/source/ca-valencia/helpcontent2/source/text/swriter/01.po
index 5fd89826aad..098e035f36c 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/01.po
+++ b/source/ca-valencia/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-18 17:38+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca_VALENCIA/>\n"
@@ -23363,13 +23363,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
index a44ca9ba849..32df87b4945 100644
--- a/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca-valencia/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 21:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca_VALENCIA/>\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a \"Pàgina esquerra\" i trieu <emph>Modifica</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Feu clic a la pestanya <emph>Organitzador</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7091,13 +7091,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Podeu utilitzar capçaleres i peus diferents a les pàgines del document, sempre que estes pàgines utilitzen estils de pàgina diferents. El $[officename] inclou diversos estils de pàgina predefinits, com ara <emph>Primera pàgina</emph>, <emph>Pàgina esquerra</emph> i <emph>Pàgina dreta</emph>. A més, també podeu crear estils de pàgina personalitzats."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7136,32 +7136,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Feu clic amb el botó dret a \"Pàgina dreta\" a la llista d'estils de pàgina i trieu <emph>Modifica</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Al diàleg <item type=\"menuitem\">Estils de pàgina</item>, feu clic a la pestanya <item type=\"menuitem\">Capçalera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccioneu <item type=\"menuitem\">Activa la capçalera</item> i feu clic a la pestanya <item type=\"menuitem\">Organitzador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Seleccioneu \"Pàgina esquerra\" al quadre <item type=\"menuitem\">Estil següent</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7181,32 +7181,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "A la finestra <emph>Estils</emph>, feu clic amb el botó dret a l'element «Pàgina esquerra» de la llista d'estils de pàgina i, tot seguit, trieu <emph>Modifica</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Al diàleg <item type=\"menuitem\">Estils de pàgina</item>, feu clic a la pestanya <item type=\"menuitem\">Capçalera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccioneu <item type=\"menuitem\">Activa la capçalera</item> i feu clic a la pestanya <item type=\"menuitem\">Organitzador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Seleccioneu \"Pàgina dreta\" al quadre <item type=\"menuitem\">Estil següent</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11429,14 +11429,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a un element i trieu <emph>Nou</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Introduïu un nom per a l'estil de pàgina en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11582,14 +11582,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Seleccioneu <emph>Salt de pàgina</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Al quadre <item type=\"menuitem\">Estil</item>, seleccioneu un estil de pàgina que utilitze el fons de pàgina."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11861,13 +11861,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Apareixerà un <emph>salt de pàgina automàtic</emph> al final d'una pàgina quan l'estil de pàgina tinga un \"estil següent\" diferent."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12185,14 +12185,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Feu clic amb el botó dret a un estil de pàgina i trieu <emph>Nou</emph>. Inicialment, el nou estil de pàgina obtindrà totes les propietats de l'estil de pàgina seleccionat."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Introduïu un nom per a l'estil de pàgina en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>, per exemple, \"El meu estil horitzontal\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12329,13 +12329,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Estils de pàgina per a una sola pàgina"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12365,13 +12365,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Abast d'un estil de pàgina definit de manera manual"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a un element i trieu <emph>Nou</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Introduïu un nom en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index 1a15b670e72..367988cd6c6 100644
--- a/source/ca-valencia/sc/messages.po
+++ b/source/ca-valencia/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-15 11:40+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ca_VALENCIA/>\n"
@@ -14280,14 +14280,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14510,14 +14511,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23227,91 +23229,91 @@ msgid "_Standard"
msgstr "E_stàndard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Línia"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Àrea"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreig"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparència"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Text"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animació del text"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotació"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulacions"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Realçament"
@@ -23910,102 +23912,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Suprimeix"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Sense vora"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Totes les vores"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Vores exteriors"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Vora de quadre gruixuda"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Vora inferior gruixuda"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Vora inferior doble"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Vora superior i vora inferior gruixuda"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Vores superior i inferior dobles"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Vora esquerra"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Vora dreta"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Vora superior"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Vora inferior"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Vora diagonal amunt"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Vora diagonal avall"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Vores superior i inferior"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Vores esquerra i dreta"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24043,49 +23949,49 @@ msgid "Format Cells"
msgstr "Formata les cel·les"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Números"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipus de lletra"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efectes del tipus de lletra"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Vores"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fons"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protecció de cel·les"
@@ -28174,43 +28080,43 @@ msgid "Page Style"
msgstr "Estil de pàgina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pàgina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Vores"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Capçalera"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Peu"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Full"
@@ -28252,55 +28158,55 @@ msgid "Cell Style"
msgstr "Estil de la cel·la"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Números"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tipus de lletra"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efectes del tipus de lletra"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Vores"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protecció de cel·les"
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index 7e459ee1aac..f9527ca422a 100644
--- a/source/ca-valencia/sd/messages.po
+++ b/source/ca-valencia/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ca_VALENCIA/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "E_stàndard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Línia"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Àrea"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreig"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparència"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipus de lletra"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animació de text"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotació"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladors"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Realçat"
diff --git a/source/ca-valencia/sfx2/messages.po b/source/ca-valencia/sfx2/messages.po
index cadc1b777bd..e27d1627937 100644
--- a/source/ca-valencia/sfx2/messages.po
+++ b/source/ca-valencia/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca_VALENCIA/>\n"
@@ -1631,376 +1631,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Les macros s'han desactivat a causa de la configuració de Seguretat de Macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Les macros estan signades, però el document (que conté esdeveniments de document) no ho està."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Mostra les macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Mostra els esdeveniments"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Caramel"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idea groga"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Refrescant"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Llibertat creixent"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Xinés simplificat, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de la contrasenya"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "La contrasenya que heu introduït té problemes d'interoperabilitat. Introduïu una contrasenya de menys de 52 bytes o de més de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantingueu premuda la tecla %{key} i feu clic a l'enllaç per a obrir-lo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Feu clic per a obrir l'enllaç: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilitzat per: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Full de càlcul"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentació"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dibuix"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Utilitzats recentment"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Cap caràcter recent"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Restableix totes les plantilles per de~fecte"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Restableix el document de text per de~fecte"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Restableix el full de càlcul per de~fecte"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Restableix la presentació per de~fecte"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Restableix el dibuix per de~fecte"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importa"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensions"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Canvia el nom"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Canvia el nom de la categoria"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categoria nova"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspector d'objectes UNO"
diff --git a/source/ca-valencia/svtools/messages.po b/source/ca-valencia/svtools/messages.po
index fe2030ce0d2..c92551219a9 100644
--- a/source/ca-valencia/svtools/messages.po
+++ b/source/ca-valencia/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ca_VALENCIA/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "No s'ha pogut establir la connexió d'Internet a $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Missatge d'error del servidor: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Missatge d'error del servidor: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "S'ha produït un error general d'Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Les dades d'Internet que heu demanat no es troben a la memòria cau i no es poden transmetre perquè el mode en línia està desactivat."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "No s'ha pogut crear el contingut."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "El nom del fitxer és massa llarg per al sistema de fitxers de destinació."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintaxi d'entrada no és vàlida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Guardeu el document amb el format de fitxer del %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Heu arribat al nombre màxim de documents que es poden obrir al mateix temps. Heu de tancar un o més documents abans de poder-ne obrir un de nou."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "No s'ha pogut crear la còpia de seguretat."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "La longitud de les dades no és vàlida."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "La funció no és possible: el camí conté el directori actual."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funció impossible: No és el mateix dispositiu (unitat)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "El dispositiu (unitat) no està disponible."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Suma de verificació incorrecta."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funció impossible: només de lectura."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desactiveu abans el mode de compartició."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "S'ha trobat un error de format del fitxer a $(ARG1)(fila,columna)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "El filtre per a aquest format de fitxer està desactivat en la configuració. Contacteu amb el vostre administrador de sistemes."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Error general d'OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "No es pot executar l'acció en l'estat actual de l'objecte."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'objecte no admet cap acció."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'objecte no admet aquesta acció."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "S'ha produït l'error $(ERR) en activar l'objecte."
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index 73e370284b0..aa6a4fd2901 100644
--- a/source/ca-valencia/svx/messages.po
+++ b/source/ca-valencia/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-08-10 13:24+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ca_VALENCIA/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Cap vora"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Només la vora exterior"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Vora exterior i línies horitzontals"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Vora exterior i totes les línies interiors"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Vora exterior i línies verticals"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Vora exterior sense canviar les línies interiors"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Només les línies diagonals"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Vora diagonal avall"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Vora diagonal amunt"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Vores entrecreuades"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Totes quatre vores"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Només les vores esquerra i dreta"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Només les vores superior i inferior"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Vores superior i inferior, i totes les línies horitzontals"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Només la vora esquerra"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Només la vora dreta"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Només la vora superior"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Només la vora inferior"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Vores superior i inferior, i totes les línies interiors"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Vores esquerra i dreta, i totes les línies interiors"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Comprovació de la mida de la imatge"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imatge «%NAME» té molt pocs píxels per a la mida actual (%DPIX% × %DPIY% ppp)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imatge «%NAME» té massa píxels per a la mida actual (%DPIX% × %DPIY% ppp)"
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index c0241b68300..f2cccfdb0bc 100644
--- a/source/ca-valencia/sw/messages.po
+++ b/source/ca-valencia/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-08-19 03:42+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca_VALENCIA/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Continuació de la llista 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Capçalera i peu"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Taula"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatació"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "HIperenllaç"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numeració"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Altres"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Marc"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posició i mida"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcions"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Enllaç"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Vores"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Àrea"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparència"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnes"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Revertiu els canvis fets a la pestanya que es mostra, a la configuració que hi havia quan es va obrir aquest diàleg."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tipus de lletra"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efectes del tipus de lletra"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posició"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Disposició asiàtica"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Realçament"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Vores"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Estil de llista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Anomena i amaga els estils definits per l'usuari"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Trieu un tipus de vinyeta predefinit"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Sense ordenar"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Trieu una llista ordenada predefinida"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenada"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Trieu un format d'esquema predefinit"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Esquema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Trieu un símbol de vinyeta gràfic predefinit"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imatge"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modifiqueu el sagnat, l'espaiat i l'alineació dels números o símbols de la llista"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posició"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Dissenyeu la vostra pròpia llista o format d'esquema"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalitza"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Estil del paràgraf"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alineació"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Flux del text"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipus de lletra"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efectes del tipus de lletra"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posició"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Disposició asiàtica"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Realçament"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladors"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Inicials destacades"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Àrea"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparència"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Vores"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condició"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Definiu un nivell d'esquema, estil de llista i numeració de línia per a l'estil de paràgraf."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Esquema i llista"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Estil del marc"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipus"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcions"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Àrea"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparència"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Vores"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnes"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Estàndard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pàgina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Àrea"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparència"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Capçalera"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Peu de pàgina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Vores"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnes"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota al peu"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Graella de text"
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 249eb853c5f..60d0e6069a5 100644
--- a/source/ca/cui/messages.po
+++ b/source/ca/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-16 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ca/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Obriu un fitxer CSV com a full nou al full de càlcul actual mitjançant Full ▸ Insereix full des del fitxer."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Podeu continuar escrivint amb els atributs de formatació predeterminats després d'aplicar manualment negreta, cursiva o subratllat prement %MOD1+Maj+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/03.po b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
index 9cbaef69166..abbe470bd51 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-03-11 16:41+0100\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/ca/>\n"
"Language: ca\n"
@@ -21749,7 +21749,7 @@ msgctxt ""
"pyc_id511622808538351\n"
"help.text"
msgid "# Or, alternatively, to access the form by its index ..."
-msgstr ""
+msgstr "# O, alternativament, per a accedir al formulari pel seu índex..."
#. QFFzk
#: sf_form.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index 46f0b2364c0..d3f6a9f333b 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 07:51+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ca/>\n"
@@ -612,13 +612,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Reinicialitza als valors heretats"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13819,68 +13819,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trieu la pestanya <emph>Format ▸ Cel·les ▸ Fons</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Trieu la pestanya <menuitem>Format ▸ Estil de la pàgina ▸ Organitzador</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
-#, fuzzy
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Trieu la pestanya Estils <menuitem>▸ Edita l'estil ▸ Organitzador</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Trieu la pestanya <menuitem>Format ▸ Estils ▸ Edita l'estil ▸ Organitzador</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13892,13 +13891,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Trieu la pestanya Diapositiva <menuitem>▸ Propietats ▸ Pàgina</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index 9f8c06a8c55..bd256e26910 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1565199637.000000\n"
@@ -23859,14 +23859,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Restaura la mida original del gràfic seleccionat.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organitzador"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23878,14 +23878,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<unk>GA organitzar; estils</bookmarkvalue><bookmarkvalue>estils; organització </bookmarkvalue>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organitzador</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index 1ecfac92bd0..4476023a02c 100644
--- a/source/ca/helpcontent2/source/text/shared/optionen.po
+++ b/source/ca/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-11 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ca/>\n"
"Language: ca\n"
@@ -937,13 +937,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9694,7 +9694,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Indicador de comentaris</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9766,7 +9766,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Indicador de fórmules</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -10009,7 +10009,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Punter del sistema</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10072,7 +10072,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objectes/imatges"
#. DMhEf
#: 01060100.xhp
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index 3183112cddf..bea21957502 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 07:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1561340858.000000\n"
@@ -23412,13 +23412,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index d6b197bdb49..a98c59a8ebb 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Language: ca\n"
"X-POOTLE-MTIME: 1564507881.000000\n"
@@ -4284,14 +4284,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a «Pàgina esquerra» i trieu <emph>Modifica</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Feu clic a la pestanya <emph>Organitzador</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7092,13 +7092,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Podeu utilitzar capçaleres i peus diferents a les pàgines del document, sempre que aquestes pàgines utilitzin estils de pàgina diferents. El $[officename] inclou diversos estils de pàgina predefinits, com ara <emph>Primera pàgina</emph>, <emph>Pàgina esquerra</emph> i <emph>Pàgina dreta</emph>. A més, també podeu crear estils de pàgina personalitzats."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7137,32 +7137,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Feu clic amb el botó dret a \"Pàgina dreta\" a la llista d'estils de pàgina i trieu <emph>Modifica</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Al diàleg <item type=\"menuitem\">Estils de pàgina</item>, feu clic a la pestanya <item type=\"menuitem\">Capçalera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccioneu <item type=\"menuitem\">Activa la capçalera</item> i feu clic a la pestanya <item type=\"menuitem\">Organitzador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Seleccioneu \"Pàgina esquerra\" al quadre <item type=\"menuitem\">Estil següent</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7182,32 +7182,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "A la finestra <emph>Estils</emph>, feu clic amb el botó dret a l'element «Pàgina esquerra» de la llista d'estils de pàgina i, tot seguit, trieu <emph>Modifica</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Al diàleg <item type=\"menuitem\">Estils de pàgina</item>, feu clic a la pestanya <item type=\"menuitem\">Capçalera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccioneu <item type=\"menuitem\">Activa la capçalera</item> i feu clic a la pestanya <item type=\"menuitem\">Organitzador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Seleccioneu \"Pàgina dreta\" al quadre <item type=\"menuitem\">Estil següent</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11432,14 +11432,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a un element i trieu <emph>Nou</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Introduïu un nom per a l'estil de pàgina en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11586,14 +11586,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Seleccioneu <emph>Salt de pàgina</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Al quadre <item type=\"menuitem\">Estil</item>, seleccioneu un estil de pàgina que utilitzi el fons de pàgina."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11865,13 +11865,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Apareixerà un <emph>salt de pàgina automàtic</emph> al final d'una pàgina quan l'estil de pàgina tingui un «estil següent» diferent."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12189,14 +12189,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Feu clic amb el botó dret a un estil de pàgina i trieu <emph>Nou</emph>. Inicialment, el nou estil de pàgina obtindrà totes les propietats de l'estil de pàgina seleccionat."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Introduïu un nom per a l'estil de pàgina en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>, per exemple, «El meu estil horitzontal»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12333,14 +12333,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Estils de pàgina per a una sola pàgina"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Es pot definir un estil de pàgina que s'apliqui només a una pàgina. L'estil «Primera pàgina» n'és un exemple. Establiu aquesta propietat definint un altre estil de pàgina com a «estil següent» a la pàgina de la pestanya <menuitem>Format ▸ Estil de pàgina ▸ Organitzador</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12369,15 +12369,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Abast d'un estil de pàgina definit de manera manual"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
-#, fuzzy
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "L'estil de pàgina «Per defecte» no defineix un «estil següent» diferent a la pàgina de <menuitem>Format - Estil de pàgina - Organitzador</menuitem>. En canvi l'«estil següent» també s'estableix com a «Per defecte». Tots els estils de pàgina que van seguits del mateix estil de pàgina poden abastar diverses pàgines. Les vores inferior i superior de l'interval d'estils de pàgina es defineixen per «salts de pàgina amb estil». Totes les pàgines entre dos «salts de pàgina amb estil» utilitzen el mateix estil de pàgina."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12505,14 +12504,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "A la llista d'estils de pàgina, feu clic amb el botó dret a un element i trieu <emph>Nou</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Introduïu un nom en el quadre <emph>Nom</emph> de la pestanya <emph>Organitzador</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index 89aaef15c82..7655ca6171e 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 17:47+0000\n"
"Last-Translator: Mireia Goula Iglesias <mireiagoula@gmail.com>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562916192.000000\n"
#. kBovX
@@ -14283,14 +14283,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Mode de coincidència"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14513,14 +14514,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Mode de coincidència."
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23230,91 +23232,91 @@ msgid "_Standard"
msgstr "E_stàndard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Línia"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Àrea"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreig"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparència"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Text"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animació del text"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotació"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulacions"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Realçament"
@@ -23913,102 +23915,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Suprimeix"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Sense vora"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Totes les vores"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Vores exteriors"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Vora de quadre gruixuda"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Vora inferior gruixuda"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Vora inferior doble"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Vora superior i vora inferior gruixuda"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Vores superior i inferior dobles"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Vora esquerra"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Vora dreta"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Vora superior"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Vora inferior"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Vora diagonal amunt"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Vora diagonal avall"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Vores superior i inferior"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Vores esquerra i dreta"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24046,49 +23952,49 @@ msgid "Format Cells"
msgstr "Formata les cel·les"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Números"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Vores"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fons"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protecció de cel·les"
@@ -28177,43 +28083,43 @@ msgid "Page Style"
msgstr "Estil de pàgina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pàgina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Vores"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Capçalera"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Peu"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Full"
@@ -28255,55 +28161,55 @@ msgid "Cell Style"
msgstr "Estil de la cel·la"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "General"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Números"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Vores"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protecció de cel·les"
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index 0acda85953c..cd32dcb15d2 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ca/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "E_stàndard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "General"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Línia"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Àrea"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreig"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparència"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animació del text"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotació"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alineació"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladors"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Realçament"
diff --git a/source/ca/sfx2/messages.po b/source/ca/sfx2/messages.po
index 072ba850caa..891cb72de5e 100644
--- a/source/ca/sfx2/messages.po
+++ b/source/ca/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-03 20:32+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559651981.000000\n"
#. bHbFE
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Les macros s'han desactivat a causa de la configuració de Seguretat de Macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Les macros estan signades, però el document (que conté esdeveniments de document) no ho està."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Mostra les macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Mostra les opcions de seguretat"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Mostra els esdeveniments"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Rusc"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotip"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Caramel"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idea groga"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Au forestal"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Refrescant"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiració"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Llums"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Llibertat creixent"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metròpoli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mitjanit"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Llapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolis"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progrés"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ocàs"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Retro"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llampant"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículum"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defecte"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, lletra sense serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, lletra amb serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Targeta de visita amb logotip"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Xinès simplificat, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japonès normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimeix"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Neteja-ho tot"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de la contrasenya"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "La contrasenya que heu introduït té problemes d'interoperabilitat. Introduïu una contrasenya de menys de 52 bytes o de més de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantingueu premuda la tecla %{key} i feu clic a l'enllaç per a obrir-lo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Feu clic per a obrir l'enllaç: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilitzat per: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Full de càlcul"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentació"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dibuix"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Utilitzats recentment"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Cap caràcter recent"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Restableix totes les plantilles per de~fecte"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Restableix el document de text per de~fecte"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Restableix el full de càlcul per de~fecte"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Restableix la presentació per de~fecte"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Restableix el dibuix per de~fecte"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importa"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensions"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Canvia el nom"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Canvia el nom de la categoria"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categoria nova"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspector d'objectes UNO"
diff --git a/source/ca/svtools/messages.po b/source/ca/svtools/messages.po
index bd47a3fada6..5bab3c2fd54 100644
--- a/source/ca/svtools/messages.po
+++ b/source/ca/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-23 11:22+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ca/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564413316.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "No s'ha pogut establir la connexió d'Internet a $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Missatge d'error del servidor: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Missatge d'error del servidor: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "S'ha produït un error general d'Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Les dades d'Internet que heu demanat no es troben a la memòria cau i no es poden transmetre perquè el mode en línia està desactivat."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "No s'ha pogut crear el contingut."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "El nom del fitxer és massa llarg per al sistema de fitxers de destinació."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintaxi d'entrada no és vàlida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Deseu el document amb el format de fitxer del %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Heu arribat al nombre màxim de documents que es poden obrir al mateix temps. Heu de tancar un o més documents abans de poder-ne obrir un de nou."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "No s'ha pogut crear la còpia de seguretat."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "La longitud de les dades no és vàlida."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "La funció no és possible: el camí conté el directori actual."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funció impossible: No és el mateix dispositiu (unitat)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "El dispositiu (unitat) no està disponible."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Suma de verificació incorrecta."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funció impossible: només de lectura."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desactiveu abans el mode de compartició."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "S'ha trobat un error de format del fitxer a $(ARG1)(fila,columna)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "El filtre per a aquest format de fitxer està desactivat en la configuració. Contacteu amb el vostre administrador de sistemes."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Error general d'OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "No es pot executar l'acció en l'estat actual de l'objecte."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'objecte no admet cap acció."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'objecte no admet aquesta acció."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "S'ha produït l'error $(ERR) en activar l'objecte."
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index 92760a9d199..b58f9e9947f 100644
--- a/source/ca/svx/messages.po
+++ b/source/ca/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-10 12:51+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ca/>\n"
"Language: ca\n"
@@ -8149,7 +8149,7 @@ msgstr "Combinació de caràcters diacrítics"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Grec i copte"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Cap vora"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Només la vora exterior"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Vora exterior i línies horitzontals"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Vora exterior i totes les línies interiors"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Vora exterior i línies verticals"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Vora exterior sense canviar les línies interiors"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Només les línies diagonals"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Vora diagonal avall"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Vora diagonal amunt"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Vores entrecreuades"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Totes quatre vores"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Només les vores esquerra i dreta"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Només les vores superior i inferior"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Vores superior i inferior, i totes les línies horitzontals"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Només la vora esquerra"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Només la vora dreta"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Només la vora superior"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Només la vora inferior"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Vores superior i inferior, i totes les línies interiors"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Vores esquerra i dreta, i totes les línies interiors"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Elimina dels preferits"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Falta el caràcter"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Afegeix als preferits"
@@ -10281,19 +10331,19 @@ msgstr "Afegeix als preferits"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Comprovació de la mida de la imatge"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imatge «%NAME» té molt pocs píxels per a la mida actual (%DPIX% × %DPIY% ppp)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imatge «%NAME» té massa píxels per a la mida actual (%DPIX% × %DPIY% ppp)"
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index e1be089cb05..2aff25dbdda 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Catalan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ca/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Continuació de la llista 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Capçalera i peu"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Taula"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatació"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "HIperenllaç"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Llegendes simulades"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numeració"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Altres"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Marc"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posició i mida"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcions"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Enllaç"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Vores"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Àrea"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparència"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnes"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Revertiu els canvis fets a la pestanya que es mostra, a la configuració que hi havia quan es va obrir aquest diàleg."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "General"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posició"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Disposició asiàtica"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Realçament"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Vores"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Estil de llista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Anomena i amaga els estils definits per l'usuari"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "General"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Trieu un tipus de vinyeta predefinit"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Sense ordenar"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Trieu una llista ordenada predefinida"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenada"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Trieu un format d'esquema predefinit"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Esquema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Trieu un símbol de vinyeta gràfic predefinit"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imatge"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modifiqueu el sagnat, l'espaiat i l'alineació dels números o símbols de la llista"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posició"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Dissenyeu la vostra pròpia llista o format d'esquema"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalitza"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Estil del paràgraf"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "General"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sagnats i espaiat"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alineació"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Flux del text"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiàtica"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Lletra tipogràfica"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efectes de lletra"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posició"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Disposició asiàtica"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Realçament"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladors"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Caplletres"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Àrea"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparència"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Vores"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condició"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Definiu un nivell d'esquema, estil de llista i numeració de línia per a l'estil de paràgraf."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Esquema i llista"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Estil del marc"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "General"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipus"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcions"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ajusta"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Àrea"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparència"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Vores"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnes"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Estàndard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "General"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pàgina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Àrea"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparència"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Capçalera"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Peu de pàgina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Vores"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnes"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota al peu"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Graella de text"
diff --git a/source/ckb/cui/messages.po b/source/ckb/cui/messages.po
index ffdd38bb15e..147affa28f3 100644
--- a/source/ckb/cui/messages.po
+++ b/source/ckb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ckb/>\n"
@@ -2539,10 +2539,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ckb/sc/messages.po b/source/ckb/sc/messages.po
index ab3495aee90..371a7adeaa9 100644
--- a/source/ckb/sc/messages.po
+++ b/source/ckb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ckb/>\n"
@@ -14188,14 +14188,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14418,14 +14419,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23132,91 +23134,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23815,102 +23817,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "بێ قەراخ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "هەموو قەراخەکان"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "قەراخی چەپ"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "قەراخی ڕاست"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "قەراخی سەرەوە"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "قەراخی خوارەوە"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "قوەراخی سەرەوە و خوارەوە"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "قەراخی لای ڕاست و چەپ"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -23948,49 +23854,49 @@ msgid "Format Cells"
msgstr "شێوەپێدانی خانە"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ژمارەکان"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "جۆرەپیت"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "کاریگەرییەکانی جۆرەپیت"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ڕێککردن"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "شێوەنووسینی ئاسیایی"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "قەراخ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "پاشبنەما"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "پاراستنی خانە"
@@ -28079,43 +27985,43 @@ msgid "Page Style"
msgstr "شێوازی پەڕە"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "پەڕە"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "قەراخ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "پاشبنەما"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "سەرپەڕە"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "پێپەرە"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "شیت"
@@ -28157,55 +28063,55 @@ msgid "Cell Style"
msgstr "شێوازی خانە"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ژمارەکان"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "جۆرەپیت"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "کاریگەرییەکانی جۆرەپیت"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ڕێککردن"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "شێوەنووسینی ئاسیایی"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "قەراخ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "پاشبنەما"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "پاراستنی خانە"
diff --git a/source/ckb/sd/messages.po b/source/ckb/sd/messages.po
index 99ecfbff250..e5b4522635b 100644
--- a/source/ckb/sd/messages.po
+++ b/source/ckb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ckb/>\n"
@@ -9541,97 +9541,97 @@ msgid "_Standard"
msgstr "_ستاندارد"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "هێڵ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ڕووبەر"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "سێبەرکردن"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "جۆرەپیت"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "کاریگەرییەکانی جۆرەپیت"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "بۆشایی & مەودا"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "دەق"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "دەقی جوڵاو"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "پێکبەستەرەوە"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ڕێککردن"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "شێوەنووسینی ئاسیایی"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "بازدەرەکان"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "نیشانەکردن"
diff --git a/source/ckb/sfx2/messages.po b/source/ckb/sfx2/messages.po
index bedb521c7d5..816ddaf7252 100644
--- a/source/ckb/sfx2/messages.po
+++ b/source/ckb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ckb/>\n"
@@ -1559,376 +1559,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "کار"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "خۆرئاوابوون"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "دەستپێکردنەوە"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "بنەڕەت"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "نوێ"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "سادە"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "سڕینەوە"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "هه‌مووی پاک بکه‌ره‌وه‌"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ckb/svtools/messages.po b/source/ckb/svtools/messages.po
index d5cb80ee99e..41ad9f0b885 100644
--- a/source/ckb/svtools/messages.po
+++ b/source/ckb/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ckb/>\n"
@@ -2379,16 +2379,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2396,37 +2404,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2434,19 +2442,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2459,43 +2467,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2503,43 +2511,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/ckb/svx/messages.po b/source/ckb/svx/messages.po
index d58e97abbcb..ce72cef6c2c 100644
--- a/source/ckb/svx/messages.po
+++ b/source/ckb/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ckb/>\n"
@@ -10129,134 +10129,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10265,19 +10315,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ckb/sw/messages.po b/source/ckb/sw/messages.po
index b1702c575da..0c6d044dd59 100644
--- a/source/ckb/sw/messages.po
+++ b/source/ckb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-02-05 14:07+0000\n"
"Last-Translator: jwtiyar ali nariman <jwtiyar@gmail.com>\n"
"Language-Team: Central Kurdish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ckb/>\n"
@@ -3026,11 +3026,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "سەرپەڕ و پێپەڕ"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10591,38 +10591,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16421,55 +16427,55 @@ msgid "Frame"
msgstr "چوارچێوە"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "هەڵبژاردەکان"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "پێچانەوە"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "سەرووبەستەر"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "قەراخ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ڕووبەر"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ستوونەکان"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ماکرۆ"
@@ -28864,43 +28870,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "جۆرەپیت"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "کاریگەرییەکانی جۆرەپیت"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "شوێن"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "کڵێشەی ئاسیایی"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "نیشانەکردن"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "قەراخ"
@@ -28912,85 +28918,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "چێوەی دەرەوە"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "وێنە"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "شوێن"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "دڵخوازکردە"
@@ -29002,109 +29008,109 @@ msgid "Paragraph Style"
msgstr "شێوازی بەند"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "بۆشایی & مەودا"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ڕێککردن"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "شێوەنووسینی ئاسیایی"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "جۆرەپیت"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "کاریگەرییەکانی جۆرەپیت"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "شوێن"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "کڵێشەی ئاسیایی"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "نیشانەکردن"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "بازدەر"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ڕووبەر"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "قەراخ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "مەرج"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29116,55 +29122,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "جۆر"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "هەڵبژاردەکان"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "پێچانەوە"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ڕووبەر"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "قەراخ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ستوونەکان"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ماکرۆ"
@@ -29182,61 +29188,61 @@ msgid "Standard"
msgstr "ستاندارد"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "پەڕە"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ڕووبەر"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "دیارخەری ڕوونی"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "سەرپەڕە"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "پێپەرە"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "قەراخ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ستوونەکان"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "تێبینی لە خوارەوە"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index a5dcd8cb86a..b9dacf975ae 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-26 17:38+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/cs/>\n"
"Language: cs\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Otevírejte soubory CSV jako nový list aktuálního sešitu pomocí List ▸ Vložit list ze souboru."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Stisknutím %MOD1+Shift+X přepnete zpět na výchozí formátování poté, co jste ručně nastavili tučné písmo, kurzívu nebo podtržení."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "min"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Místo toho automaticky uložit dokument"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Určuje, zda se bude místo toho, aby se vytvářela dočasná verze pro automatické obnovení, ukládat samotný změněný dokument. Při tom se použije stejný časový interval jako pro automatické obnovení."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/cs/formula/messages.po b/source/cs/formula/messages.po
index e698b63189a..27059bd08d7 100644
--- a/source/cs/formula/messages.po
+++ b/source/cs/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1555015263.000000\n"
#. YfKFn
@@ -2852,7 +2852,7 @@ msgstr "Vybrat"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Obsah:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/cs/fpicker/messages.po b/source/cs/fpicker/messages.po
index e5aef0906e8..29f1f8aa60a 100644
--- a/source/cs/fpicker/messages.po
+++ b/source/cs/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2023-12-05 01:45+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1538496813.000000\n"
#. SJGCw
@@ -560,70 +560,70 @@ msgstr "Uložit"
#: include/fpicker/strings.hrc:41
msgctxt "STR_FILESAVE_AUTOEXTENSION"
msgid "Automatically adds the file extension to the end of the file name that corresponds to the selected file type."
-msgstr ""
+msgstr "Automaticky přidá na konec názvu souboru příponu, která odpovídá vybranému typu."
#. 4qPci
#: include/fpicker/strings.hrc:42
msgctxt "STR_FILESAVE_SAVEWITHPASSWORD"
msgid "Protects the file with a password that must be entered before a user can open the file."
-msgstr ""
+msgstr "Uzamkne soubor heslem, které je nutné zadat, aby uživatel soubor otevřel."
#. dFCgT
#: include/fpicker/strings.hrc:43
msgctxt "STR_FILESAVE_CUSTOMIZEFILTER"
msgid "Allows you to set the spreadsheet saving options for some types of data files."
-msgstr ""
+msgstr "Umožňuje nastavit možnosti ukládání sešitu pro určité typy datových souborů."
#. fJtCZ
#: include/fpicker/strings.hrc:44
msgctxt "STR_FILEOPEN_READONLY"
msgid "Opens the file in read-only mode."
-msgstr ""
+msgstr "Otevře soubor v režimu jen pro čtení."
#. BMEgo
#: include/fpicker/strings.hrc:45
msgctxt "STR_FILEDLG_LINK_CB"
msgid "Inserts the selected graphic file as a link."
-msgstr ""
+msgstr "Vloží vybraný soubor s obrázkem jako odkaz."
#. jHPYN
#: include/fpicker/strings.hrc:46
msgctxt "STR_FILEDLG_PREVIEW_CB"
msgid "Displays a preview of the selected graphic file."
-msgstr ""
+msgstr "Zobrazí náhled vybraného souboru s obrázkem."
#. xWLX2
#: include/fpicker/strings.hrc:47
msgctxt "STR_FILESAVE_DOPLAY"
msgid "Plays the selected sound file. Click again to stop playing the sound file."
-msgstr ""
+msgstr "Přehraje vybraný soubor se zvukem. Opětovným kliknutím přehrávání souboru zastavíte."
#. 27ayC
#: include/fpicker/strings.hrc:48
msgctxt "STR_FILEOPEN_VERSION"
msgid "If there are multiple versions of the selected file, select the version that you want to open."
-msgstr ""
+msgstr "Je-li k dispozici více verzí vybraného souboru, vyberte tu, kterou si přejete otevřít."
#. K6RjJ
#: include/fpicker/strings.hrc:49
msgctxt "STR_FILESAVE_TEMPLATE"
msgid "Select the paragraph style or outline level that you want to use to separate the source document into sub-documents."
-msgstr ""
+msgstr "Vyberte styl odstavce nebo úroveň osnovy, které si přejete použít pro rozdělení zdrojového dokumentu na dílčí dokumenty."
#. 7GLrR
#: include/fpicker/strings.hrc:50
msgctxt "STR_FILEOPEN_IMAGE_TEMPLATE"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Vyberte pro obrázek styl rámce."
#. Lfiaj
#: include/fpicker/strings.hrc:51
msgctxt "STR_FILEOPEN_IMAGE_ANCHOR"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Vyberte pro obrázek styl rámce."
#. d6DG8
#: include/fpicker/strings.hrc:52
msgctxt "STR_FILESAVE_SELECTION"
msgid "Exports only the selected graphic objects in %PRODUCTNAME Draw and Impress to another format. If this box is not checked, the entire document is exported."
-msgstr ""
+msgstr "Vyexportuje do jiného formátu pouze grafické objekty v %PRODUCTNAME Draw and Impress, které jsou vybrané. Jestliže toto pole zaškrtnuto není, vyexportuje se celý dokument."
diff --git a/source/cs/helpcontent2/source/auxiliary.po b/source/cs/helpcontent2/source/auxiliary.po
index bca788e67d6..42bf91b8d1e 100644
--- a/source/cs/helpcontent2/source/auxiliary.po
+++ b/source/cs/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:51+0200\n"
-"PO-Revision-Date: 2023-09-30 11:39+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563452452.000000\n"
#. fEEXD
@@ -95,7 +95,7 @@ msgctxt ""
"07010501\n"
"node.text"
msgid "Example Scripts"
-msgstr ""
+msgstr "Příklady skriptů"
#. Vkt9E
#: sbasic.tree
diff --git a/source/cs/helpcontent2/source/text/sbasic/python.po b/source/cs/helpcontent2/source/text/sbasic/python.po
index 7672d4245b2..9822c5283cf 100644
--- a/source/cs/helpcontent2/source/text/sbasic/python.po
+++ b/source/cs/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:52+0200\n"
-"PO-Revision-Date: 2024-03-04 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565688717.000000\n"
#. naSFZ
@@ -1247,7 +1247,7 @@ msgctxt ""
"hd_id601717774441961\n"
"help.text"
msgid "Event Handling, Listeners"
-msgstr ""
+msgstr "Zpracování událostí, posluchače"
#. BLZ9N
#: python_examples.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"hd_id651717774529891\n"
"help.text"
msgid "Calc examples"
-msgstr ""
+msgstr "Příklady použití Calcu"
#. xkeov
#: python_handler.xhp
@@ -2507,7 +2507,7 @@ msgctxt ""
"N0530a\n"
"help.text"
msgid "''' Module name: Platform '''"
-msgstr ""
+msgstr "''' Název modulu: Platform '''"
#. tTyE5
#: python_platform.xhp
@@ -2534,7 +2534,7 @@ msgctxt ""
"N0511\n"
"help.text"
msgid "ComputerName environment variable is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
-msgstr ""
+msgstr "Vlastnost ComputerName je k dispozici pouze v systému Windows. Omezením jazyka %PRODUCTNAME Basic se lze vyhnout voláním maker Pythonu z Basicu."
#. jtA2N
#: python_platform.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index 06007a00f36..52f1d1df080 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/cs/>\n"
"Language: cs\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Nastavit na rodičovský"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Nastaví hodnoty na aktuální kartě na odpovídající hodnoty ze stylu, který je určen v poli „Rodičovský“ na kartě Organizátor. Ve všech případech, včetně toho, kdy je „Rodičovský“ nastaven jako „Žádný“, se na této kartě odstraní hodnoty popsané v části „Obsahuje“."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Na kartě <menuitem>Nástroje</menuitem> klepněte na tlačítko <menuitem>Možnosti</menuitem> a poté otevřete <menuitem>Načítání/ukládání - Obecné</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zvolte kartu <emph>Formát - Buňky - Pozadí</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Zvolte kartu <menuitem>Formát - Styl stránky - Organizátor</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Zvolte kartu <menuitem>Styly - Upravit styl - Organizátor</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Zvolte <menuitem>Styly - Spravovat styly</menuitem>, otevřete místní nabídku položky a zvolte kartu <menuitem>Nový / Upravit styl - Organizátor</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Zvolte kartu <menuitem>Formát - Styl stránky - Organizátor</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Zvolte <menuitem>Styly - Spravovat styly</menuitem>, otevřete místní nabídku položky a zvolte kartu <menuitem>Nový / Upravit styl - Organizátor</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Zvolte kartu <menuitem>Formát - Styly - Upravit styl - Organizátor</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Zvolte <menuitem>Formát - Styly - Spravovat styly</menuitem>, otevřete místní nabídku položky a zvolte kartu <menuitem>Nový / Upravit styl - Organizátor</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Zvolte kartu <menuitem>Snímek - Vlastnosti - Stránka</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Zvolte <menuitem>Zobrazit - Styly</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline>, otevřete místní nabídku položky a zvolte kartu <menuitem>Nový / Upravit styl - Organizátor</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index 993da5021a1..107b1ae6fab 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/cs/>\n"
"Language: cs\n"
@@ -14423,7 +14423,7 @@ msgctxt ""
"hd_id3150467\n"
"help.text"
msgid "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Standard Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Lišta Standardní</link></variable>"
#. iyNTo
#: 03020000.xhp
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Vrátí vybraný obrázek do původní velikosti.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizátor"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organizování; styly</bookmark_value><bookmark_value>styly; organizování</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizátor</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/02.po b/source/cs/helpcontent2/source/text/shared/02.po
index 8ba31b7703a..df7fc858a9f 100644
--- a/source/cs/helpcontent2/source/text/shared/02.po
+++ b/source/cs/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1561117732.000000\n"
#. Edm6o
@@ -19994,7 +19994,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<variable id=\"paintbrush_h1\"><link href=\"text/shared/02/paintbrush.xhp\">Clone Formatting</link></variable>"
-msgstr ""
+msgstr "<variable id=\"paintbrush_h1\"><link href=\"text/shared/02/paintbrush.xhp\">Štěteček formátu</link></variable>"
#. 5CCEM
#: paintbrush.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/guide.po b/source/cs/helpcontent2/source/text/shared/guide.po
index 76d199b583a..735fc123675 100644
--- a/source/cs/helpcontent2/source/text/shared/guide.po
+++ b/source/cs/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547113478.000000\n"
#. iharT
@@ -21857,7 +21857,7 @@ msgctxt ""
"bm_id380260\n"
"help.text"
msgid "<bookmark_value>Format Paintbrush</bookmark_value> <bookmark_value>clone formatting</bookmark_value> <bookmark_value>formatting;copying</bookmark_value> <bookmark_value>copying;formatting</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>štěteček formátu</bookmark_value><bookmark_value>klonování formátování</bookmark_value><bookmark_value>formátování;kopírování</bookmark_value><bookmark_value>kopírování;formátování</bookmark_value><bookmark_value>štěteček</bookmark_value>"
#. 7BBrB
#: paintbrush.xhp
@@ -21875,7 +21875,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "Use the <link href=\"text/shared/02/paintbrush.xhp\"><emph>Clone Formatting</emph></link> tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object."
-msgstr ""
+msgstr "Nástroj <link href=\"text/shared/02/paintbrush.xhp\"><emph>Štěteček formátu</emph></link> umožňuje kopírovat formátování z vybraného textu nebo z objektu a použít toto formátování na jiný výběr textu nebo objekt."
#. F7Fcd
#: paintbrush.xhp
@@ -21893,7 +21893,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "On the <link href=\"text/shared/main0201.xhp\"><emph>Standard Bar</emph></link>, click the <emph>Clone Formatting</emph> icon. The mouse cursor will change to a paint bucket."
-msgstr ""
+msgstr "Na liště <link href=\"text/shared/main0201.xhp\"><emph>Standardní</emph></link> klepněte na ikonu <emph>Štěteček formátu</emph>. Ukazatel myši se změní na kbelík s barvou."
#. AZjCv
#: paintbrush.xhp
@@ -22136,7 +22136,7 @@ msgctxt ""
"par_id791717184075742\n"
"help.text"
msgid "Text within Impress table is selected"
-msgstr ""
+msgstr "Vybrán text v tabulce Impressu"
#. 44VEa
#: paintbrush.xhp
@@ -22145,7 +22145,7 @@ msgctxt ""
"par_id211717184260731\n"
"help.text"
msgid "Copies formatting attributes that apply to all characters in the cell. Formatting can only be copied within the same table."
-msgstr ""
+msgstr "Zkopíruje atributy formátování, které jsou použity na všechny znaky buňky. Formátování je možné kopírovat pouze v rámci jedné tabulky."
#. G7z8F
#: paintbrush.xhp
@@ -22154,7 +22154,7 @@ msgctxt ""
"par_id10821388499239\n"
"help.text"
msgid "Impress table or cells are selected"
-msgstr ""
+msgstr "Vybrána tabulka Impressu nebo její buňky"
#. xXcmM
#: paintbrush.xhp
@@ -22163,7 +22163,7 @@ msgctxt ""
"par_id23538680114944\n"
"help.text"
msgid "Not supported"
-msgstr ""
+msgstr "Není podporováno"
#. Sigiv
#: palette_files.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/help.po b/source/cs/helpcontent2/source/text/shared/help.po
index 6cc2cd3a8d8..e6d70e79f26 100644
--- a/source/cs/helpcontent2/source/text/shared/help.po
+++ b/source/cs/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-26 09:45+0000\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563910365.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Knihy LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index d314d4cb114..f9e832935e9 100644
--- a/source/cs/helpcontent2/source/text/shared/optionen.po
+++ b/source/cs/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-28 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/cs/>\n"
@@ -935,13 +935,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/cs/helpcontent2/source/text/swriter/01.po b/source/cs/helpcontent2/source/text/swriter/01.po
index 66c4369c672..85d69054361 100644
--- a/source/cs/helpcontent2/source/text/swriter/01.po
+++ b/source/cs/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-28 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565687607.000000\n"
#. sZfWF
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Přímé formátování přepíše jakékoliv formátování dané znakovým stylem. Příme formátování odstraníte z výběru pomocí <menuitem>Formát - Vymazat přímé formátování</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "V části <emph>Obsahuje</emph> na kartě Organizátor se zobrazují vlastnosti znakového stylu."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/cs/helpcontent2/source/text/swriter/guide.po b/source/cs/helpcontent2/source/text/swriter/guide.po
index fce1c0b99b9..eabda30c6ce 100644
--- a/source/cs/helpcontent2/source/text/swriter/guide.po
+++ b/source/cs/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-25 09:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565688661.000000\n"
#. XAt2Y
@@ -4284,14 +4284,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "V seznamu stylů klepněte pravým tlačítkem na „Levá stránka“ a zvolte <emph>Upravit</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klepněte na kartu <emph>Organizátor</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7092,14 +7092,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Na každé stránce je možné použít jiné záhlaví a zápatí, pokud na různé stránky použijete různé styly stránky. $[officename] nabízí několik předdefinovaných stylů stránky, jako například <emph>První stránka</emph>, <emph>Levá stránka</emph> a <emph>Pravá stránka</emph>. Je také možné si vytvořit vlastní styly stránky."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Pokud chcete přidat záhlaví ke stylu stránky, který má rozdílné vnitřní a vnější stránkové okraje, lze použít zrcadlené rozvržení stránek. V takovém případě zvolte <item type=\"menuitem\">Formát - Styl stránky</item>, klepněte na kartu <item type=\"menuitem\">Stránka</item> a v části <item type=\"menuitem\">Nastavení rozvržení</item> v poli <item type=\"menuitem\">Rozvržení stránek</item> zvolte „Zrcadlit“."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7137,32 +7137,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "V seznamu stylů stránky pravým tlačítkem klepněte na „Pravá stránka“ a zvolte <emph>Upravit</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "V dialogovém okně <item type=\"menuitem\">Styly stránky</item> klepněte na kartu <item type=\"menuitem\">Záhlaví</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vyberte <item type=\"menuitem\">Záhlaví zapnuto</item> a klepněte na kartu <item type=\"menuitem\">Organizátor</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "V poli <item type=\"menuitem\">Další styl</item> vyberte „Levá stránka“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7182,32 +7182,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "V okně <emph>Styly</emph> klepněte v seznamu stylů stránky pravým tlačítkem na „Levá stránka“ a zvolte <emph>Upravit</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "V dialogovém okně <item type=\"menuitem\">Styly stránky</item> klepněte na kartu <item type=\"menuitem\">Záhlaví</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vyberte <item type=\"menuitem\">Záhlaví zapnuto</item> a klepněte na kartu <item type=\"menuitem\">Organizátor</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "V poli <item type=\"menuitem\">Další styl</item> vyberte „Pravá stránka“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11430,14 +11430,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "V seznamu stylů stránky klepněte pravým tlačítkem na položku a vyberte <emph>Nový</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Na kartě <emph>Organizátor</emph> napište do pole <emph>Název</emph> název stylu stránky."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11583,14 +11583,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Vyberte <emph>Zalomení stránky</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "V seznamu <item type=\"menuitem\">Styl</item> vyberte styl stránky, který používá pozadí stránky."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11862,14 +11862,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Automatický zlom strany</emph> se objeví na konci stránky, pokud styl stránky má odlišný „Další styl“."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Například styl stránky „První stránka“ má jako další styl „Výchozí styl stránky“. Abyste to zjistili, otevřete stisknutím <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> okno <menuitem>Styly</menuitem>, klepněte na ikonu <menuitem>Styly stránky</menuitem> a klepněte pravým tlačítkem na položku „První stránka“. Z místní nabídky zvolte <menuitem>Upravit styl</menuitem>. „Další styl“ je uveden na kartě <menuitem>Organizátor</menuitem>."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12186,14 +12186,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Klepněte pravým tlačítkem na styl stránky a vyberte <emph>Nový</emph>. Nový styl stránky při vytvoření získá všechny vlastnosti vybrané stránky."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Na kartě <emph>Organizátor</emph> napište do pole <emph>Název</emph> název stylu stránky, např. „Můj na šířku“."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12330,14 +12330,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Jednostránkové styly"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Styl stránky může být definován tak, aby byl použit pouze pro jednu stránku. Příkladem je styl stránky „První stránka“. Toho dosáhnete, když definujete jiný styl stránky v položce „Další styl“ na kartě <menuitem>Formát – Styl stránky – Organizátor</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12366,14 +12366,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Ručně stanovený rozsah stylu stránky"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Styl stránky „Výchozí“ nenastavuje jiný „další styl“ na kartě <menuitem>Formát – Styl stránky – Organizátor</menuitem>. Místo toho je „další styl“ nastaven také jako „Výchozí“. Všechny styly stránky, které jsou následovány tím samým stylem stránky, mohou zahrnovat více stránek. Dolní a horní meze rozsahu stylu stránky jsou určovány pomocí „zalomení stránky se stylem“. Všechny stránky mezi dvěma „zalomeními stránky se stylem“ používají stejný styl stránky."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12501,14 +12501,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "V seznamu stylů stránky klepněte pravým tlačítkem na položku a vyberte <emph>Nový</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Na kartě <emph>Organizátor</emph> zadejte do pole <emph>Název</emph> název stylu."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
index a0a8982446c..d68a5f1673a 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-03 20:32+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564947888.000000\n"
#. W5ukN
@@ -35616,7 +35616,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No Break"
-msgstr ""
+msgstr "Bez dělení"
#. ngTBv
#: WriterCommands.xcu
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index 8fbfd5e0639..a9722ae1c7c 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/cs/>\n"
"Language: cs\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565903887.000000\n"
#. kBovX
@@ -14288,14 +14288,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Režim porovnávání"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14313,6 +14314,10 @@ msgid ""
"2 - Binary search values sorted in ascending order.\n"
"-2 - Binary search values sorted in descending order."
msgstr ""
+"1 - Vyhledávání od první hodnoty (výchozí).\n"
+"-1 - Vyhledávání od poslední hodnoty (obrácené).\n"
+"2 - Binární vyhledávání hodnot seřazených vzestupně.\n"
+"-2 - Binární vyhledávání hodnot seřazených sestupně."
#. KZapz
#: sc/inc/scfuncs.hrc:3401
@@ -14518,14 +14523,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Režim porovnávání"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -14543,6 +14549,10 @@ msgid ""
"2 - Binary search values sorted in ascending order.\n"
"-2 - Binary search values sorted in descending order."
msgstr ""
+"1 - Vyhledávání od první hodnoty (výchozí).\n"
+"-1 - Vyhledávání od poslední hodnoty (obrácené).\n"
+"2 - Binární vyhledávání hodnot seřazených vzestupně.\n"
+"-2 - Binární vyhledávání hodnot seřazených sestupně."
#. XJ4FS
#: sc/inc/scfuncs.hrc:3463
@@ -17159,7 +17169,7 @@ msgstr "Výpočet nebo název "
#: sc/inc/scfuncs.hrc:4275
msgctxt "SC_OPCODE_LET"
msgid "A calculation that uses all names within the LET function. This must be the last argument in the LET function. Or a second Name to assign to a second Name value. If a second Name is specified, Name value 2 and Calculation or Name 3 become required."
-msgstr ""
+msgstr "Výpočet, který používá všechny názvy funkce LET. Musí se jednat o poslední argument funkce LET. Případně druhý název, jestliže mu chcete přiřadit hodnoty. Pokud je druhý název uveden, stane se povinnými Hodnota názvu 2 a Výpočet nebo název 3."
#. pDDme
#: sc/inc/scstyles.hrc:29
@@ -23236,91 +23246,91 @@ msgid "_Standard"
msgstr "_Standardní"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Obecné"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Čára"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Oblast"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Stínování"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Průhlednost"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Písmo"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Odsazení a rozestupy"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Text"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animace textu"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Kótování"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Zarovnání"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asijská typografie"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulátory"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Zvýraznění"
@@ -23919,102 +23929,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Smazat"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Bez ohraničení"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Všechna ohraničení"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Vnější ohraničení"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Tlusté vnější ohraničení"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tlusté ohraničení dole"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dvojité ohraničení dole"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Ohraničení nahoře a tlusté dole"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Ohraničení nahoře a dvojité dole"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Ohraničení vlevo"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Ohraničení vpravo"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Ohraničení nahoře"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Ohraničení dole"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Ohraničení úhlopříčně nahoru"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Ohraničení úhlopříčně dolů"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Ohraničení nahoře a dole"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Ohraničení vlevo a vpravo"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24052,49 +23966,49 @@ msgid "Format Cells"
msgstr "Formát buněk"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Čísla"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Písmo"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Zarovnání"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asijská typografie"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Ohraničení"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Pozadí"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Ochrana buňky"
@@ -28183,43 +28097,43 @@ msgid "Page Style"
msgstr "Styl stránky"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Obecné"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Stránka"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Ohraničení"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Pozadí"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Záhlaví"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Zápatí"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "List"
@@ -28261,55 +28175,55 @@ msgid "Cell Style"
msgstr "Styl buňky"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Obecné"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Čísla"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Písmo"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Zarovnání"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asijská typografie"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Ohraničení"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Pozadí"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Ochrana buňky"
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 98a96013ab1..e1394631fb1 100644
--- a/source/cs/sd/messages.po
+++ b/source/cs/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 20:32+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/cs/>\n"
@@ -9559,97 +9559,97 @@ msgid "_Standard"
msgstr "_Standardní"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Obecné"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Čára"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Oblast"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Stínování"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Průhlednost"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Písmo"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Odsazení a rozestupy"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animace textu"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Kótování"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Spojnice"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Zarovnání"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asijská typografie"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulátory"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Zvýraznění"
diff --git a/source/cs/sfx2/messages.po b/source/cs/sfx2/messages.po
index 9961f064774..8f8f4ffdf11 100644
--- a/source/cs/sfx2/messages.po
+++ b/source/cs/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-03 20:32+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562619018.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makra jsou zakázána kvůli nastavení Zabezpečení maker."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makra jsou sice podepsána, ale dokument (obsahující události) podepsán není."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Zobrazit makra"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Zobrazit možnosti zabezpečení"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Zobrazit události"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Elegantní šedá"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Včelí úl"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modrá křivka"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint plánu"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Sladkosti"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Žlutý nápad"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Ohnisko"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lesní zátiší"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Svěží"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirace"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Světla"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Vyrůstající svoboda"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Půlnoční modř"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Příroda"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Tužka"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavír"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Pokrok"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Západ slunce"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Starožitnost"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Svěží"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Životopis"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Stručný životopis"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Výchozí"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderní"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderní obchodní dopis bezpatkový"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderní obchodní dopis patkový"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitky s logem"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jednoduchý"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "Podnikové procesy (BPMN)"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Běžný pro zjednodušenou čínštinu"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Běžný pro japonštinu"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Odstranit"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vymazat vše"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Délka hesla"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Zadané heslo způsobuje problémy s interoperabilitou. Zadejte heslo kratší než 52 bajtů nebo delší než 55 bajtů."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}+kliknutí otevře hypertextový odkaz: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kliknutím otevřete hypertextový odkaz: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(použity ve stylech: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Sešit"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Prezentace"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Kresba"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Naposledy použité"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Bez posledních znaků"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Obnovit ~všechny výchozí šablony"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Obnovit vý~chozí textový dokument"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Obnovit vý~chozí sešit"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Obnovit vý~chozí prezentaci"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Obnovit vý~chozí kresbu"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importovat"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Rozšíření"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Přejmenovat"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Přejmenovat kategorii"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nová kategorie"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Průzkumník objektů UNO"
diff --git a/source/cs/svtools/messages.po b/source/cs/svtools/messages.po
index 53195af2e95..6dba2bb17c3 100644
--- a/source/cs/svtools/messages.po
+++ b/source/cs/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-15 19:47+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/cs/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565904885.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nelze navázat internetové spojení s $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Chybová zpráva serveru: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Chybová zpráva serveru: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Nastala obecná chyba Internetu."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Požadovaná data z Internetu nejsou dostupná v mezipaměti a nelze je přenést, neboť nejste v režimu online."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Obsah nelze vytvořit."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Název souboru je neplatný pro cílový souborový systém."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Neplatná vstupní syntaxe."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Uložte dokument ve formátu %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Byl otevřen maximální možný počet dokumentů. Před otevřením nového dokumentu musíte některé dokumenty zavřít."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nelze vytvořit záložní kopii."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Neplatná délka dat."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkce není možná: cesta obsahuje aktuální adresář."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkce není možná: zařízení (mechanika) není identické."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Zařízení (mechanika) není připravené."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Chybný kontrolní součet."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkce není možná: chráněné proti zápisu."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Nejprve deaktivujte režim sdílení."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Nalezena chyba formátu souboru na $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filtr pro tento formát souboru je zakázán. Kontaktujte správce systému."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Obecná chyba OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Akci není možné provést se současným stavem objektu."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekt nepodporuje žádné akce."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekt nepodporuje tuto akci."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) při aktivaci objektu"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index 8a73718d674..1d371914d37 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/cs/>\n"
"Language: cs\n"
@@ -8113,7 +8113,7 @@ msgstr "Základní latinka"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Doplňková latinka 1"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8149,7 +8149,7 @@ msgstr "Kombinující diakritické znaky"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Řecké a koptské"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8749,7 +8749,7 @@ msgstr "Čerokézské"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Unifikované kanadské domorodé slabičné"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9151,7 +9151,7 @@ msgstr "Samaritánské"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Rozšířené unifikované kanadské domorodé slabičné"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10003,7 +10003,7 @@ msgstr "Toto"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Rozšířené unifikované kanadské domorodé slabičné A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Bez ohraničení"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Pouze vnější ohraničení"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Vnější ohraničení a vodorovné čáry"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Vnější ohraničení a všechny vnitřní čáry"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Vnější ohraničení a svislé čáry"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Vnější ohraničení bez změny vnitřních čar"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Pouze úhlopříčky"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Ohraničení úhlopříčně dolů"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Ohraničení úhlopříčně nahoru"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Ohraničení s křížícími se úhlopříčkami"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Ohraničení na všech čtyřech stranách"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Ohraničení pouze vlevo a vpravo"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Ohraničení pouze nahoře a dole"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Ohraničení nahoře a dole a všechny vodorovné čáry"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Ohraničení pouze vlevo"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Ohraničení pouze vpravo"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Ohraničení pouze nahoře"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Ohraničení pouze dole"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Ohraničení nahoře a dole a všechny vnitřní čáry"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Ohraničení vlevo a vpravo a všechny vnitřní čáry"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Odstranit z oblíbených"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Chybí znak"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Přidat k oblíbeným"
@@ -10281,19 +10331,19 @@ msgstr "Přidat k oblíbeným"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kontrola velikosti obrázků"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Obrázek „%NAME%“ má pro aktuální velikost (%DPIX% × %DPIY% DPI) příliš málo pixelů"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Obrázek „%NAME%“ má pro aktuální velikost (%DPIX% × %DPIY% DPI) příliš mnoho pixelů"
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index bf0247f4455..c665fbb394b 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: Czech <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/cs/>\n"
"Language: cs\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Pokračování seznamu 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Záhlaví a zápatí"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10611,41 +10611,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabulka"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formátování"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hypertextový odkaz"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Předstírané popisky"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Číslování"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Ostatní"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Kliknutím aktualizujete..."
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -16443,55 +16449,55 @@ msgid "Frame"
msgstr "Rámec"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Umístění a velikost"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Možnosti"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Obtékání textu"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hypertextový odkaz"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Ohraničení"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Oblast"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Průhlednost"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Sloupce"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28888,43 +28894,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Zruší všechny změny provedené na zobrazené kartě a obnoví nastavení, které obsahovala při otevření dialogového okna."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Obecné"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Písmo"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Umístění"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asijské rozvržení"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Zvýraznění"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Ohraničení"
@@ -28936,85 +28942,85 @@ msgid "List Style"
msgstr "Styl seznamu"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Pojmenujte styl a zařaďte jej do kategorie"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Obecné"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Zvolte předem definovaný typ odrážky"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Neseřazený"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Zvolte předem definovaný seřazený seznam"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Seřazený"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Zvolte předem definovaný formát osnovy"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Osnova"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Zvolte předem definovaný grafický symbol odrážky"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Obrázek"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Změňte odsazení, rozestupy a zarovnání čísel nebo symbolů seznamu"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Umístění"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Vytvořte vlastní formát seznamu či osnovy"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Přizpůsobit"
@@ -29026,109 +29032,109 @@ msgid "Paragraph Style"
msgstr "Styl odstavce"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Obecné"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Odsazení a rozestupy"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Zarovnání"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tok textu"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asijská typografie"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Písmo"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efekty pro písmo"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Umístění"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asijské rozvržení"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Zvýraznění"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulátory"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Iniciály"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Oblast"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Průhlednost"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Ohraničení"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Podmínka"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Nastavte stylu odstavce úroveň osnovy, styl seznamu a číslování řádků."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Osnova a seznam"
@@ -29140,55 +29146,55 @@ msgid "Frame Style"
msgstr "Styl rámce"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Obecné"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Typ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Možnosti"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Obtékání textu"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Oblast"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Průhlednost"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Ohraničení"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Sloupce"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29206,61 +29212,61 @@ msgid "Standard"
msgstr "Standardní"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Obecné"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Stránka"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Oblast"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Průhlednost"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Záhlaví"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Zápatí"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Ohraničení"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Sloupce"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Poznámka pod čarou"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Mřížka textu"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 47255123b8e..d926f0501ee 100644
--- a/source/cy/cui/messages.po
+++ b/source/cy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/cy/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Agorwch ffeil CSV fel dalen newydd yn y daenlen gyfredol trwy Dalen > Dalen o'r ffeil."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Gallwch barhau i ysgrifennu gyda'r priodoleddau fformatio rhagosodedig ar ôl gosod trwm, italig neu danlinellu â llaw, drwy bwyso %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/cy/formula/messages.po b/source/cy/formula/messages.po
index 4dd3011e1cd..b9dfd247528 100644
--- a/source/cy/formula/messages.po
+++ b/source/cy/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1554800815.000000\n"
#. YfKFn
@@ -1400,7 +1400,7 @@ msgstr "UNIGRYW"
#: formula/inc/core_resource.hrc:2559
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "LET"
-msgstr ""
+msgstr "LET"
#. dTotR
#: formula/inc/core_resource.hrc:2560
@@ -2852,7 +2852,7 @@ msgstr "Dewis"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Cynnwys:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/cy/fpicker/messages.po b/source/cy/fpicker/messages.po
index dc81ae3a720..0aa6cc37640 100644
--- a/source/cy/fpicker/messages.po
+++ b/source/cy/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2023-12-13 15:03+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/cy/>\n"
"Language: cy\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1538496835.000000\n"
#. SJGCw
@@ -560,70 +560,70 @@ msgstr "Cadw"
#: include/fpicker/strings.hrc:41
msgctxt "STR_FILESAVE_AUTOEXTENSION"
msgid "Automatically adds the file extension to the end of the file name that corresponds to the selected file type."
-msgstr ""
+msgstr "Yn ychwanegu estyniad ffeil yn awtomatig i ddiwedd yr enw ffeil sy'n cyfateb i'r math yna o ffeil."
#. 4qPci
#: include/fpicker/strings.hrc:42
msgctxt "STR_FILESAVE_SAVEWITHPASSWORD"
msgid "Protects the file with a password that must be entered before a user can open the file."
-msgstr ""
+msgstr "Yn diogelu'r ffeil gyda chyfrinair y mae'n rhaid ei roi cyn y gall y defnyddiwr ddefnyddio'r ffeil."
#. dFCgT
#: include/fpicker/strings.hrc:43
msgctxt "STR_FILESAVE_CUSTOMIZEFILTER"
msgid "Allows you to set the spreadsheet saving options for some types of data files."
-msgstr ""
+msgstr "Yn caniatáu i chi osod dewisiadau cadw'r daenlen ar gyfer rhai mathau o ffeiliau data."
#. fJtCZ
#: include/fpicker/strings.hrc:44
msgctxt "STR_FILEOPEN_READONLY"
msgid "Opens the file in read-only mode."
-msgstr ""
+msgstr "Yn agor y ffeil yn y modd darllen-yn-unig."
#. BMEgo
#: include/fpicker/strings.hrc:45
msgctxt "STR_FILEDLG_LINK_CB"
msgid "Inserts the selected graphic file as a link."
-msgstr ""
+msgstr "Yn mewnosod y ffeil raffigol yma fel dolen."
#. jHPYN
#: include/fpicker/strings.hrc:46
msgctxt "STR_FILEDLG_PREVIEW_CB"
msgid "Displays a preview of the selected graphic file."
-msgstr ""
+msgstr "Yn dangos rhagolwg o'r ffeil raffigol yma."
#. xWLX2
#: include/fpicker/strings.hrc:47
msgctxt "STR_FILESAVE_DOPLAY"
msgid "Plays the selected sound file. Click again to stop playing the sound file."
-msgstr ""
+msgstr "Yn chwarae'r sain yma. Cliciwch eto i atal chwarae'r ffeil sain."
#. 27ayC
#: include/fpicker/strings.hrc:48
msgctxt "STR_FILEOPEN_VERSION"
msgid "If there are multiple versions of the selected file, select the version that you want to open."
-msgstr ""
+msgstr "Os oes fersiynau niferus o'r ffeil yma, dewiswch y fersiwn rydych eisiau ei hagor."
#. K6RjJ
#: include/fpicker/strings.hrc:49
msgctxt "STR_FILESAVE_TEMPLATE"
msgid "Select the paragraph style or outline level that you want to use to separate the source document into sub-documents."
-msgstr ""
+msgstr "Dewiswch yr arddull paragraff neu lefel amlinell rydych am ei defnyddio i wahanu'r ddogfen ffynhonnell i is ddogfennau"
#. 7GLrR
#: include/fpicker/strings.hrc:50
msgctxt "STR_FILEOPEN_IMAGE_TEMPLATE"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Dewiswch yr arddull ffrâm ar gyfer y graffig."
#. Lfiaj
#: include/fpicker/strings.hrc:51
msgctxt "STR_FILEOPEN_IMAGE_ANCHOR"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Dewiswch yr arddull ffrâm ar gyfer y graffig."
#. d6DG8
#: include/fpicker/strings.hrc:52
msgctxt "STR_FILESAVE_SELECTION"
msgid "Exports only the selected graphic objects in %PRODUCTNAME Draw and Impress to another format. If this box is not checked, the entire document is exported."
-msgstr ""
+msgstr "Yn allforio dim ond y gwrthrychau graffigol a ddewiswyd yn %PRODUCTNAME Draw ac Impress i fformat arall. Os nad yw'r blwch hwn wedi'i dicio, bydd y ddogfen gyfan yn cael ei hallforio."
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index def33f7ac9c..1cc441fd49b 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/cy/>\n"
@@ -14304,14 +14304,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Modd Cyfateb"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14534,14 +14535,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Modd Cyfateb"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23255,91 +23257,91 @@ msgid "_Standard"
msgstr "_Safonol"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Cyffredinol"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Llinell"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Ardal"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Cysgodi"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Tryloywder"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Ffont"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Mewnoliad a Bylchu"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Testun"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animeiddio Testun"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensiynu"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliniad"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typograffeg Asiaidd"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabiau"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Amlygu"
@@ -23938,102 +23940,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Dileu"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Dim Border"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Pob Border"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Border Allanol"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Border Blwch Trwm"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Border Gwaelod Trwm"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Border Gwaelod Dwbl"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Borderi Gwaelod Trwm a Brig"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Borderi Gwaelod Dwbl a Brig"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Border Chwith"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Border De"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Border Brig"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Border Gwaelod"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Border Croesgornel i Fyny"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Border Croesgornel i Lawr"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Borderi Brig a Gwaelod"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Borderi De a Chwith"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24071,49 +23977,49 @@ msgid "Format Cells"
msgstr "Fformatio Celloedd"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Rhifau"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Ffont"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Aliniad"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Typograffeg Asiaidd"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Borderi"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Cefndir"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Diogelwch Cell"
@@ -28202,43 +28108,43 @@ msgid "Page Style"
msgstr "Arddull Tudalen"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Cyffredinol"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Tudalen"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Borderi"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Cefndir"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Pennyn"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Troedyn"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Dalen"
@@ -28280,55 +28186,55 @@ msgid "Cell Style"
msgstr "Arddull Cell"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Cyffredinol"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Rhifau"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Ffont"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliniad"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typograffeg Asiaidd"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Borderi"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Cefndir"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Diogelwch Cell"
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index 2924cf90ee7..f9ac06e6bb7 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/cy/>\n"
@@ -9561,97 +9561,97 @@ msgid "_Standard"
msgstr "_Safonol"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Cyffredinol"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Llinell"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Ardal"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Cysgodi"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Tryloywder"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Ffont"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Mewnoliad a Bylchu"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Testun"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animeiddio Testun"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "UDimensiynu"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Cysylltydd"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Aliniad"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typograffeg Asiaidd"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabiau"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Amlygu"
diff --git a/source/cy/sfx2/messages.po b/source/cy/sfx2/messages.po
index 71c3dd004df..d60c595a79b 100644
--- a/source/cy/sfx2/messages.po
+++ b/source/cy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565703626.000000\n"
#. bHbFE
@@ -1632,376 +1632,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Mae'r macros wedi'u hanalluogi oherwydd gosodiadau Diogelwch Macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Mae'r macros wedi'u llofnodi, ond nid yw'r ddogfen (yn cynnwys digwyddiadau dogfen) wedi ei llofnodi."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Dangos Macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Dangos Dewisiadau Diogelwch"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Dangos Digwyddiadau"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Llwyd Coeth"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Cwch Gwenyn"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cromlin Las"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cynlluniau Glasbrint"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Candi"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Syniad Melyn"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Canolbwynt"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Aderyn y Goedwig"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Ffreshni"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ysbrydoliaeth"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Goleuadau"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Rhyddid Cynyddol"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Glas y Nos"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Darlun o Natur"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pensil"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portffolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Cynnydd"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Machlud Haul"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Hynafol"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Llachar"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Parhau"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Rhagosodiad"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Llythyr busnes modern sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Llythyr busnes modern serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cerdyn busnes gyda logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Syml"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Tsieinëeg Symledig Normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japaneaidd Normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Tynnu"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clirio Pob Un"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Hyd cyfrinair"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Mae'r cyfrinair rydych wedi ei gynnig yn achosi anawsterau rhyngweithio. Rhowch gyfrinair sy'n llai na 52 did neu hirach na 55 did."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-cliciwch i agor dolen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Cliciwch i agor dolen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(yn cael ei ddefnyddio gan: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dogfen"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Taenlen"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Cyflwyniad"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Lluniadu"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Defnyddiwyd yn ddiweddar"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Dim nodau diweddar"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Ailosod Pob Templed ~Rhagosodedig"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Ailosod y Ddogfen ~Testun Rhagosodedig"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Ailosod y ~Daenlen Rhagosodedig"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Ailosod y ~Cyflwyniad Rhagosodedig"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Ailosod y ~Lluniadu Rhagosodedig"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Mewnforio"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Estyniadau"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Ailenwi"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Ailenwi Categori"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categori Newydd"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Archwiliwr Gwrthrych UNO"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index e2cda3134e1..01887aa98b0 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-17 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/cy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563633284.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Methu creu cyswllt Rhyngrwyd i $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Neges gwall gweinydd: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Neges gwall gweinydd: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Gwall Rhyngrwyd cyffredinol wedi digwydd."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Nid yw'r wybodaeth o'r Rhyngrwyd ar gael yn y storfa dros dro ac nid oes modd ei drosglwyddo am nad ydych wedi mynd Ar-lein."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Methu creu'r cynnwys."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Mae'r enw ffeil yn rhy hir ar gyfer y system ffeilio targed."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Mae'r gystrawen mewnbwn yn annilys."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Cadwch y ddogfen yn fformat ffeil %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Rydych wedi cyrraedd uchafswm y dogfennau mae modd eu hagor ar yr un pryd. Rhaid cau un neu fwy o ddogfennau cyn agor dogfen newydd."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Methu creu'r ffolder wrth gefn."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Hyd data annilys."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Gweithred amhosibl: mae'r llwybr yn cynnwys y cyfeiriadur presennol."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Swyddogaeth amhosibl: nid yw'r (gyrrwr) dyfais yr un peth."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Dyfais (gyrrwr) ddim yn barod."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Checksum anghywir."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Swyddogaeth amhosibl: amddiffyn rhag ysgrifennu."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Atal y modd rhannu yn gyntaf."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Gwall fformat ffeil yn ffeil $(ARG1)(rhes,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Mae hidl y fformat ffeil wedi ei analluogi yn y ffurfweddiad. Cysylltwch â'ch gweinyddwr systemau."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Gwall cyffredinol OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Methu cyflawni'r weithred yng nghyflwr presennol y gwrthrych."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Nid yw'r gwrthrych yn cynnal unrhyw weithred."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Nid yw'r gwrthrych yn cynnal y weithred."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) yn gweithredu gwrthrych"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 12658034571..a5f8d73230f 100644
--- a/source/cy/svx/messages.po
+++ b/source/cy/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/cy/>\n"
"Language: cy\n"
@@ -8113,7 +8113,7 @@ msgstr "Lladin Sylfaenol"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Latin-1 Supplement"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8149,7 +8149,7 @@ msgstr "Marciau Deiacritig Cyfunol"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Groeg a Choptig"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8749,7 +8749,7 @@ msgstr "Cherokee"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Sillafyddion Cynfrodorol Unedig Canada"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9151,7 +9151,7 @@ msgstr "Samaritaidd"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Syllafwyddor Cynfrodorol Unedig Canada Estynedig"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10003,7 +10003,7 @@ msgstr "Toto"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Syllafwyddor Cynfrodorol Unedig Canada Estynedig-A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Dim Borderi"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Border Allanol yn Unig"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Border Allanol a Llinellau Llorweddol"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Border Allanol a Phob Llinell Fewnol"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Border Allanol a Llinellau Fertigol"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Border Allanol Heb Newid Llinellau Mewnol"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Llinellau Croeslin yn Unig"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Border Croesgornel i Lawr"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Border Croesgornel i Fyny"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Border Croesymgroes"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Y Pedwar Border i Gyd"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Borderi Chwith a De yn Unig"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Borderi Brig a Gwaelod yn Unig"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Borderi Brig a Gwaelod a'r Holl Linellau Llorweddol"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Border Chwith Yn Unig"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Border De yn Unig"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Border Brig yn Unig"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Border Gwaelod yn Unig"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Borderi Brig a Gwaelod a Phob Llinell Fewnol"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Borderi Brig a Gwaelod a Phob Llinell Fewnol"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Tynnu o'r Ffefrynnau"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Nod coll"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Ychwanegu i'r Ffefrynnau"
@@ -10281,19 +10331,19 @@ msgstr "Ychwanegu i'r Ffefrynnau"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Gwirio Maint Graffig"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Nid oes gan ddelwedd '%NAME%' ddigon o bicseli ar gyfer y maint presennol (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Mae gan ddelwedd '%NAME%' ormod o bicseli ar gyfer y maint presennol (%DPIX% x %DPIY% DPI)"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index f0705de92bf..4e1353700c9 100644
--- a/source/cy/sw/messages.po
+++ b/source/cy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Rhoslyn Prys <post@meddal.com>\n"
"Language-Team: Welsh <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/cy/>\n"
"Language: cy\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Parhau Rhestr 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Pennyn a Throedyn"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10408,7 +10408,7 @@ msgstr "Caniatáu i dabiau estyn tu hwnt i'r ymyl de"
#: sw/inc/strings.hrc:1495
msgctxt "STR_COMPAT_OPT_DO_NOT_MIRROR_RTL_DRAW_OBJS"
msgid "Do not mirror drawing objects anchored in paragraphs with an RTL writing direction"
-msgstr ""
+msgstr "Peidio â drychu delweddau lluniadu wedi'u hangori mewn paragraffau gyda chyfeiriad ysgrifennu RTL"
#. eREXB
#: sw/inc/strings.hrc:1496
@@ -10632,38 +10632,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabl"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Fformatio"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Dolen"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Capsiynau efelychiedig"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Rhifo"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Arall"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16464,55 +16470,55 @@ msgid "Frame"
msgstr "Ffrâm"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Safle a Maint"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Dewisiadau"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Amlapio"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Dolen"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Borderi"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Ardal"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Tryloywder"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colofnau"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28909,43 +28915,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Dychwelwch unrhyw newidiadau a wnaed ar y tab a sy'n cael ei ddangos yma i'r gosodiadau a oedd yn bresennol pan agorwyd y dialog hwn."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Cyffredinol"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Ffont"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Safle"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Cynllun Asiaidd"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Amlygu"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Borderi"
@@ -28957,85 +28963,85 @@ msgid "List Style"
msgstr "Arddull Rhestr"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Enwch a chuddio arddulliau a ddiffiniwyd gan y defnyddiwr"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Cyffredinol"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Dewiswch fath bwled wedi'i ddiffinio ymlaen llaw"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Heb fod mewn trefn"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Dewiswch trefn rhestr wedi'i diffinio ymlaen llaw"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Mewn trefn"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Dewiswch fformat amlinellol wedi'i ddiffinio ymlaen llaw"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Amlinell"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Dewiswch symbol bwled graffig wedi'i ddiffinio ymlaen llaw"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Delwedd"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Addaswch fewnoliad, bylchau ac aliniad rhifau neu symbolau rhestr"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Safle"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Dyluniwch eich rhestr eich hun neu fformat amlinellol"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Cyfaddasu"
@@ -29047,109 +29053,109 @@ msgid "Paragraph Style"
msgstr "Arddull Paragraff"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Cyffredinol"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Mewnoliad a Bylchu"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Aliniad"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Llif Testun"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Typograffeg Asiaidd"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Ffont"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Effeithiau Ffont"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Safle"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Cynllun Asiaidd"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Amlygu"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabiau"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Prif Lythrennau Bach"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Ardal"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Tryloywder"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Borderi"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Gydag Amod"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Gosod lefel amlinellol, arddull rhestr a rhifo llinell ar gyfer arddull paragraff."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Amlinell a Rhestr"
@@ -29161,55 +29167,55 @@ msgid "Frame Style"
msgstr "Arddull Ffrâm"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Cyffredinol"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Math"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Dewisiadau"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Amlapio"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Ardal"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Tryloywder"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Borderi"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colofnau"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29227,61 +29233,61 @@ msgid "Standard"
msgstr "Safonol"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Cyffredinol"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Tudalen"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Ardal"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Tryloywder"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Pennyn"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Troedyn"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Borderi"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colofnau"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Troednodyn"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Grid Testun"
diff --git a/source/da/chart2/messages.po b/source/da/chart2/messages.po
index 875cb48482e..804c74cbb64 100644
--- a/source/da/chart2/messages.po
+++ b/source/da/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: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2024-06-09 01:45+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/da/>\n"
"Language: da\n"
@@ -935,7 +935,7 @@ msgstr "Lagkage"
#: chart2/inc/strings.hrc:163
msgctxt "STR_PIE_EXPLODED"
msgid "Exploded Pie Chart"
-msgstr "Adskilt cirkeldiagram"
+msgstr "Adskilt lagkagediagram"
#. fAPmA
#: chart2/inc/strings.hrc:164
@@ -2747,7 +2747,7 @@ msgstr "Egenskaber..."
#: chart2/uiconfig/ui/sidebartype.ui:207
msgctxt "sidebartype|sort"
msgid "_Sort by X values"
-msgstr "_Sorter efter X-værdier"
+msgstr "_Sortér efter X-værdier"
#. thu3G
#: chart2/uiconfig/ui/sidebartype.ui:223
@@ -3185,13 +3185,13 @@ msgstr "Vælg en farve for den valgte lyskilde."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:279
msgctxt "tp_3D_SceneIllumination|BTN_LIGHTSOURCE_COLOR|tooltip_text"
msgid "Select a color using the Pick a Color dialog"
-msgstr "Vælg en farve med Farvevalgs-dialogboksen"
+msgstr "Vælg en farve med Farvevalg-dialogen"
#. D3Udo
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:283
msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHTSOURCE_COLOR"
msgid "Select a color using the Pick a Color dialog."
-msgstr "Vælg en farve med Farvevalgs-dialogboksen."
+msgstr "Vælg en farve med Farvevalg-dialogen."
#. mgXyK
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:306
@@ -3209,13 +3209,13 @@ msgstr "Vælg en farve for det omgivende lys."
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:363
msgctxt "tp_3D_SceneIllumination|BTN_AMBIENT_COLOR|tooltip_text"
msgid "Select a color using the Pick a Color dialog"
-msgstr "Vælg en farve med Farvevalgs-dialogboksen"
+msgstr "Vælg en farve med Farvevalg-dialogen"
#. YbFV8
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:367
msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_AMBIENT_COLOR"
msgid "Select a color using the Pick a color dialog."
-msgstr "Vælg en farve med Farvevalgs-dialogboksen."
+msgstr "Vælg en farve med Farvevalg-dialogen."
#. LFMGL
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:383
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index d80e44f600b..d7545abf812 100644
--- a/source/da/cui/messages.po
+++ b/source/da/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-20 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/da/>\n"
"Language: da\n"
@@ -2356,7 +2356,7 @@ msgstr "%PRODUCTNAME lader dig bruge støtteredskaber så som eksterne skærmlæ
#: cui/inc/tipoftheday.hrc:84
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab."
-msgstr "Vil du sortere en serie som A1, A2, A3, A11, A15 i %PRODUCTNAME Calc ikke i alfabetisk orden men i nummerrækkefølge? Så skal du under Data > Sorter > på fanebladet Indstillinger markere afkrydsningsfeltet Aktiver naturlig sortering."
+msgstr "Vil du sortere en serie som A1, A2, A3, A11, A15 i %PRODUCTNAME Calc ikke i alfabetisk orden men i nummerrækkefølge? Så skal du under Data ▸ Sortér på fanebladet Indstillinger markere afkrydsningsfeltet Aktivér naturlig sortering."
#. Wx8QG
#. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/12030200.html
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Åbn en CSV-fil som et nyt ark i det aktuelle regneark gennem Ark ▸ Indsæt ark fra fil."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Ved at trykke %MOD1+Shift+X kan du fortsætte med at skrive med standardformatering efter manuelt at have brugt fed, kursiv eller understregning."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -2911,7 +2911,7 @@ msgstr "Du kan give hvert faneblad sin egen farve: højreklik på fanebladet ell
#: cui/inc/tipoftheday.hrc:177
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Trace cells used in a formula, precedents (Shift+F9) or dependents (Shift+F5) (or use Tools ▸ Detective). For each hit you go one more step in the chain."
-msgstr "Spor celler, der bruges i formler, overordnede (Skift+F9) eller underordnede (Skift+F5) (eller brug Funktioner ▸ Detektiv). For hvert tryk går du et trin videre i kæden."
+msgstr "Spor celler, der bruges i formler, fra forudgående (Skift+F9) eller til afhængige (Skift+F5) (eller brug Funktioner ▸ Detektiv). For hvert tryk går du et trin videre i kæden."
#. mJ6Gu
#. local help missing
@@ -3468,7 +3468,7 @@ msgstr "Har du brug for at udfylde en serie? Markér celleområdet og vælg Ark
#: cui/inc/tipoftheday.hrc:266
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)."
-msgstr "Vil du vide, om der er henvist til en celle i andre cellers formler ? Funktioner ▸ Detektiv ▸ Spor underordnede (skift+F5)."
+msgstr "Vil du vide, om der er henvist til en celle i andre cellers formler ? Funktioner ▸ Detektiv ▸ Spor til afhængie (skift+F5)."
#. QeBjt
#: cui/inc/tipoftheday.hrc:267
@@ -4547,7 +4547,7 @@ msgstr "Skriv en forkortelse fulgt af et punktum og klik derefter på Ny. Dette
#: cui/uiconfig/ui/acorexceptpage.ui:67
msgctxt "acorexceptpage|autoabbrev"
msgid "Auto_Include"
-msgstr "Autoinkluder"
+msgstr "Autoinkludér"
#. KRr5y
#: cui/uiconfig/ui/acorexceptpage.ui:73
@@ -4601,7 +4601,7 @@ msgstr "Skriv det ord eller den forkortelse, der begynder med to storebogstaver,
#: cui/uiconfig/ui/acorexceptpage.ui:258
msgctxt "acorexceptpage|autodouble"
msgid "A_utoInclude"
-msgstr "_Inkluder automatisk"
+msgstr "_Inkludér automatisk"
#. Cqrp5
#: cui/uiconfig/ui/acorexceptpage.ui:264
@@ -4739,7 +4739,7 @@ msgstr "Kun aktiv version"
#: cui/uiconfig/ui/additionsdialog.ui:25
msgctxt "bulletandposition|gallery"
msgid "Sort by"
-msgstr "Sorter efter"
+msgstr "Sortér efter"
#. LhkwF
#: cui/uiconfig/ui/additionsdialog.ui:34
@@ -7451,7 +7451,7 @@ msgstr "Ny"
#: cui/uiconfig/ui/colorpickerdialog.ui:60
msgctxt "colorpickerdialog|ColorPicker"
msgid "Pick a Color"
-msgstr "Vælg en farve"
+msgstr "Farvevalg"
#. fMFDR
#: cui/uiconfig/ui/colorpickerdialog.ui:158
@@ -7671,7 +7671,7 @@ msgstr "CMYK"
#: cui/uiconfig/ui/colorpickerdialog.ui:812
msgctxt "extended tip | ColorPicker"
msgid "Define custom colors using a two-dimensional graphic and numerical gradient chart of the Pick a Color dialog."
-msgstr "Definér brugertilpassede farver med et todimensionelt grafisk og numerisk diagram over dialogen Vælg en farve."
+msgstr "Definér brugertilpassede farver med et todimensionelt grafisk og numerisk diagram i Farvevalg-dialogen."
#. vDFei
#: cui/uiconfig/ui/comment.ui:18
@@ -16458,13 +16458,13 @@ msgstr "minutter"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Gem i stedet dokumentet automatisk"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Angiver at kontorpakken gemmer det ændrede dokument selv, i stedet for at oprette en midlertidig version til automatisk genoprettelse. Bruger samme tidsinterval som automatisk genoprettelse."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
@@ -21998,7 +21998,7 @@ msgstr "Farvegraduering"
#: cui/uiconfig/ui/transparencytabpage.ui:125
msgctxt "transparencytabpage|extended_tip|RBT_TRANS_GRADIENT"
msgid "Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties."
-msgstr "Anvender en gennemsigtighedsfarveovergang på den nuværende fyldfarve. Vælg denne indstilling, og indstil derefter farveovergangsegenskaberne."
+msgstr "Anvender en gennemsigtighedsfarveovergang på den nuværende udfyldningsfarve. Vælg denne indstilling, og indstil derefter farveovergangsegenskaberne."
#. FBxYk
#: cui/uiconfig/ui/transparencytabpage.ui:146
diff --git a/source/da/extensions/messages.po b/source/da/extensions/messages.po
index 2bee681ce7a..95a6dd2fa0c 100644
--- a/source/da/extensions/messages.po
+++ b/source/da/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: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-06-10 12:51+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/da/>\n"
"Language: da\n"
@@ -289,7 +289,7 @@ msgstr "Slet datapost"
#: extensions/inc/stringarrays.hrc:78
msgctxt "RID_RSC_ENUM_BUTTONTYPE"
msgid "Refresh form"
-msgstr "Opdater formular"
+msgstr "Opdatér formular"
#. o9DBE
#: extensions/inc/stringarrays.hrc:83
@@ -1099,7 +1099,7 @@ msgstr "Filter"
#: extensions/inc/strings.hrc:74
msgctxt "RID_STR_SORT_CRITERIA"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. B8a85
#: extensions/inc/strings.hrc:75
@@ -1339,7 +1339,7 @@ msgstr "Rækkehøjde"
#: extensions/inc/strings.hrc:114
msgctxt "RID_STR_FILLCOLOR"
msgid "Fill color"
-msgstr "Fyldfarve"
+msgstr "Udfyldningsfarve"
#. g8XyV
#: extensions/inc/strings.hrc:115
diff --git a/source/da/filter/messages.po b/source/da/filter/messages.po
index a5bf67232f9..cd16b7985e6 100644
--- a/source/da/filter/messages.po
+++ b/source/da/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: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-06-09 01:45+0000\n"
+"PO-Revision-Date: 2024-06-23 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/da/>\n"
"Language: da\n"
@@ -399,7 +399,7 @@ msgstr "Alle"
#: filter/uiconfig/ui/pdfgeneralpage.ui:52
msgctxt "pdfgeneralpage|extended_tip|all"
msgid "Exports all defined print ranges. If no print range is defined, exports the entire document."
-msgstr "Eksporterer alle definerede udskrivningsområder. Hvis der ikke er defineret noget område, eksporteres hele dokumentet."
+msgstr "Eksporterer alle definerede udskriftsområder. Hvis der ikke er defineret noget område, eksporteres hele dokumentet."
#. mFDan
#: filter/uiconfig/ui/pdfgeneralpage.ui:64
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/03.po b/source/da/helpcontent2/source/text/sbasic/shared/03.po
index dfae1f777ad..65d4aeb1360 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-03-11 16:41+0100\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/da/>\n"
"Language: da\n"
@@ -2249,7 +2249,7 @@ msgctxt ""
"par_id171582649483675\n"
"help.text"
msgid "Sort a one dimension array in ascending or descending order. Text comparisons can be case-sensitive or not. <br/>The array must be filled homogeneously, which means that items must be scalars of the same type. <br/><literal>Empty</literal> and <literal>Null</literal> items are allowed. Conventionally <literal>Empty</literal> < <literal>Null</literal> < any other scalar value."
-msgstr "Sorter en endimensionel matrix i stigende eller faldende rækkefølge. Tekstsammenligninger kan skelne mellem Store og små bogstaver eller ikke. <br/>Matrixen skal være homogent fyldt, hvilket betyder, at elementerne skal være dem samme type skalarer. <br/>Elementerne <literal>Empty</literal> og <literal>Null</literal> er tilladt. Traditionelt er <literal>Empty</literal> < <literal>Null</literal> < enhver anden skalar værdi."
+msgstr "Sortér en endimensionel matrix i stigende eller faldende rækkefølge. Tekstsammenligninger kan skelne mellem Store og små bogstaver eller ikke. <br/>Matrixen skal være homogent fyldt, hvilket betyder, at elementerne skal være dem samme type skalarer.<br/>Elementerne <literal>Empty</literal> og <literal>Null</literal> er tilladt. Traditionelt er <literal>Empty</literal> < <literal>Null</literal> < enhver anden skalar værdi."
#. eNuB8
#: sf_array.xhp
@@ -9891,7 +9891,7 @@ msgctxt ""
"par_id71599488689029\n"
"help.text"
msgid "<emph>orderclause</emph>: An <literal>ORDER BY</literal> clause without the \"ORDER BY\" keywords. Field names should be surrounded with square brackets."
-msgstr "<emph>sorter-sætning</emph>: En <literal>ORDER BY</literal> (sorter efter)-sætning uden nøgleordene \"ORDER BY\" (sorter efter). Feltnavne bør omsluttes med kantede klammer."
+msgstr "<emph>orderclause</emph>: En <literal>ORDER BY</literal> (sortér efter)-sætning uden nøgleordene \"ORDER BY\" (sortér efter). Feltnavne bør omsluttes med kantede klammer."
#. CPoBx
#: sf_database.xhp
@@ -22058,7 +22058,7 @@ msgctxt ""
"par_id321616774384489\n"
"help.text"
msgid "Specifies in which order the records should be displayed as a <literal>SQL</literal> <literal>ORDER BY</literal> clause without the <literal>ORDER BY</literal> keywords."
-msgstr "Angiver, i hvilken rækkefølge poster skal vises som en <literal>SQL</literal> <literal>ORDER BY</literal>-sætning uden nøgleordene <literal>ORDER BY</literal> (sorter efter)."
+msgstr "Angiver, i hvilken rækkefølge poster skal vises som en <literal>SQL</literal> <literal>ORDER BY</literal>-sætning uden nøgleordene <literal>ORDER BY</literal> (sortér efter)."
#. AGC5s
#: sf_form.xhp
@@ -25104,7 +25104,7 @@ msgctxt ""
"par_id221623369584132\n"
"help.text"
msgid "Open the your operating system's command prompt, navigate to the program folder of your %PRODUCTNAME installation directory and type:"
-msgstr "Åbn dit operativsystems kommandoprompt og naviger til programmappen under din %PRODUCTNAME installationsmappe og indtast:"
+msgstr "Åbn dit operativsystems kommandoprompt og navigér til programmappen under din %PRODUCTNAME installationsmappe og indtast:"
#. 6hDm4
#: sf_intro.xhp
diff --git a/source/da/helpcontent2/source/text/scalc/00.po b/source/da/helpcontent2/source/text/scalc/00.po
index c02d5b6e314..f3db744398c 100644
--- a/source/da/helpcontent2/source/text/scalc/00.po
+++ b/source/da/helpcontent2/source/text/scalc/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-28 17:20+0100\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"PO-Revision-Date: 2024-06-27 06:08+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc00/da/>\n"
"Language: da\n"
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "Choose <emph>Sheet - Clear Cells</emph>."
-msgstr "Vælg <emph>Ark - Ryd celler</emph>."
+msgstr "Vælg <emph>Ark ▸ Ryd celler</emph>."
#. c7DGx
#: 00000402.xhp
@@ -2131,7 +2131,7 @@ msgctxt ""
"par_id181698927976688\n"
"help.text"
msgid "Choose <menuitem>Format - Number Format</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Formatér ▸ Talformat</menuitem>."
#. 9z6Gx
#: 00000405.xhp
@@ -2140,7 +2140,7 @@ msgctxt ""
"par_id301698928319097\n"
"help.text"
msgid "Choose <menuitem>Home</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem</menuitem>."
#. Bv4Qv
#: 00000405.xhp
@@ -2149,7 +2149,7 @@ msgctxt ""
"par_id721698928559289\n"
"help.text"
msgid "Access the <menuitem>Number Format</menuitem> deck of the <menuitem>Properties Panel</menuitem>."
-msgstr ""
+msgstr "I sidepanelet <menuitem>Egenskaber</menuitem>, gå til panelet <menuitem>Talformat</menuitem>."
#. TmWCz
#: 00000405.xhp
@@ -2167,7 +2167,7 @@ msgctxt ""
"par_id361700498438435\n"
"help.text"
msgid "Choose <menuitem>Format Cells</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Formatér celler</menuitem>."
#. DEPHV
#: 00000405.xhp
@@ -2212,7 +2212,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Choose <emph>Format - Rows - Hide</emph>."
-msgstr "Vælg <emph>Formater - Rækker - Skjul</emph>"
+msgstr "Vælg <emph>Formatér ▸ Rækker ▸ Skjul</emph>"
#. Ky3bX
#: 00000405.xhp
@@ -2230,7 +2230,7 @@ msgctxt ""
"par_id831700513819432\n"
"help.text"
msgid "Click on the rows headers to select, choose <menuitem>Hide Rows</menuitem>."
-msgstr ""
+msgstr "Klik på rækkenumrene for markere rækkerne, vælg <menuitem>Skjul rækker</menuitem>."
#. wxn8L
#: 00000405.xhp
@@ -2239,7 +2239,7 @@ msgctxt ""
"par_id321700513823426\n"
"help.text"
msgid "Click on the columns headers to select, choose <menuitem>Hide Columns</menuitem>."
-msgstr ""
+msgstr "Klik på kolonneoverskrifterne for at markere kolonnerne, vælg <menuitem>Skjul kolonner</menuitem>."
#. tjBgT
#: 00000405.xhp
@@ -2248,7 +2248,7 @@ msgctxt ""
"par_id671700514153401\n"
"help.text"
msgid "Choose <menuitem>Home - Rows - Hide Rows</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Rækker ▸ Skjul rækker </menuitem>."
#. BsU3u
#: 00000405.xhp
@@ -2257,7 +2257,7 @@ msgctxt ""
"par_id191700514157898\n"
"help.text"
msgid "Choose <menuitem>Home - Columns - Hide Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Kolonner ▸ Skjul kolonner</menuitem>."
#. fqGhm
#: 00000405.xhp
@@ -2266,7 +2266,7 @@ msgctxt ""
"par_id411700514162075\n"
"help.text"
msgid "Choose <menuitem>Layout - Rows - Hide Rows</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Rækker ▸ Skjul rækker</menuitem>."
#. JUPbu
#: 00000405.xhp
@@ -2275,7 +2275,7 @@ msgctxt ""
"par_id861700514166156\n"
"help.text"
msgid "Choose <menuitem>Layout - Columns - Hide Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Kolonner ▸ Skjul kolonner</menuitem>."
#. HjY2e
#: 00000405.xhp
@@ -2284,7 +2284,7 @@ msgctxt ""
"par_id481700513853264\n"
"help.text"
msgid "<image src=\"cmd/lc_hiderow.svg\" id=\"img_id281700513853265\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id701700513853266\">Icon Hide Rows</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_hiderow.svg\" id=\"img_id281700513853265\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id701700513853266\">Ikonet Skjul rækker</alt></image>"
#. 7XJ6H
#: 00000405.xhp
@@ -2293,7 +2293,7 @@ msgctxt ""
"par_id271700513853268\n"
"help.text"
msgid "Hide Rows"
-msgstr ""
+msgstr "Skjul rækker"
#. mpbyc
#: 00000405.xhp
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id991700513860257\n"
"help.text"
msgid "<image src=\"cmd/lc_hidecolumn.svg\" id=\"img_id901700513860258\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661700513860259\">Icon Hide Columns</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_hidecolumn.svg\" id=\"img_id901700513860258\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661700513860259\">Ikonet skjul kolonner</alt></image>"
#. kpKu2
#: 00000405.xhp
@@ -2311,7 +2311,7 @@ msgctxt ""
"par_id911700513860261\n"
"help.text"
msgid "Hide Columns"
-msgstr ""
+msgstr "Skjul kolonner"
#. dGUoz
#: 00000405.xhp
@@ -2338,7 +2338,7 @@ msgctxt ""
"par_id701700515229874\n"
"help.text"
msgid "Click on the rows headers to select, choose <menuitem>Show Rows</menuitem>."
-msgstr ""
+msgstr "Klik på rækkenumrene for markere rækkerne, vælg <menuitem>Vis rækker</menuitem>."
#. BjpaW
#: 00000405.xhp
@@ -2347,7 +2347,7 @@ msgctxt ""
"par_id271700515233843\n"
"help.text"
msgid "Click on the columns headers to select, choose <menuitem>Show Columns</menuitem>."
-msgstr ""
+msgstr "Klik på kolonneoverskrifterne for at markere dem, vælg <menuitem>Vis kolonner</menuitem>."
#. SB5Ep
#: 00000405.xhp
@@ -2356,7 +2356,7 @@ msgctxt ""
"par_id451700515369771\n"
"help.text"
msgid "Choose <menuitem>Home - Rows - Show Rows</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Rækker ▸ Vis rækker</menuitem>."
#. GDVkE
#: 00000405.xhp
@@ -2365,7 +2365,7 @@ msgctxt ""
"par_id261700515372556\n"
"help.text"
msgid "Choose <menuitem>Home - Columns - Show Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Kolonner ▸ Vis kolonner</menuitem>."
#. 5EAEu
#: 00000405.xhp
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id221700515375420\n"
"help.text"
msgid "Choose <menuitem>Layout - Rows - Show Rows</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Rækker ▸ Vis rækker</menuitem>."
#. WNGyg
#: 00000405.xhp
@@ -2383,7 +2383,7 @@ msgctxt ""
"par_id521700515378076\n"
"help.text"
msgid "Choose <menuitem>Layout - Columns - Show Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Kolonner ▸ Vis kolonner</menuitem>."
#. YarF2
#: 00000405.xhp
@@ -2392,7 +2392,7 @@ msgctxt ""
"par_id651700515398519\n"
"help.text"
msgid "<image src=\"cmd/lc_showrow.svg\" id=\"img_id611700515398520\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821700515398521\">Icon Show Rows</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showrow.svg\" id=\"img_id611700515398520\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id821700515398521\">Ikonet Vis rækker</alt></image>"
#. t7esA
#: 00000405.xhp
@@ -2401,7 +2401,7 @@ msgctxt ""
"par_id41700515398523\n"
"help.text"
msgid "Show Rows"
-msgstr ""
+msgstr "Vis rækker"
#. RtaST
#: 00000405.xhp
@@ -2410,7 +2410,7 @@ msgctxt ""
"par_id111700515405883\n"
"help.text"
msgid "<image src=\"cmd/lc_showcolumn.svg\" id=\"img_id271700515405884\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861700515405885\">Icon Show Columns</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showcolumn.svg\" id=\"img_id271700515405884\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861700515405885\">Ikonet Vis kolonner</alt></image>"
#. q797z
#: 00000405.xhp
@@ -2419,7 +2419,7 @@ msgctxt ""
"par_id301700515405886\n"
"help.text"
msgid "Show Columns"
-msgstr ""
+msgstr "Vis kolonner"
#. 9hBja
#: 00000405.xhp
@@ -2464,7 +2464,7 @@ msgctxt ""
"par_idN1077A\n"
"help.text"
msgid "<variable id=\"foste\">Choose <emph>Format - Page Style</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"foste\">Vælg <emph>Formatér ▸ Sidetypografi</emph>.</variable>"
#. ds3hg
#: 00000405.xhp
@@ -2473,7 +2473,7 @@ msgctxt ""
"par_id3155508\n"
"help.text"
msgid "<variable id=\"fostel\">Choose <emph>Format - Page Style - Sheet</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"fostel\">Vælg <emph>Formatér ▸ Sidetypografi ▸ Ark</emph>-fanebladet.</variable>"
#. CqGPT
#: 00000405.xhp
@@ -2482,7 +2482,7 @@ msgctxt ""
"par_id3150883\n"
"help.text"
msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph>.</variable>"
-msgstr "<variable id=\"fodrbe\">Vælg <emph>Formater - Udskriftsområder</emph>.</variable>"
+msgstr "<variable id=\"fodrbe\">Vælg <emph>Formatér ▸ Udskriftsområder</emph>.</variable>"
#. jBnaP
#: 00000405.xhp
@@ -2491,7 +2491,7 @@ msgctxt ""
"par_id661700524225883\n"
"help.text"
msgid "Choose <menuitem>Layout</menuitem> tab."
-msgstr ""
+msgstr "Vælg fanebladet <menuitem>Layout</menuitem>."
#. btSnC
#: 00000405.xhp
@@ -2500,7 +2500,7 @@ msgctxt ""
"par_id231700521865773\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Print Ranges</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Udskriftsområder</menuitem>."
#. gwyHA
#: 00000405.xhp
@@ -2509,7 +2509,7 @@ msgctxt ""
"par_id251700524311207\n"
"help.text"
msgid "<image src=\"cmd/lc_defineprintarea.svg\" id=\"img_id51700524311208\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231700524311209\">Icon Print Ranges</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_defineprintarea.svg\" id=\"img_id51700524311208\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id231700524311209\">Ikonet Udskriftsområder</alt></image>"
#. RJgUA
#: 00000405.xhp
@@ -2518,7 +2518,7 @@ msgctxt ""
"par_id561700524311211\n"
"help.text"
msgid "Print Ranges"
-msgstr ""
+msgstr "Udskriftsområder"
#. 8mFPE
#: 00000405.xhp
@@ -2527,7 +2527,7 @@ msgctxt ""
"par_id3156448\n"
"help.text"
msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph>.</variable>"
-msgstr "<variable id=\"fodrfe\">Vælg <emph>Formater - Udskriftsområder - Definer</emph>.</variable>"
+msgstr "<variable id=\"fodrfe\">Vælg <emph>Formatér ▸ Udskriftsområder ▸ Definér</emph>.</variable>"
#. N5w3k
#: 00000405.xhp
@@ -2536,7 +2536,7 @@ msgctxt ""
"par_id191700524851592\n"
"help.text"
msgid "Choose <menuitem>Layout - Print Area</menuitem> tab."
-msgstr ""
+msgstr "Vælg <menuitem>Layour ▸ Udskriftsområde</menuitem>-fanebladet."
#. FTVBr
#: 00000405.xhp
@@ -2545,7 +2545,7 @@ msgctxt ""
"par_id881700524946114\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Print Ranges - Define</menuitem>"
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Udskriftsområder ▸ Definér</menuitem>"
#. CJZZb
#: 00000405.xhp
@@ -2554,7 +2554,7 @@ msgctxt ""
"par_id211700525060553\n"
"help.text"
msgid "<image src=\"cmd/lc_defineprintarea.svg\" id=\"img_id881700525060554\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221700525060556\">Icon Define Print Area</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_defineprintarea.svg\" id=\"img_id881700525060554\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221700525060556\">Ikonet Definér udskriftsområde</alt></image>"
#. E3f4m
#: 00000405.xhp
@@ -2563,7 +2563,7 @@ msgctxt ""
"par_id951700525060557\n"
"help.text"
msgid "Define Print Area"
-msgstr ""
+msgstr "Definér udskriftsområde"
#. BneiE
#: 00000405.xhp
@@ -2572,7 +2572,7 @@ msgctxt ""
"par_id3156290\n"
"help.text"
msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph>.</variable>"
-msgstr "<variable id=\"fodrhin\">Vælg <emph>Formater - Udskriftsområder - Tilføj</emph>.</variable>"
+msgstr "<variable id=\"fodrhin\">Vælg <emph>Formatér ▸ Udskriftsområder ▸ Tilføj</emph>.</variable>"
#. mkAMG
#: 00000405.xhp
@@ -2581,7 +2581,7 @@ msgctxt ""
"par_id421700526081438\n"
"help.text"
msgid "Choose <menuitem>Layout - Add Print Ranges</menuitem> tab."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Tilføj udskriftsområder</menuitem>-fanebladet."
#. ELmmn
#: 00000405.xhp
@@ -2590,7 +2590,7 @@ msgctxt ""
"par_id231700526084582\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Print Ranges - Add</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Udskriftsområder ▸ Tilføj</menuitem>."
#. FRNDM
#: 00000405.xhp
@@ -2599,7 +2599,7 @@ msgctxt ""
"par_id931700526048362\n"
"help.text"
msgid "<image src=\"cmd/lc_addprintarea.svg\" id=\"img_id371700526048363\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611700526048364\">Icon Add Print Area</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_addprintarea.svg\" id=\"img_id371700526048363\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id611700526048364\">Ikonet Tilføj udskriftsområde</alt></image>"
#. DMqKC
#: 00000405.xhp
@@ -2608,7 +2608,7 @@ msgctxt ""
"par_id481700526048365\n"
"help.text"
msgid "Add Print Area"
-msgstr ""
+msgstr "Tilføj udskriftsområde"
#. KgEb2
#: 00000405.xhp
@@ -2617,7 +2617,7 @@ msgctxt ""
"par_id3155812\n"
"help.text"
msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Clear</emph>.</variable>"
-msgstr "<variable id=\"fodbah\">Vælg <emph>Formater - Udskriftsområder - Ryd</emph>.</variable>"
+msgstr "<variable id=\"fodbah\">Vælg <emph>Formatér ▸ Udskriftsområder ▸ Ryd</emph>.</variable>"
#. DWc8F
#: 00000405.xhp
@@ -2626,7 +2626,7 @@ msgctxt ""
"par_id991700526162503\n"
"help.text"
msgid "Choose <menuitem>Layout - Clear Print Ranges</menuitem> tab."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Ryd udskriftsområder</menuitem>-fanebladet."
#. 5WrWM
#: 00000405.xhp
@@ -2635,7 +2635,7 @@ msgctxt ""
"par_id931700526168487\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Print Ranges - Clear</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Udskriftsområder ▸ Ryd</menuitem>."
#. ZaqGh
#: 00000405.xhp
@@ -2644,7 +2644,7 @@ msgctxt ""
"par_id931700525434547\n"
"help.text"
msgid "<image src=\"cmd/lc_deleteprintarea.svg\" id=\"img_id41700525434548\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891700525434549\">Icon Clear Print Ranges </alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_deleteprintarea.svg\" id=\"img_id41700525434548\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id891700525434549\">Ikonet Ryd udskriftsområder</alt></image>"
#. jVGy3
#: 00000405.xhp
@@ -2653,7 +2653,7 @@ msgctxt ""
"par_id251700525434551\n"
"help.text"
msgid "Clear Print Ranges"
-msgstr ""
+msgstr "Ryd udskriftsområder"
#. n6cmd
#: 00000405.xhp
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3153307\n"
"help.text"
msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph>.</variable>"
-msgstr "<variable id=\"fodbbe\">Vælg <emph>Formater - Udskriftsområder - Rediger</emph></variable>"
+msgstr "<variable id=\"fodbbe\">Vælg <emph>Formatér ▸ Udskriftsområder ▸ Redigér</emph></variable>"
#. poHUh
#: 00000405.xhp
@@ -2671,7 +2671,7 @@ msgctxt ""
"par_id161700525483226\n"
"help.text"
msgid "Choose <menuitem>Layout - Edit</menuitem> tab."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Redigér</menuitem>-fanebladet."
#. 6nAjp
#: 00000405.xhp
@@ -2680,7 +2680,7 @@ msgctxt ""
"par_id381700525487691\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Print Ranges - Edit</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Udskriftsområder ▸ Redigér</menuitem>."
#. Wkb5m
#: 00000405.xhp
@@ -2689,7 +2689,7 @@ msgctxt ""
"par_id611700525855095\n"
"help.text"
msgid "<image src=\"cmd/lc_editprintarea.svg\" id=\"img_id231700525855096\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271700525855097\">Icon Edit Print Ranges</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_editprintarea.svg\" id=\"img_id231700525855096\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271700525855097\">Ikonet Redigér udskriftsområder</alt></image>"
#. YxHpp
#: 00000405.xhp
@@ -2698,7 +2698,7 @@ msgctxt ""
"par_id901700525855099\n"
"help.text"
msgid "Edit Print Ranges"
-msgstr ""
+msgstr "Redigér udskriftsområder"
#. 2mGMo
#: 00000405.xhp
@@ -2707,7 +2707,7 @@ msgctxt ""
"par_id3154618\n"
"help.text"
msgid "<variable id=\"bedingte\">Choose <menuitem>Format - Conditional - Condition</menuitem>.</variable>"
-msgstr ""
+msgstr "<variable id=\"bedingte\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Betingelse</menuitem>.</variable>"
#. sdp2e
#: 00000405.xhp
@@ -2716,7 +2716,7 @@ msgctxt ""
"par_id741700682477729\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Condition</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Betingelse</menuitem>."
#. VqVh2
#: 00000405.xhp
@@ -2725,7 +2725,7 @@ msgctxt ""
"par_id1001663540244130\n"
"help.text"
msgid "<image src=\"cmd/lc_conditionalformatdialog.svg\" id=\"img_id461663540244131\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id201663540244132\">Icon Conditional Format - Condition</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_conditionalformatdialog.svg\" id=\"img_id461663540244131\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id201663540244132\">Ikonet Betinget formatering ▸ Betingelse</alt></image>"
#. CdDAq
#: 00000405.xhp
@@ -2734,7 +2734,7 @@ msgctxt ""
"par_id151663540244134\n"
"help.text"
msgid "Conditional Format"
-msgstr ""
+msgstr "Betinget formatering"
#. GBExF
#: 00000405.xhp
@@ -2743,7 +2743,7 @@ msgctxt ""
"par_id31663542115011\n"
"help.text"
msgid "<variable id=\"conditionalcolorscale\">Choose <menuitem>Format - Conditional - Color Scale</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"conditionalcolorscale\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Farveskala</menuitem></variable>"
#. 5siAY
#: 00000405.xhp
@@ -2752,7 +2752,7 @@ msgctxt ""
"par_id201700683098791\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Color Scale</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Farveskala</menuitem>."
#. ZHE33
#: 00000405.xhp
@@ -2761,7 +2761,7 @@ msgctxt ""
"par_id431663540719713\n"
"help.text"
msgid "<image src=\"cmd/lc_colorscaleformatdialog.svg\" id=\"img_id551663540719714\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381663540719715\">Icon Color Scale</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_colorscaleformatdialog.svg\" id=\"img_id551663540719714\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id381663540719715\">Ikonet Farveskala</alt></image>"
#. UJbUX
#: 00000405.xhp
@@ -2770,7 +2770,7 @@ msgctxt ""
"par_id841663540719717\n"
"help.text"
msgid "Color Scale"
-msgstr ""
+msgstr "Farveskala"
#. BCKnF
#: 00000405.xhp
@@ -2779,7 +2779,7 @@ msgctxt ""
"par_id491663542108169\n"
"help.text"
msgid "<variable id=\"conditionaldatabar\">Choose <menuitem>Format - Conditional - Data Bar</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"conditionaldatabar\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Databjælke</menuitem></variable>"
#. 7xadU
#: 00000405.xhp
@@ -2788,7 +2788,7 @@ msgctxt ""
"par_id631700683863203\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Data Bar</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Databjælke</menuitem>."
#. qKAB8
#: 00000405.xhp
@@ -2797,7 +2797,7 @@ msgctxt ""
"par_id301663541161943\n"
"help.text"
msgid "<image src=\"cmd/lc_databarformatdialog.svg\" id=\"img_id601663541161944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21663541161945\">Icon Data Bar</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_databarformatdialog.svg\" id=\"img_id601663541161944\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id21663541161945\">Ikonet Databjælke</alt></image>"
#. DhB6e
#: 00000405.xhp
@@ -2806,7 +2806,7 @@ msgctxt ""
"par_id101663541161947\n"
"help.text"
msgid "Data Bar"
-msgstr ""
+msgstr "Databjælke"
#. AaxGU
#: 00000405.xhp
@@ -2815,7 +2815,7 @@ msgctxt ""
"par_id851663542093712\n"
"help.text"
msgid "<variable id=\"conditionaliconset\">Choose <menuitem>Format - Conditional - Icon Set</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"conditionaliconset\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Ikonsæt</menuitem></variable>"
#. cUBFo
#: 00000405.xhp
@@ -2824,7 +2824,7 @@ msgctxt ""
"par_id951700683459372\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Icon Set</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Ikonsæt</menuitem>."
#. BKDA9
#: 00000405.xhp
@@ -2833,7 +2833,7 @@ msgctxt ""
"par_id51663541228728\n"
"help.text"
msgid "<image src=\"cmd/lc_iconsetformatdialog.svg\" id=\"img_id511663541228729\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id261663541228730\">Icon Icon Set</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_iconsetformatdialog.svg\" id=\"img_id511663541228729\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id261663541228730\">Ikonet Ikonsæt</alt></image>"
#. xL9EB
#: 00000405.xhp
@@ -2842,7 +2842,7 @@ msgctxt ""
"par_id61663541228732\n"
"help.text"
msgid "Icon Set"
-msgstr ""
+msgstr "Ikonsæt"
#. t4dp2
#: 00000405.xhp
@@ -2851,7 +2851,7 @@ msgctxt ""
"par_id391663542070705\n"
"help.text"
msgid "<variable id=\"conditionaldate\">Choose <menuitem>Format - Conditional - Date</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"conditionaldate\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Dato</menuitem></variable>"
#. r8S4c
#: 00000405.xhp
@@ -2860,7 +2860,7 @@ msgctxt ""
"par_id291700683578336\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Date</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Dato</menuitem>."
#. dUBco
#: 00000405.xhp
@@ -2869,7 +2869,7 @@ msgctxt ""
"par_id371663541317147\n"
"help.text"
msgid "<image src=\"cmd/lc_conddateformatdialog.svg\" id=\"img_id61663541317148\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641663541317149\">Icon Date</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_conddateformatdialog.svg\" id=\"img_id61663541317148\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641663541317149\">Ikonet Dato</alt></image>"
#. TPxGF
#: 00000405.xhp
@@ -2878,7 +2878,7 @@ msgctxt ""
"par_id121663541317151\n"
"help.text"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#. ZJawN
#: 00000405.xhp
@@ -2887,7 +2887,7 @@ msgctxt ""
"par_id641663542045446\n"
"help.text"
msgid "<variable id=\"conditionalmanage\">Choose <menuitem>Format - Conditional - Manage</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"conditionalmanage\">Vælg <menuitem>Formatér ▸ Betinget formatering ▸ Administrér</menuitem></variable>"
#. 56dYe
#: 00000405.xhp
@@ -2896,7 +2896,7 @@ msgctxt ""
"par_id801700683657730\n"
"help.text"
msgid "Choose <menuitem>Home - Conditional - Manage</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Betinget formatering ▸ Administrér</menuitem>."
#. aFWLc
#: 00000406.xhp
@@ -2932,7 +2932,7 @@ msgctxt ""
"par_id121704574722139\n"
"help.text"
msgid "<image src=\"cmd/lc_auditmenu.svg\" id=\"img_id51704574722140\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id691704574722141\">Icon Detective</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_auditmenu.svg\" id=\"img_id51704574722140\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id691704574722141\">Ikonet Detektiv</alt></image>"
#. tdkPm
#: 00000406.xhp
@@ -2941,7 +2941,7 @@ msgctxt ""
"par_id931704574722143\n"
"help.text"
msgid "Detective"
-msgstr ""
+msgstr "Detektiv"
#. dPH3j
#: 00000406.xhp
@@ -2959,7 +2959,7 @@ msgctxt ""
"par_id31704582059974\n"
"help.text"
msgid "With <menuitem>Fill Mode</menuitem> active, choose <menuitem>Trace Precedents</menuitem>."
-msgstr ""
+msgstr "Med <menuitem>Udfyldningstilstand</menuitem> aktiv, vælg <menuitem>Spor fra forudgående</menuitem>."
#. LMvGD
#: 00000406.xhp
@@ -2968,7 +2968,7 @@ msgctxt ""
"par_id521704575125111\n"
"help.text"
msgid "Choose <menuitem>Tools - Trace Precedents</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Spor fra forudgående</menuitem>."
#. FPGAc
#: 00000406.xhp
@@ -2977,7 +2977,7 @@ msgctxt ""
"par_id641704575130968\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Trace Precedents</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Spor fra forudgående</menuitem>."
#. RbMXW
#: 00000406.xhp
@@ -2986,7 +2986,7 @@ msgctxt ""
"par_id641704575178720\n"
"help.text"
msgid "<image src=\"cmd/lc_showprecedents.svg\" id=\"img_id751704575178721\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221704575178723\">Icon Trace Precedents</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showprecedents.svg\" id=\"img_id751704575178721\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221704575178723\">Ikonet Spor fra forudgående</alt></image>"
#. CBhN8
#: 00000406.xhp
@@ -2995,7 +2995,7 @@ msgctxt ""
"par_id211704575178724\n"
"help.text"
msgid "Trace Precedents"
-msgstr ""
+msgstr "Spor fra forudgående"
#. DrMNb
#: 00000406.xhp
@@ -3004,7 +3004,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "<keycode>Shift+F9</keycode>"
-msgstr ""
+msgstr "<keycode>Skift + F9</keycode>"
#. Mn26m
#: 00000406.xhp
@@ -3031,7 +3031,7 @@ msgctxt ""
"par_id801704582093988\n"
"help.text"
msgid "With <menuitem>Fill Mode</menuitem> active, choose <menuitem>Remove Precedents</menuitem>."
-msgstr ""
+msgstr "Med <menuitem>Udfyldningstilstand</menuitem> aktiv, vælg <menuitem>Fjern spor fra forudgående</menuitem>."
#. CAAcR
#: 00000406.xhp
@@ -3040,7 +3040,7 @@ msgctxt ""
"par_id41704575713980\n"
"help.text"
msgid "Choose <menuitem>Tools - Remove Precedents</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Fjern spor fra forudgående</menuitem>."
#. EmJia
#: 00000406.xhp
@@ -3049,7 +3049,7 @@ msgctxt ""
"par_id921704575718322\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Remove Precedents</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktoner</menuitem>, vælg <menuitem>Fjern spor fra forudgående</menuitem>."
#. eGe7v
#: 00000406.xhp
@@ -3058,7 +3058,7 @@ msgctxt ""
"par_id601704575734399\n"
"help.text"
msgid "<image src=\"cmd/lc_cleararrowprecedents.svg\" id=\"img_id941704575734400\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id41704575734401\">Icon Remove Precedents</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_cleararrowprecedents.svg\" id=\"img_id941704575734400\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id41704575734401\">Ikonet Fjern spor fra forudgående</alt></image>"
#. ndUAz
#: 00000406.xhp
@@ -3067,7 +3067,7 @@ msgctxt ""
"par_id781704575734403\n"
"help.text"
msgid "Remove Precedents"
-msgstr ""
+msgstr "Fjern spor fra forudgående"
#. iXoyD
#: 00000406.xhp
@@ -3085,7 +3085,7 @@ msgctxt ""
"par_id111704582111559\n"
"help.text"
msgid "With <menuitem>Fill Mode</menuitem> active, choose <menuitem>Trace Dependents</menuitem>."
-msgstr ""
+msgstr "Med <menuitem>Udfyldningstilstand</menuitem> aktiv, vælg <menuitem>Spor til afhængige</menuitem>."
#. jAYpL
#: 00000406.xhp
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_id561704576171265\n"
"help.text"
msgid "Choose <menuitem>Tools - Trace Dependents</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Spor til afhængige</menuitem>."
#. G3LB7
#: 00000406.xhp
@@ -3103,7 +3103,7 @@ msgctxt ""
"par_id551704576174383\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Trace Dependents</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Spor til afhængige</menuitem>."
#. kbWHq
#: 00000406.xhp
@@ -3112,7 +3112,7 @@ msgctxt ""
"par_id151704576046040\n"
"help.text"
msgid "<image src=\"cmd/lc_showdependents.svg\" id=\"img_id211704576046041\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641704576046042\">Icon Trace Dependents</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showdependents.svg\" id=\"img_id211704576046041\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641704576046042\">Ikonet Spor til afhængige</alt></image>"
#. 7stAc
#: 00000406.xhp
@@ -3121,7 +3121,7 @@ msgctxt ""
"par_id861704576046044\n"
"help.text"
msgid "Trace Dependents"
-msgstr ""
+msgstr "Spor til afhængige"
#. vtbGC
#: 00000406.xhp
@@ -3130,7 +3130,7 @@ msgctxt ""
"par_id3153363\n"
"help.text"
msgid "<keycode>Shift+F5</keycode>"
-msgstr ""
+msgstr "<keycode>Skift + F5</keycode>"
#. f6Azg
#: 00000406.xhp
@@ -3148,7 +3148,7 @@ msgctxt ""
"par_id611704582150755\n"
"help.text"
msgid "With <menuitem>Fill Mode</menuitem> active, choose <menuitem>Remove Dependents</menuitem>."
-msgstr ""
+msgstr "Med <menuitem>Udfyldningstilstand</menuitem> aktiv, vælg <menuitem>Fjern spor til afhængige</menuitem>."
#. F3AK4
#: 00000406.xhp
@@ -3157,7 +3157,7 @@ msgctxt ""
"par_id691704576761568\n"
"help.text"
msgid "Choose <menuitem>Tools - Remove Dependents</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Fjern spor til afhænge</menuitem>."
#. x5BYc
#: 00000406.xhp
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_id901704576765488\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Remove Dependents</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Fjern spor til afhængige</menuitem>."
#. wGBb7
#: 00000406.xhp
@@ -3175,7 +3175,7 @@ msgctxt ""
"par_id751704576780896\n"
"help.text"
msgid "<image src=\"cmd/lc_cleararrowdependents.svg\" id=\"img_id301704576780897\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id1001704576780898\">Icon Remove Dependents</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_cleararrowdependents.svg\" id=\"img_id301704576780897\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id1001704576780898\">Ikonet Fjern spor til afhængige</alt></image>"
#. jj2jT
#: 00000406.xhp
@@ -3184,7 +3184,7 @@ msgctxt ""
"par_id201704576780900\n"
"help.text"
msgid "Remove Dependents"
-msgstr ""
+msgstr "Fjern spor til afhængige"
#. kYsC6
#: 00000406.xhp
@@ -3202,7 +3202,7 @@ msgctxt ""
"par_id851704582262042\n"
"help.text"
msgid "With <menuitem>Fill Mode</menuitem> active, choose <menuitem>Remove All Traces</menuitem>."
-msgstr ""
+msgstr "Med <menuitem>Udfyldningstilstand</menuitem> aktiv, vælg <menuitem>Fjern alle spor</menuitem>."
#. WGN4G
#: 00000406.xhp
@@ -3211,7 +3211,7 @@ msgctxt ""
"par_id761704579736415\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Remove All Traces</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Fjern alle spor</menuitem>."
#. FszRo
#: 00000406.xhp
@@ -3220,7 +3220,7 @@ msgctxt ""
"par_id631704577521492\n"
"help.text"
msgid "<image src=\"cmd/lc_cleararrows.svg\" id=\"img_id171704577521493\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id851704577521494\">Icon Remove All Traces</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_cleararrows.svg\" id=\"img_id171704577521493\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id851704577521494\">Ikonet Fjern alle spor</alt></image>"
#. 3DGDw
#: 00000406.xhp
@@ -3229,7 +3229,7 @@ msgctxt ""
"par_id651704577521496\n"
"help.text"
msgid "Remove All Traces"
-msgstr ""
+msgstr "Fjern alle spor"
#. bvGMB
#: 00000406.xhp
@@ -3247,7 +3247,7 @@ msgctxt ""
"par_id571704579944999\n"
"help.text"
msgid "Choose <menuitem>Tools - Trace Error</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Spor fejl</menuitem>."
#. RZD2i
#: 00000406.xhp
@@ -3256,7 +3256,7 @@ msgctxt ""
"par_id161704577134688\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Trace Error</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Spor fejl</menuitem>."
#. 38F9x
#: 00000406.xhp
@@ -3265,7 +3265,7 @@ msgctxt ""
"par_id971704578781447\n"
"help.text"
msgid "<image src=\"cmd/lc_showerrors.svg\" id=\"img_id841704578781448\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311704578781449\">Icon Trace Error</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showerrors.svg\" id=\"img_id841704578781448\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id311704578781449\">Ikonet Spor fejl</alt></image>"
#. oyAR4
#: 00000406.xhp
@@ -3274,7 +3274,7 @@ msgctxt ""
"par_id931704578781451\n"
"help.text"
msgid "Trace Error"
-msgstr ""
+msgstr "Spor fejl"
#. eps9h
#: 00000406.xhp
@@ -3292,7 +3292,7 @@ msgctxt ""
"par_id951704579401882\n"
"help.text"
msgid "Choose <menuitem>Tools - Fill Mode</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Udfyldningstilstand</menuitem>."
#. eXYDZ
#: 00000406.xhp
@@ -3301,7 +3301,7 @@ msgctxt ""
"par_id561704579693511\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Fill Mode</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Udfyldningstilstand</menuitem>."
#. hZrNf
#: 00000406.xhp
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id281704579346753\n"
"help.text"
msgid "<image src=\"cmd/lc_auditingfillmode.svg\" id=\"img_id341704579346754\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61704579346755\">Icon Fill Mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_auditingfillmode.svg\" id=\"img_id341704579346754\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id61704579346755\">Ikonet Udfyldningstilstand</alt></image>"
#. CodJt
#: 00000406.xhp
@@ -3319,7 +3319,7 @@ msgctxt ""
"par_id221704579346756\n"
"help.text"
msgid "Fill Mode"
-msgstr ""
+msgstr "Udfyldningstilstand"
#. PFGqZ
#: 00000406.xhp
@@ -3337,7 +3337,7 @@ msgctxt ""
"par_id241704580224170\n"
"help.text"
msgid "Choose <menuitem>Tools - Mark Invalid Data</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Markér ugyldige data</menuitem>."
#. 9oxAu
#: 00000406.xhp
@@ -3346,7 +3346,7 @@ msgctxt ""
"par_id711704580227978\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Mark Invalid Data</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Markér ugyldige data</menuitem>."
#. zrMGB
#: 00000406.xhp
@@ -3355,7 +3355,7 @@ msgctxt ""
"par_id451704580188153\n"
"help.text"
msgid "<image src=\"cmd/lc_showinvalid.svg\" id=\"img_id261704580188154\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831704580188155\">Icon Mark Invalid Data</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_showinvalid.svg\" id=\"img_id261704580188154\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id831704580188155\">Ikonet Markér ugyldige data</alt></image>"
#. ppa6m
#: 00000406.xhp
@@ -3364,7 +3364,7 @@ msgctxt ""
"par_id311704580188157\n"
"help.text"
msgid "Mark Invalid Data"
-msgstr ""
+msgstr "Markér ugyldige data"
#. vVZWK
#: 00000406.xhp
@@ -3373,7 +3373,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<variable id=\"spurenaktualisieren\">Choose <emph>Tools - Detective - Refresh Traces</emph>.</variable>"
-msgstr "<variable id=\"spurenaktualisieren\">Vælg <emph>Funktioner - Detektiv - Opdater Spor</emph></variable>"
+msgstr "<variable id=\"spurenaktualisieren\">Vælg <emph>Funktioner ▸ Detektiv ▸ Opdatér spor</emph></variable>"
#. ngKWf
#: 00000406.xhp
@@ -3382,7 +3382,7 @@ msgctxt ""
"par_id671704580574418\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Refresh Traces</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Opdatér spor</menuitem>."
#. kPsK3
#: 00000406.xhp
@@ -3391,7 +3391,7 @@ msgctxt ""
"par_id3147397\n"
"help.text"
msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh</emph>.</variable>"
-msgstr "<variable id=\"automatisch\">Vælg <emph>Funktioner - Detektiv - Opdater automatisk</emph>.</variable>"
+msgstr "<variable id=\"automatisch\">Vælg <emph>Funktioner ▸ Detektiv ▸ Opdatér automatisk</emph>.</variable>"
#. VfYyW
#: 00000406.xhp
@@ -3400,7 +3400,7 @@ msgctxt ""
"par_id31704581061664\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>AutoRefresh</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Opdatér automatisk</menuitem>."
#. 9Jzv6
#: 00000406.xhp
@@ -3418,7 +3418,7 @@ msgctxt ""
"par_id651704559406509\n"
"help.text"
msgid "Choose <menuitem>Tools - Goal Seek</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Målsøgning</menuitem>."
#. MYUR7
#: 00000406.xhp
@@ -3427,7 +3427,7 @@ msgctxt ""
"par_id311704559413084\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Goal Seek</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Målsøgning</menuitem>."
#. WDnq2
#: 00000406.xhp
@@ -3436,7 +3436,7 @@ msgctxt ""
"par_id251704559424672\n"
"help.text"
msgid "<image src=\"cmd/lc_goalseekdialog.svg\" id=\"img_id751704559424673\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id931704559424674\">Icon Goal Seek</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_goalseekdialog.svg\" id=\"img_id751704559424673\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id931704559424674\">Ikonet Målsøgning</alt></image>"
#. yGEeP
#: 00000406.xhp
@@ -3445,7 +3445,7 @@ msgctxt ""
"par_id741704559424677\n"
"help.text"
msgid "Goal Seek"
-msgstr ""
+msgstr "Målsøgning"
#. za2AW
#: 00000406.xhp
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3269142\n"
"help.text"
msgid "Choose <menuitem>Tools - Solver</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Problemløse</menuitem>."
#. D8JEp
#: 00000406.xhp
@@ -3463,7 +3463,7 @@ msgctxt ""
"par_id91704560391217\n"
"help.text"
msgid "Choose <menuitem>Tools - Solver</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Problemløser</menuitem>."
#. FdfoA
#: 00000406.xhp
@@ -3472,7 +3472,7 @@ msgctxt ""
"par_id571704560376308\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> menu of the <menuitem>Tools</menuitem> tab, choose <menuitem>Solver</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Funktioner</menuitem> på fanebladet <menuitem>Funktioner</menuitem>, vælg <menuitem>Problemløser</menuitem>."
#. k4eNX
#: 00000406.xhp
@@ -3481,7 +3481,7 @@ msgctxt ""
"par_id821704560400407\n"
"help.text"
msgid "<image src=\"cmd/lc_solverdialog.svg\" id=\"img_id741704560400408\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221704560400409\">Icon Solver</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_solverdialog.svg\" id=\"img_id741704560400408\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221704560400409\">Ikonet Problemløser</alt></image>"
#. QeFeF
#: 00000406.xhp
@@ -3490,7 +3490,7 @@ msgctxt ""
"par_id541704560400411\n"
"help.text"
msgid "Solver"
-msgstr ""
+msgstr "Problemløser"
#. 8onpF
#: 00000406.xhp
@@ -3517,7 +3517,7 @@ msgctxt ""
"par_id971647297529392\n"
"help.text"
msgid "Choose <menuitem>Tools - Forms</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Formularer</menuitem>."
#. uacDx
#: 00000406.xhp
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id371647273694433\n"
"help.text"
msgid "Choose <menuitem>Tools - Share Spreadsheet</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Del regneark</menuitem>"
#. QrXBE
#: 00000406.xhp
@@ -3535,7 +3535,7 @@ msgctxt ""
"par_id281704729123032\n"
"help.text"
msgid "Choose <menuitem>Review - Share Spreadsheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Gennemse ▸ Del regneark</menuitem>"
#. HfBBs
#: 00000406.xhp
@@ -3544,7 +3544,7 @@ msgctxt ""
"par_id551704729139196\n"
"help.text"
msgid "<image src=\"cmd/lc_sharedocument.svg\" id=\"img_id991704729139197\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51704729139198\">Icon Share Spreadsheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_sharedocument.svg\" id=\"img_id991704729139197\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id51704729139198\">Ikonet Del regneark</alt></image>"
#. KN7hp
#: 00000406.xhp
@@ -3553,7 +3553,7 @@ msgctxt ""
"par_id681704729139199\n"
"help.text"
msgid "Share Spreadsheet"
-msgstr ""
+msgstr "Del regneark"
#. uHRwy
#: 00000406.xhp
@@ -3580,7 +3580,7 @@ msgctxt ""
"par_id701704729338399\n"
"help.text"
msgid "Choose <menuitem>Review - Protect Spreadsheet Structure</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Gennemse ▸ Beskyt regnearkets struktur</menuitem>"
#. G48i9
#: 00000406.xhp
@@ -3589,7 +3589,7 @@ msgctxt ""
"par_id961704729362021\n"
"help.text"
msgid "<image src=\"cmd/lc_toolprotectiondocument.svg\" id=\"img_id841704729362022\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641704729362023\">Icon Protect Spreadsheet Structure</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_toolprotectiondocument.svg\" id=\"img_id841704729362022\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id641704729362023\">Ikonet Beskyt regnearkets struktur</alt></image>"
#. ZXDvp
#: 00000406.xhp
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id661704729362025\n"
"help.text"
msgid "Protect Spreadsheet Structure"
-msgstr ""
+msgstr "Beskyt regnearkets struktur"
#. EA2vV
#: 00000406.xhp
@@ -3661,7 +3661,7 @@ msgctxt ""
"par_id8366954\n"
"help.text"
msgid "Choose <menuitem>Data - Text to Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Tekst til kolonner</menuitem>."
#. CBbhu
#: 00000412.xhp
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id671704353941295\n"
"help.text"
msgid "Choose <menuitem>Data - Text to Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Tekst til kolonner</menuitem>."
#. 8Sx3v
#: 00000412.xhp
@@ -3679,7 +3679,7 @@ msgctxt ""
"par_id771704354060226\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Text to Columns</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Tekst til kolonner</menuitem>."
#. ZdztP
#: 00000412.xhp
@@ -3688,7 +3688,7 @@ msgctxt ""
"par_id231704354128300\n"
"help.text"
msgid "<image src=\"cmd/lc_texttocolumns.svg\" id=\"img_id601704354128301\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id471704354128302\">Icon Text to Columns</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_texttocolumns.svg\" id=\"img_id601704354128301\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id471704354128302\">Ikonet Tekst til kolonner</alt></image>"
#. dP9sy
#: 00000412.xhp
@@ -3697,7 +3697,7 @@ msgctxt ""
"par_id11704354128304\n"
"help.text"
msgid "Text to Columns"
-msgstr ""
+msgstr "Tekst til kolonner"
#. RBCHZ
#: 00000412.xhp
@@ -3715,7 +3715,7 @@ msgctxt ""
"par_id491703673711439\n"
"help.text"
msgid "Choose <menuitem>Data</menuitem> - <menuitem>Define Range</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data</menuitem> ▸ <menuitem>Definér område</menuitem>."
#. uDfzS
#: 00000412.xhp
@@ -3724,7 +3724,7 @@ msgctxt ""
"par_id321703673716748\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Define Range</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Definér område</menuitem>."
#. veJ5P
#: 00000412.xhp
@@ -3733,7 +3733,7 @@ msgctxt ""
"par_id691703673736937\n"
"help.text"
msgid "<image src=\"cmd/lc_definedbname.svg\" id=\"img_id841703673736938\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221703673736939\">Icon Define Range</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_definedbname.svg\" id=\"img_id841703673736938\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id221703673736939\">Ikonet Definér område</alt></image>"
#. vmpuA
#: 00000412.xhp
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_id131703673736941\n"
"help.text"
msgid "Define Range"
-msgstr ""
+msgstr "Definér område"
#. 8aB3C
#: 00000412.xhp
@@ -3760,7 +3760,7 @@ msgctxt ""
"par_id621703673870509\n"
"help.text"
msgid "Choose <menuitem>Data - Select Range</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Markér område</menuitem>."
#. dv4xN
#: 00000412.xhp
@@ -3769,7 +3769,7 @@ msgctxt ""
"par_id261703673873605\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Select Range</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Markér område</menuitem>."
#. wWMAE
#: 00000412.xhp
@@ -3778,7 +3778,7 @@ msgctxt ""
"par_id651703673891813\n"
"help.text"
msgid "<image src=\"cmd/lc_selectdb.svg\" id=\"img_id1001703673891814\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291703673891815\">Icon Select Range</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_selectdb.svg\" id=\"img_id1001703673891814\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291703673891815\">Ikonet Markér område</alt></image>"
#. sfnGb
#: 00000412.xhp
@@ -3787,7 +3787,7 @@ msgctxt ""
"par_id71703673891816\n"
"help.text"
msgid "Select Range"
-msgstr ""
+msgstr "Markér område"
#. 8eaL8
#: 00000412.xhp
@@ -3805,7 +3805,7 @@ msgctxt ""
"par_id871703614487983\n"
"help.text"
msgid "Choose <menuitem>Data - Sort</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Sortér</menuitem>."
#. MCtmE
#: 00000412.xhp
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id171703614533423\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Sort</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Sortér</menuitem>."
#. 2akse
#: 00000412.xhp
@@ -3823,7 +3823,7 @@ msgctxt ""
"par_id701703614720324\n"
"help.text"
msgid "<image src=\"cmd/lc_datasort.svg\" id=\"img_id171703614720325\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id321703614720326\">Icon Sort</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_datasort.svg\" id=\"img_id171703614720325\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id321703614720326\">Ikonet Sortér</alt></image>"
#. ERGh9
#: 00000412.xhp
@@ -3832,7 +3832,7 @@ msgctxt ""
"par_id841703614720328\n"
"help.text"
msgid "Sort"
-msgstr ""
+msgstr "Sortér"
#. rscQf
#: 00000412.xhp
@@ -3841,7 +3841,7 @@ msgctxt ""
"par_id641584647437810\n"
"help.text"
msgid "<variable id=\"datasortascending\">Choose <menuitem>Data - Sort Ascending</menuitem></variable>"
-msgstr "<variable id=\"datasortascending\">Vælg <menuitem>Data - Sorter stigende</menuitem></variable>"
+msgstr "<variable id=\"datasortascending\">Vælg <menuitem>Data ▸ Sortér stigende</menuitem></variable>"
#. 4PmfC
#: 00000412.xhp
@@ -3850,7 +3850,7 @@ msgctxt ""
"par_id51703615084612\n"
"help.text"
msgid "Choose <menuitem>Data - Sort Ascending</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Sortér stigende</menuitem>."
#. aJ3Ff
#: 00000412.xhp
@@ -3859,7 +3859,7 @@ msgctxt ""
"par_id421703615080492\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Sort Ascending</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Sortér stigende</menuitem>."
#. jEEib
#: 00000412.xhp
@@ -3868,7 +3868,7 @@ msgctxt ""
"par_id881703615010041\n"
"help.text"
msgid "<image src=\"cmd/lc_sortascending.svg\" id=\"img_id431703615010042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861703615010043\">Icon Sort Ascending</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_sortascending.svg\" id=\"img_id431703615010042\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861703615010043\">Ikonet Sortér stigende</alt></image>"
#. MmNA2
#: 00000412.xhp
@@ -3877,7 +3877,7 @@ msgctxt ""
"par_id741703615010044\n"
"help.text"
msgid "Sort Ascending"
-msgstr ""
+msgstr "Sortér stigende"
#. GHhdg
#: 00000412.xhp
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_id711584647447316\n"
"help.text"
msgid "<variable id=\"datasortdescending\">Choose <menuitem>Data - Sort Descending</menuitem></variable>"
-msgstr "<variable id=\"datasortdescending\">Vælg <menuitem>Data - Sorter faldende</menuitem></variable>"
+msgstr "<variable id=\"datasortdescending\">Vælg <menuitem>Data ▸ Sortér faldende</menuitem></variable>"
#. vqUh5
#: 00000412.xhp
@@ -3895,7 +3895,7 @@ msgctxt ""
"par_id381703615221123\n"
"help.text"
msgid "Choose <menuitem>Data - Sort Descending</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Sortér faldende</menuitem>."
#. gDPnj
#: 00000412.xhp
@@ -3904,7 +3904,7 @@ msgctxt ""
"par_id731703615224099\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>Sort Descending</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Sortér faldende</menuitem>."
#. JLRyv
#: 00000412.xhp
@@ -3913,7 +3913,7 @@ msgctxt ""
"par_id531703615261057\n"
"help.text"
msgid "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id51703615261058\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451703615261059\">Icon Sort Descending</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id51703615261058\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id451703615261059\">Ikonet Sortér faldende</alt></image>"
#. ZiDDM
#: 00000412.xhp
@@ -3922,7 +3922,7 @@ msgctxt ""
"par_id401703615261060\n"
"help.text"
msgid "Sort Descending"
-msgstr ""
+msgstr "Sortér faldende"
#. oEATB
#: 00000412.xhp
@@ -3931,7 +3931,7 @@ msgctxt ""
"par_id3148491\n"
"help.text"
msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab."
-msgstr "Vælg <emph>Data - Sorter - Sorteringskriterier</emph>."
+msgstr "Vælg <emph>Data ▸ Sortér ▸ Sorteringskriterier</emph>."
#. SG8FW
#: 00000412.xhp
@@ -3949,7 +3949,7 @@ msgctxt ""
"par_id3148663\n"
"help.text"
msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150543\">Icon Sort Ascending</alt></image>"
-msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150543\">ikonet Sorter stigende</alt></image>"
+msgstr "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3150543\">ikonet Sortér stigende</alt></image>"
#. vv2Zk
#: 00000412.xhp
@@ -3958,7 +3958,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. QXzES
#: 00000412.xhp
@@ -3967,7 +3967,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3125863\">Icon Sort Descending</alt></image>"
-msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3125863\">ikonet Sorter faldende</alt></image>"
+msgstr "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3125863\">ikonet Sortér faldende</alt></image>"
#. AHMAB
#: 00000412.xhp
@@ -3976,7 +3976,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. C3DzW
#: 00000412.xhp
@@ -3985,7 +3985,7 @@ msgctxt ""
"par_id3146984\n"
"help.text"
msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab.</variable>"
-msgstr "<variable id=\"dnstot\">Vælg <emph>Data - Sorter - Indstillinger</emph> </variable>"
+msgstr "<variable id=\"dnstot\">Vælg <emph>Data ▸ Sortér ▸ Indstillinger</emph> </variable>"
#. KsX3d
#: 00000412.xhp
@@ -4012,7 +4012,7 @@ msgctxt ""
"par_id541703617143126\n"
"help.text"
msgid "Choose <menuitem>Data - AutoFilter</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Autofilter</menuitem>."
#. uasVF
#: 00000412.xhp
@@ -4021,7 +4021,7 @@ msgctxt ""
"par_id751703617148566\n"
"help.text"
msgid "On the <menuitem>Data</menuitem> menu of the <menuitem>Data</menuitem> tab, choose <menuitem>AutoFilter</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Data</menuitem> på fanebladet <menuitem>Data</menuitem>, vælg <menuitem>Autofilter</menuitem>."
#. qDpvz
#: 00000412.xhp
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<image id=\"img_id3149413\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149413\">Icon Autofilter</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149413\" src=\"cmd/lc_datafilterautofilter.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3149413\">Ikonet Autofilter</alt></image>"
#. dwkEN
#: 00000412.xhp
@@ -4048,7 +4048,7 @@ msgctxt ""
"par_id61703617236607\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + L</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift + L</keycode>"
#. MLpCL
#: 00000412.xhp
@@ -4705,7 +4705,7 @@ msgctxt ""
"par_id641698842008451\n"
"help.text"
msgid "Choose <menuitem>Data - Pivot Table - Insert or Edit</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Pivottabel ▸ Indsæt eller redigér</menuitem>."
#. 8FZLM
#: 00000412.xhp
@@ -4714,7 +4714,7 @@ msgctxt ""
"par_id741698842068169\n"
"help.text"
msgid "Choose <menuitem>Insert - Pivot Table</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Pivottabel</menuitem>."
#. YGV72
#: 00000412.xhp
@@ -4723,7 +4723,7 @@ msgctxt ""
"par_id71698842082244\n"
"help.text"
msgid "Choose <menuitem>Data - Pivot Table</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Data ▸ Pivottabel</menuitem>."
#. 4WfKq
#: 00000412.xhp
@@ -4741,7 +4741,7 @@ msgctxt ""
"par_id401698842094889\n"
"help.text"
msgid "<image src=\"cmd/lc_datadatapilotrun.svg\" id=\"img_id691698842094890\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81698842094891\">Icon Pivot Table</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_datadatapilotrun.svg\" id=\"img_id691698842094890\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id81698842094891\">Ikonet Pivottabel</alt></image>"
#. YpCZZ
#: 00000412.xhp
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_id301698842094893\n"
"help.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Pivottabel"
#. 6GiyL
#: 00000412.xhp
@@ -4786,7 +4786,7 @@ msgctxt ""
"par_id3153294\n"
"help.text"
msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph>.</variable>"
-msgstr "<variable id=\"dndpak\">Vælg <emph>Data - Pivottabel - Opdater</emph>.</variable>"
+msgstr "<variable id=\"dndpak\">Vælg <emph>Data ▸ Pivottabel ▸ Opdatér</emph>.</variable>"
#. RjxgC
#: 00000412.xhp
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id3150397\n"
"help.text"
msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph>.</variable>"
-msgstr "<variable id=\"dndakt\">Vælg <emph>Data - Opdater område</emph>.</variable>"
+msgstr "<variable id=\"dndakt\">Vælg <emph>Data ▸ Opdatér område</emph>.</variable>"
#. qqT67
#: 00000412.xhp
@@ -5749,7 +5749,7 @@ msgctxt ""
"par_id651551401041668\n"
"help.text"
msgid "This function is available since %PRODUCTNAME 7.3."
-msgstr ""
+msgstr "Denne funktion har været tilgængelig siden %PRODUCTNAME 7.3."
#. GLr9s
#: avail_release.xhp
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id651551401041669\n"
"help.text"
msgid "This function is available since %PRODUCTNAME 7.4."
-msgstr ""
+msgstr "Denne funktion har været tilgængelig siden %PRODUCTNAME 7.4."
#. B89AE
#: avail_release.xhp
@@ -5767,7 +5767,7 @@ msgctxt ""
"par_id651551401041670\n"
"help.text"
msgid "This function is available since %PRODUCTNAME 7.5."
-msgstr ""
+msgstr "Denne funktion har været tilgængelig siden %PRODUCTNAME 7.5."
#. BBvtw
#: avail_release.xhp
@@ -5821,7 +5821,7 @@ msgctxt ""
"par_id491702125833846\n"
"help.text"
msgid "Choose <menuitem>Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark</menuitem>."
#. m8a3n
#: sheet_menu.xhp
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id981702420507898\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cycle Cell Reference Types</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Gennemløb typer af cellereference</menuitem>."
#. kstiu
#: sheet_menu.xhp
@@ -5839,7 +5839,7 @@ msgctxt ""
"par_id261634778277541\n"
"help.text"
msgid "Choose <menuitem>Sheet - Hide Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Skjul ark</menuitem>."
#. Ewj9e
#: sheet_menu.xhp
@@ -5848,7 +5848,7 @@ msgctxt ""
"par_id131684935639912\n"
"help.text"
msgid "Choose <menuitem>Layout - Hide Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Skjul ark</menuitem>."
#. B2Rga
#: sheet_menu.xhp
@@ -5857,7 +5857,7 @@ msgctxt ""
"par_id301684935381277\n"
"help.text"
msgid "Choose <menuitem>Hide Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Skjul ark</menuitem>."
#. S2b9t
#: sheet_menu.xhp
@@ -5866,7 +5866,7 @@ msgctxt ""
"par_id751684936323402\n"
"help.text"
msgid "<image src=\"cmd/lc_hide.svg\" id=\"img_id811684936323403\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991684936323404\">Icon Hide Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_hide.svg\" id=\"img_id811684936323403\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id991684936323404\">Ikonet Skjul ark</alt></image>"
#. XVhHY
#: sheet_menu.xhp
@@ -5875,7 +5875,7 @@ msgctxt ""
"par_id21684936323406\n"
"help.text"
msgid "Hide Sheet"
-msgstr ""
+msgstr "Skjul ark"
#. Ye6YE
#: sheet_menu.xhp
@@ -5884,7 +5884,7 @@ msgctxt ""
"par_id451634778277541\n"
"help.text"
msgid "Choose <menuitem>Sheet - Show Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Vis ark</menuitem>."
#. 8c64c
#: sheet_menu.xhp
@@ -5893,7 +5893,7 @@ msgctxt ""
"par_id411684944573183\n"
"help.text"
msgid "Choose <menuitem>Layout - Show Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Vis ark</menuitem>."
#. BeoyP
#: sheet_menu.xhp
@@ -5902,7 +5902,7 @@ msgctxt ""
"par_id305684935381277\n"
"help.text"
msgid "Choose <menuitem>Show Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Vis ark</menuitem>."
#. krZMU
#: sheet_menu.xhp
@@ -5911,7 +5911,7 @@ msgctxt ""
"par_id131684944751987\n"
"help.text"
msgid "<image src=\"cmd/lc_show.svg\" id=\"img_id611684944751988\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131684944751989\">Icon Show Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_show.svg\" id=\"img_id611684944751988\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id131684944751989\">Ikonet Vis ark</alt></image>"
#. BrEra
#: sheet_menu.xhp
@@ -5920,7 +5920,7 @@ msgctxt ""
"par_id391684944751991\n"
"help.text"
msgid "Show Sheet"
-msgstr ""
+msgstr "Vis ark"
#. xSd8m
#: sheet_menu.xhp
@@ -5965,7 +5965,7 @@ msgctxt ""
"par_id261684778277541\n"
"help.text"
msgid "Choose <menuitem>Sheet - Sheet Tab Color</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Arkfanefarve</menuitem>."
#. sY2oy
#: sheet_menu.xhp
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id111684946822769\n"
"help.text"
msgid "Choose <menuitem>Tab Color</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Fanefarve</menuitem>"
#. Gg5aL
#: sheet_menu.xhp
@@ -5983,7 +5983,7 @@ msgctxt ""
"par_id21684946976192\n"
"help.text"
msgid "<image src=\"cmd/lc_backgroundcolor.svg\" id=\"img_id441684946976193\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id191684946976194\">Icon Sheet Tab Color</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_backgroundcolor.svg\" id=\"img_id441684946976193\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id191684946976194\">Ikonet Arkfanefarve</alt></image>"
#. ewFSj
#: sheet_menu.xhp
@@ -5992,7 +5992,7 @@ msgctxt ""
"par_id191684946976196\n"
"help.text"
msgid "Sheet Tab Color"
-msgstr ""
+msgstr "Arkfanefarve"
#. qEEBh
#: sheet_menu.xhp
@@ -6001,7 +6001,7 @@ msgctxt ""
"par_id3163805\n"
"help.text"
msgid "Choose <emph>Sheet - Rename Sheet</emph>."
-msgstr ""
+msgstr "Vælg <emph>Ark ▸ Omdøb ark</emph>."
#. Byrnu
#: sheet_menu.xhp
@@ -6010,7 +6010,7 @@ msgctxt ""
"par_id911684944573183\n"
"help.text"
msgid "Choose <menuitem>Layout - Rename Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Omdøb ark</menuitem>."
#. 8E9L4
#: sheet_menu.xhp
@@ -6019,7 +6019,7 @@ msgctxt ""
"par_id911684946107120\n"
"help.text"
msgid "Choose <menuitem>Rename Sheet</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Omdøb ark</menuitem>"
#. nRMSC
#: sheet_menu.xhp
@@ -6028,7 +6028,7 @@ msgctxt ""
"par_id661684949102501\n"
"help.text"
msgid "<image src=\"cmd/lc_name.svg\" id=\"img_id71684949102502\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11684949102503\">Icon Rename Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_name.svg\" id=\"img_id71684949102502\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id11684949102503\">Ikonet Omdøb ark</alt></image>"
#. eDyGD
#: sheet_menu.xhp
@@ -6037,7 +6037,7 @@ msgctxt ""
"par_id931684949102505\n"
"help.text"
msgid "Rename Sheet"
-msgstr ""
+msgstr "Omdøb ark"
#. pZv8T
#: sheet_menu.xhp
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "Choose <menuitem>Sheet - Delete Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Slet ark</menuitem>."
#. iQFcu
#: sheet_menu.xhp
@@ -6055,7 +6055,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "Choose <menuitem>Delete Sheet</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Slet ark</menuitem>"
#. Vd6C4
#: sheet_menu.xhp
@@ -6064,7 +6064,7 @@ msgctxt ""
"par_id41684956263162\n"
"help.text"
msgid "<image src=\"cmd/lc_remove.svg\" id=\"img_id191684956263163\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id931684956263164\">Icon Delete Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_remove.svg\" id=\"img_id191684956263163\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id931684956263164\">Ikonet Slet ark</alt></image>"
#. 2BztQ
#: sheet_menu.xhp
@@ -6073,7 +6073,7 @@ msgctxt ""
"par_id491684956263166\n"
"help.text"
msgid "Delete Sheet"
-msgstr ""
+msgstr "Slet ark"
#. qYCrn
#: sheet_menu.xhp
@@ -6082,7 +6082,7 @@ msgctxt ""
"par_id231702400095820\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Sheet at End</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt ark ved slutningen</menuitem>."
#. oCWFr
#: sheet_menu.xhp
@@ -6091,7 +6091,7 @@ msgctxt ""
"par_id3149033\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt ark</menuitem>."
#. 6zqCd
#: sheet_menu.xhp
@@ -6100,7 +6100,7 @@ msgctxt ""
"par_id691684958427498\n"
"help.text"
msgid "Choose <menuitem>Layout - Insert Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Indsæt ark</menuitem>."
#. m4EzR
#: sheet_menu.xhp
@@ -6109,7 +6109,7 @@ msgctxt ""
"par_id691684958427400\n"
"help.text"
msgid "Choose <menuitem>Insert - Insert Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Indsæt ark</menuitem>."
#. dZe78
#: sheet_menu.xhp
@@ -6118,7 +6118,7 @@ msgctxt ""
"par_id501684958243009\n"
"help.text"
msgid "Choose <menuitem>Insert Sheet</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ark</menuitem>"
#. i6Cdx
#: sheet_menu.xhp
@@ -6127,7 +6127,7 @@ msgctxt ""
"par_id691684958301648\n"
"help.text"
msgid "<image src=\"cmd/lc_insert.svg\" id=\"img_id61684958301649\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961684958301649\">Icon Insert Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insert.svg\" id=\"img_id61684958301649\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id961684958301649\">Ikonet Indsæt ark</alt></image>"
#. 4Q6CT
#: sheet_menu.xhp
@@ -6136,7 +6136,7 @@ msgctxt ""
"par_id131684958301651\n"
"help.text"
msgid "Insert Sheet"
-msgstr ""
+msgstr "Indsæt ark"
#. naE2B
#: sheet_menu.xhp
@@ -6145,7 +6145,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "Choose <emph>Sheet - Move or Copy Sheet</emph>."
-msgstr ""
+msgstr "Vælg <emph>Ark ▸ Flyt eller kopiér ark</emph>."
#. Dc64J
#: sheet_menu.xhp
@@ -6154,7 +6154,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "Choose <menuitem>Move or Copy Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Flyt eller kopiér ark</menuitem>."
#. 7XraB
#: sheet_menu.xhp
@@ -6163,7 +6163,7 @@ msgctxt ""
"par_id481684960629381\n"
"help.text"
msgid "<image src=\"cmd/lc_move.svg\" id=\"img_id641684960629382\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481684960629383\">Icon Move or Copy Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_move.svg\" id=\"img_id641684960629382\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id481684960629383\">Ikonet Flyt eller kopiér ark</alt></image>"
#. weVwf
#: sheet_menu.xhp
@@ -6172,7 +6172,7 @@ msgctxt ""
"par_id191684960629385\n"
"help.text"
msgid "Move or Copy Sheet"
-msgstr ""
+msgstr "Flyt eller kopiér ark"
#. G5WJX
#: sheet_menu.xhp
@@ -6181,7 +6181,7 @@ msgctxt ""
"par_id3149020\n"
"help.text"
msgid "Choose <menuitem>Tools - Protect Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Funktioner ▸ Beskyt ark</menuitem>."
#. JGKyR
#: sheet_menu.xhp
@@ -6190,7 +6190,7 @@ msgctxt ""
"par_id561684962038778\n"
"help.text"
msgid "Choose <menuitem>Review - Protect Sheet</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Gennemse ▸ Beskyt ark</menuitem>"
#. Fg4o9
#: sheet_menu.xhp
@@ -6199,7 +6199,7 @@ msgctxt ""
"par_id191684962104122\n"
"help.text"
msgid "Choose <menuitem>Protect Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Beskyt ark</menuitem>."
#. gSkGN
#: sheet_menu.xhp
@@ -6208,7 +6208,7 @@ msgctxt ""
"par_id461684962135185\n"
"help.text"
msgid "<image src=\"cmd/lc_protect.svg\" id=\"img_id891684962135186\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291684962135187\">Icon Protect Sheet</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_protect.svg\" id=\"img_id891684962135186\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id291684962135187\">Ikonet Beskyt ark</alt></image>"
#. FZA7j
#: sheet_menu.xhp
@@ -6217,7 +6217,7 @@ msgctxt ""
"par_id611684962135188\n"
"help.text"
msgid "Protect Sheet"
-msgstr ""
+msgstr "Beskyt ark"
#. xQnd2
#: sheet_menu.xhp
@@ -6226,7 +6226,7 @@ msgctxt ""
"par_id621685036766205\n"
"help.text"
msgid "Choose <menuitem>Sheet - Sheet Events</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Arkhændelser</menuitem>"
#. FJ7Wz
#: sheet_menu.xhp
@@ -6235,7 +6235,7 @@ msgctxt ""
"par_id681685036795260\n"
"help.text"
msgid "Choose <menuitem>Layout - Sheet Events</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Arkhændelser</menuitem>"
#. ih6da
#: sheet_menu.xhp
@@ -6244,7 +6244,7 @@ msgctxt ""
"par_id631685036821963\n"
"help.text"
msgid "Choose <menuitem>Sheet Events</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Arkhændelser</menuitem>"
#. X8iJZ
#: sheet_menu.xhp
@@ -6253,7 +6253,7 @@ msgctxt ""
"par_id461685036844841\n"
"help.text"
msgid "<image src=\"cmd/lc_animationeffects.svg\" id=\"img_id221685036844842\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271685036844843\">Icon Sheet Events</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_animationeffects.svg\" id=\"img_id221685036844842\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id271685036844843\">Ikonet Arkhændelser</alt></image>"
#. SAtBP
#: sheet_menu.xhp
@@ -6262,7 +6262,7 @@ msgctxt ""
"par_id421685036844845\n"
"help.text"
msgid "Sheet Events"
-msgstr ""
+msgstr "Arkhændelser"
#. Zq7BV
#: sheet_menu.xhp
@@ -6271,7 +6271,7 @@ msgctxt ""
"par_id981702136310437\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Rows</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt rækker</menuitem>."
#. JCGpH
#: sheet_menu.xhp
@@ -6280,7 +6280,7 @@ msgctxt ""
"par_id631702136321436\n"
"help.text"
msgid "Choose <menuitem>Home - Row</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Række</menuitem>."
#. KgZFA
#: sheet_menu.xhp
@@ -6289,7 +6289,7 @@ msgctxt ""
"par_id451702136327775\n"
"help.text"
msgid "Choose <menuitem>Layout - Row</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Række</menuitem>."
#. CBGb9
#: sheet_menu.xhp
@@ -6298,7 +6298,7 @@ msgctxt ""
"par_id731702136089557\n"
"help.text"
msgid "<image src=\"cmd/lc_entirerow.svg\" id=\"img_id1001702136089558\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id371702136089559\">Icon Insert Row</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_entirerow.svg\" id=\"img_id1001702136089558\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id371702136089559\">Ikonet Indsæt række</alt></image>"
#. EVZTV
#: sheet_menu.xhp
@@ -6307,7 +6307,7 @@ msgctxt ""
"par_id741702136089561\n"
"help.text"
msgid "Insert Row"
-msgstr ""
+msgstr "Indsæt række"
#. tgYZN
#: sheet_menu.xhp
@@ -6316,7 +6316,7 @@ msgctxt ""
"par_id171702137212952\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Columns</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt kolonner</menuitem>."
#. 6peDf
#: sheet_menu.xhp
@@ -6325,7 +6325,7 @@ msgctxt ""
"par_id481702137217464\n"
"help.text"
msgid "Choose <menuitem>Home - Column</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Hjem ▸ Kolonne</menuitem>."
#. DhYsC
#: sheet_menu.xhp
@@ -6334,7 +6334,7 @@ msgctxt ""
"par_id631702137221935\n"
"help.text"
msgid "Choose <menuitem>Layout - Column</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Layout ▸ Kolonne</menuitem>."
#. cuiVD
#: sheet_menu.xhp
@@ -6343,7 +6343,7 @@ msgctxt ""
"par_id921702137173244\n"
"help.text"
msgid "<image src=\"cmd/lc_entirecolumn.svg\" id=\"img_id611702137173245\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661702137173246\">Icon Insert Column</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_entirecolumn.svg\" id=\"img_id611702137173245\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661702137173246\">Ikonet Indsæt kolonne</alt></image>"
#. KeEEt
#: sheet_menu.xhp
@@ -6352,7 +6352,7 @@ msgctxt ""
"par_id881702137173248\n"
"help.text"
msgid "Insert Columns"
-msgstr ""
+msgstr "Indsæt kolonner"
#. hLmB7
#: sheet_menu.xhp
@@ -6361,7 +6361,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Page Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt sideskift</menuitem>."
#. yst7E
#: sheet_menu.xhp
@@ -6370,7 +6370,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Page Break - Row Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt sideskift ▸ Rækkeskift</menuitem>."
#. AD6EC
#: sheet_menu.xhp
@@ -6379,7 +6379,7 @@ msgctxt ""
"par_id381702145053612\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Row Break</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Rækkeskift</menuitem>."
#. Stq7H
#: sheet_menu.xhp
@@ -6388,7 +6388,7 @@ msgctxt ""
"par_id561702144996563\n"
"help.text"
msgid "<image src=\"cmd/lc_insertrowbreak.svg\" id=\"img_id751702144996564\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551702144996565\">Icon Insert Row Break</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertrowbreak.svg\" id=\"img_id751702144996564\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id551702144996565\">Ikonet Indsæt rækkeskift</alt></image>"
#. 4aYoG
#: sheet_menu.xhp
@@ -6397,7 +6397,7 @@ msgctxt ""
"par_id481702144996567\n"
"help.text"
msgid "Insert Row Break"
-msgstr ""
+msgstr "Indsæt rækkeskift"
#. oTGhQ
#: sheet_menu.xhp
@@ -6406,7 +6406,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Choose <menuitem>Sheet - Insert Page Break - Column Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Indsæt sideskift ▸ Kolonneskift</menuitem>."
#. vPDdX
#: sheet_menu.xhp
@@ -6415,7 +6415,7 @@ msgctxt ""
"par_id741702145047953\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Column Break</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Kolonneskift</menuitem>."
#. bupVq
#: sheet_menu.xhp
@@ -6424,7 +6424,7 @@ msgctxt ""
"par_id211702145183778\n"
"help.text"
msgid "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id681702145183779\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561702145183780\">Icon Insert Column Break</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_insertcolumnbreak.svg\" id=\"img_id681702145183779\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id561702145183780\">Ikonet Indsæt kolonneskift</alt></image>"
#. iKrUU
#: sheet_menu.xhp
@@ -6433,7 +6433,7 @@ msgctxt ""
"par_id821702145183781\n"
"help.text"
msgid "Insert Column Break"
-msgstr ""
+msgstr "Indsæt kolonneskift"
#. GkERD
#: sheet_menu.xhp
@@ -6442,7 +6442,7 @@ msgctxt ""
"par_id3153093\n"
"help.text"
msgid "Choose <menuitem>Sheet - Delete Page Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Slet sideskift</menuitem>."
#. GWnPT
#: sheet_menu.xhp
@@ -6451,7 +6451,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "Choose <menuitem>Sheet - Delete Page Break - Row Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Slet sideskift ▸ Rækkeskift</menuitem>."
#. qXtxf
#: sheet_menu.xhp
@@ -6460,7 +6460,7 @@ msgctxt ""
"par_id931702166977088\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Row Break</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Rækkeskift</menuitem>."
#. K5PTy
#: sheet_menu.xhp
@@ -6469,7 +6469,7 @@ msgctxt ""
"par_id801702167390863\n"
"help.text"
msgid "Choose <menuitem>Sheet - Delete Page Break - Column Break</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Slet sideskift ▸ Kolonneskift</menuitem>."
#. JGsxi
#: sheet_menu.xhp
@@ -6478,7 +6478,7 @@ msgctxt ""
"par_id221702167401368\n"
"help.text"
msgid "On the <menuitem>Layout</menuitem> menu of the <menuitem>Layout</menuitem> tab, choose <menuitem>Column Break</menuitem>."
-msgstr ""
+msgstr "I menuen <menuitem>Layout</menuitem> på fanebladet <menuitem>Layout</menuitem>, vælg <menuitem>Kolonneskift</menuitem>."
#. cFGrj
#: sheet_menu.xhp
@@ -6487,7 +6487,7 @@ msgctxt ""
"par_id511702935011731\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cell Comments</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Cellekommentarer</menuitem>."
#. PGEHP
#: sheet_menu.xhp
@@ -6505,7 +6505,7 @@ msgctxt ""
"par_id641631903140705\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cell Comments - Hide Comment</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Cellekommentarer ▸ Skjul kommentar</menuitem>"
#. ZotAh
#: sheet_menu.xhp
@@ -6514,7 +6514,7 @@ msgctxt ""
"par_id591702936735244\n"
"help.text"
msgid "Choose <menuitem>Hide Comment</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Skjul kommentar</menuitem>."
#. FBGrL
#: sheet_menu.xhp
@@ -6523,7 +6523,7 @@ msgctxt ""
"par_id311702937087575\n"
"help.text"
msgid "<image src=\"cmd/lc_hidenote.svg\" id=\"img_id591702937087576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id441702937087577\">Icon Hide Comment</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_hidenote.svg\" id=\"img_id591702937087576\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id441702937087577\">Ikonet Skjul kommentar</alt></image>"
#. RQgGH
#: sheet_menu.xhp
@@ -6532,7 +6532,7 @@ msgctxt ""
"par_id161702937087579\n"
"help.text"
msgid "Hide Comment"
-msgstr ""
+msgstr "Skjul kommentar"
#. mtWsM
#: sheet_menu.xhp
@@ -6541,7 +6541,7 @@ msgctxt ""
"par_id611631903144777\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cell Comments - Show Comment</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Cellekommentarer ▸ Vis kommentar</menuitem>"
#. FTfs6
#: sheet_menu.xhp
@@ -6550,7 +6550,7 @@ msgctxt ""
"par_id711702938268509\n"
"help.text"
msgid "Choose <menuitem>Show Comment</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Vis kommentar</menuitem>."
#. jyafX
#: sheet_menu.xhp
@@ -6559,7 +6559,7 @@ msgctxt ""
"par_id161702938290460\n"
"help.text"
msgid "<image src=\"cmd/lc_shownote.svg\" id=\"img_id21702938290461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91702938290462\">Icon Show Comment</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_shownote.svg\" id=\"img_id21702938290461\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id91702938290462\">Ikonet Vis kommentar</alt></image>"
#. TJFiv
#: sheet_menu.xhp
@@ -6568,7 +6568,7 @@ msgctxt ""
"par_id841702938290463\n"
"help.text"
msgid "Show Comment"
-msgstr ""
+msgstr "Vis kommentar"
#. fDua6
#: sheet_menu.xhp
@@ -6577,7 +6577,7 @@ msgctxt ""
"par_id961631903149304\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cell Comments - Delete Comment</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Cellekommentarer ▸ Slet kommentar</menuitem>"
#. UuXES
#: sheet_menu.xhp
@@ -6586,7 +6586,7 @@ msgctxt ""
"par_id181702947009943\n"
"help.text"
msgid "Choose <menuitem>Delete Comment</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Slet kommentar</menuitem>."
#. BbB2Q
#: sheet_menu.xhp
@@ -6595,7 +6595,7 @@ msgctxt ""
"par_id381702947173325\n"
"help.text"
msgid "Choose <menuitem>Review - Delete Comment</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Gennemse ▸ Slet kommentar</menuitem>."
#. irMeE
#: sheet_menu.xhp
@@ -6604,7 +6604,7 @@ msgctxt ""
"par_id961702947038211\n"
"help.text"
msgid "<image src=\"cmd/lc_deleteannotation.svg\" id=\"img_id361702947038212\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id681702947038213\">Icon Delete Comment</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_deleteannotation.svg\" id=\"img_id361702947038212\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id681702947038213\">Ikonet Slet kommentar</alt></image>"
#. NYhJA
#: sheet_menu.xhp
@@ -6613,7 +6613,7 @@ msgctxt ""
"par_id221702947038214\n"
"help.text"
msgid "Delete Comment"
-msgstr ""
+msgstr "Slet kommentar"
#. e6Jua
#: sheet_menu.xhp
@@ -6622,7 +6622,7 @@ msgctxt ""
"par_id471631903160977\n"
"help.text"
msgid "Choose <menuitem>Sheet - Cell Comments - Delete All Comments</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Cellekommentarer ▸ Slet alle kommentarer</menuitem>"
#. 9q47y
#: sheet_menu.xhp
@@ -6631,7 +6631,7 @@ msgctxt ""
"par_id201702947317948\n"
"help.text"
msgid "Choose <menuitem>Review - Delete All Comments</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Gennemse ▸ Slet alle kommentarer</menuitem>."
#. nxKGZ
#: sheet_menu.xhp
@@ -6640,7 +6640,7 @@ msgctxt ""
"par_id371702947343458\n"
"help.text"
msgid "<image src=\"cmd/lc_deleteallannotation.svg\" id=\"img_id221702947343459\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id941702947343460\">Icon Delete All Comments</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_deleteallannotation.svg\" id=\"img_id221702947343459\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id941702947343460\">Ikonet Slet alle kommentarer</alt></image>"
#. 3bVhn
#: sheet_menu.xhp
@@ -6649,7 +6649,7 @@ msgctxt ""
"par_id31702947343462\n"
"help.text"
msgid "Delete All Comments"
-msgstr ""
+msgstr "Slet alle kommentarer"
#. Fy7UD
#: sheet_menu.xhp
@@ -6658,7 +6658,7 @@ msgctxt ""
"par_id591702950637039\n"
"help.text"
msgid "Choose <menuitem>Sheet - Navigate</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Navigér</menuitem>."
#. QyjVQ
#: sheet_menu.xhp
@@ -6667,7 +6667,7 @@ msgctxt ""
"par_id131702951930928\n"
"help.text"
msgid "Choose <menuitem>Sheet - Navigate - To Next Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Navigér ▸ Til næste ark</menuitem>."
#. PbwEZ
#: sheet_menu.xhp
@@ -6676,7 +6676,7 @@ msgctxt ""
"par_id601702952027454\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Tab</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Tabulator</keycode>"
#. fFzWR
#: sheet_menu.xhp
@@ -6685,7 +6685,7 @@ msgctxt ""
"par_id471702952143358\n"
"help.text"
msgid "Choose <menuitem>Sheet - Navigate - To Previous Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Navigér ▸ Til forrige ark</menuitem>."
#. MCVG2
#: sheet_menu.xhp
@@ -6694,4 +6694,4 @@ msgctxt ""
"par_id551702952160062\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Shift +Tab</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + Skift +Tabulator</keycode>"
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index ef3fc7c032b..5751a7fdb84 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1560886639.000000\n"
#. sZfWF
@@ -1643,7 +1643,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Fill Random Numbers"
-msgstr "Udfyld tilfældige tal"
+msgstr "Fyld tilfældige tal"
#. AFQcX
#: 02140700.xhp
@@ -1652,7 +1652,7 @@ msgctxt ""
"hd_id2308201415431520596\n"
"help.text"
msgid "<link href=\"text/scalc/01/02140700.xhp\">Fill Random Numbers</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02140700.xhp\">Fyld tilfældige tal</link>"
#. 7mPnk
#: 02140700.xhp
@@ -1994,7 +1994,7 @@ msgctxt ""
"par_id2308201415432870493\n"
"help.text"
msgid "Poisson"
-msgstr ""
+msgstr "Poisson"
#. cTXjZ
#: 02140700.xhp
@@ -2003,7 +2003,7 @@ msgctxt ""
"par_id2308201415432973994\n"
"help.text"
msgid "<emph>Mean:</emph> The mean of the Poisson distribution."
-msgstr ""
+msgstr "<emph>Middelværdi</emph>: Middelværdien for Poisson-fordelingen."
#. akcZB
#: 02140700.xhp
@@ -2066,7 +2066,7 @@ msgctxt ""
"par_id2308201415431822157\n"
"help.text"
msgid "<ahelp hid=\".\">Round the number to a given number of <emph>Decimal Places</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Afrunder tallet til et givet antal <emph>decimaler</emph>.</ahelp>"
#. Wj97D
#: 02140700.xhp
@@ -2336,7 +2336,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/scalc/01/02160000.xhp\">Delete Cells</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/02160000.xhp\">Slet celler</link>"
#. 5FoZA
#: 02160000.xhp
@@ -2426,7 +2426,7 @@ msgctxt ""
"par_id581702131982105\n"
"help.text"
msgid "This command is equivalent to <embedvar href=\"text/shared/01/DeleteRows.xhp#h1\" markup=\"ignore\"/>."
-msgstr ""
+msgstr "Denne kommando svarer til <embedvar href=\"text/shared/01/DeleteRows.xhp#h1\" markup=\"ignore\"/>."
#. HFAFf
#: 02160000.xhp
@@ -2453,7 +2453,7 @@ msgctxt ""
"par_id311702131990711\n"
"help.text"
msgid "This command is equivalent to <embedvar href=\"text/shared/01/DeleteColumns.xhp#h1\" markup=\"ignore\"/>."
-msgstr ""
+msgstr "Denne kommando svarer til <embedvar href=\"text/shared/01/DeleteColumns.xhp#h1\" markup=\"ignore\"/>."
#. 727Hj
#: 02160000.xhp
@@ -2489,7 +2489,7 @@ msgctxt ""
"hd_id3156424\n"
"help.text"
msgid "<variable id=\"delete_sheet\"><link href=\"text/scalc/01/02170000.xhp#deletesheet\">Delete Sheet</link></variable>"
-msgstr ""
+msgstr "<variable id=\"delete_sheet\"><link href=\"text/scalc/01/02170000.xhp#deletesheet\">Slet ark</link></variable>"
#. b3pJB
#: 02170000.xhp
@@ -2498,7 +2498,7 @@ msgctxt ""
"par_id3153193\n"
"help.text"
msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet or selected sheets.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Sletter det aktuelle ark eller de valgte ark.</ahelp></variable>"
#. 6JJp6
#: 02170000.xhp
@@ -2516,7 +2516,7 @@ msgctxt ""
"par_id921684957633412\n"
"help.text"
msgid "You cannot delete all the sheets of the document. The document must have at least one sheet."
-msgstr ""
+msgstr "Du kan ikke slette alle arkene i dokumentet. Dokumentet må have mindst ét ark."
#. TfEAD
#: 02170000.xhp
@@ -2525,7 +2525,7 @@ msgctxt ""
"par_id691684957638352\n"
"help.text"
msgid "A dialog prompts to confirm deletion."
-msgstr ""
+msgstr "En dialog beder dig bekræfte sletning."
#. k9Be9
#: 02180000.xhp
@@ -2795,7 +2795,7 @@ msgctxt ""
"hd_id3156023\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/scalc/01/02210000.xhp\">Select Sheets</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/scalc/01/02210000.xhp\">Vælg ark</link></variable>"
#. AvaHe
#: 02210000.xhp
@@ -2804,7 +2804,7 @@ msgctxt ""
"par_id3147265\n"
"help.text"
msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Opens the <emph>Select Sheets</emph> dialog to select multiple sheets.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Åbner dialogen <emph>Vælg ark</emph>, hvor flere ark kan vælges.</ahelp></variable>"
#. GNEFZ
#: 02210000.xhp
@@ -2831,7 +2831,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Go to Sheet"
-msgstr ""
+msgstr "Gå til ark"
#. 88YoD
#: 02220000.xhp
@@ -2840,7 +2840,7 @@ msgctxt ""
"bm_id781654171314500\n"
"help.text"
msgid "<bookmark_value>Go to sheet</bookmark_value> <bookmark_value>jump; to given sheet</bookmark_value> <bookmark_value>sheet; go to directly</bookmark_value> <bookmark_value>sheet; search and go to</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Gå til ark</bookmark_value><bookmark_value>gå til; givet ark</bookmark_value><bookmark_value>ark; gå direkte til</bookmark_value><bookmark_value>ark; søg og gå til</bookmark_value>"
#. Ky4LF
#: 02220000.xhp
@@ -2849,7 +2849,7 @@ msgctxt ""
"hd_id3156025\n"
"help.text"
msgid "<variable id=\"GotoSheeth1\"><link href=\"text/scalc/01/02220000.xhp\">Go to Sheet</link></variable>"
-msgstr ""
+msgstr "<variable id=\"GotoSheeth1\"><link href=\"text/scalc/01/02220000.xhp\">Gå til ark</link></variable>"
#. UmffC
#: 02220000.xhp
@@ -2858,7 +2858,7 @@ msgctxt ""
"par_id3147266\n"
"help.text"
msgid "<variable id=\"gototable\"><ahelp hid=\".uno:JumpToTable\" visibility=\"visible\">Go to a specified sheet.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"gototable\"><ahelp hid=\".uno:JumpToTable\" visibility=\"visible\">Gå til et specifikt ark.</ahelp></variable>"
#. ghXGk
#: 02220000.xhp
@@ -2867,7 +2867,7 @@ msgctxt ""
"par_id231655657630178\n"
"help.text"
msgid "Choose <menuitem>Sheet - Navigate - Go To Sheet</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Ark ▸ Navigér ▸ Gå til ark</menuitem>."
#. dPFgf
#: 02220000.xhp
@@ -2876,7 +2876,7 @@ msgctxt ""
"hd_id3125862\n"
"help.text"
msgid "Type a sheet name"
-msgstr ""
+msgstr "Skriv et arknavn"
#. guUL9
#: 02220000.xhp
@@ -2885,7 +2885,7 @@ msgctxt ""
"par_id3153975\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_GOTOTABLEMASK\">Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters. Search is case-sensitive. If empty, all visible sheets are listed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_GOTOTABLEMASK\">Skriv nogle bogstaver, som findes i navnet på det ark, du søger efter. Listen af ark vil blive begrænset til arknavne der indeholder disse tegn. Søgning skelner mellem Store og små bogstaver. Hvis du ikke ikke skriver noget, vises alle ark.</ahelp>"
#. aCw4F
#: 02220000.xhp
@@ -2894,7 +2894,7 @@ msgctxt ""
"hd_id3125866\n"
"help.text"
msgid "Sheets"
-msgstr ""
+msgstr "Ark"
#. JEuum
#: 02220000.xhp
@@ -15247,7 +15247,7 @@ msgctxt ""
"par_id801590242114296\n"
"help.text"
msgid "Use the Fill Cell command with random numbers (<menuitem>Sheet - Fill Cells - Fill Random Numbers</menuitem>)."
-msgstr "Brug kommandoen Udfyld celler med tilfældige tal (<menuitem>Ark - Udfyld celler - Tilfældigt tal</menuitem>)."
+msgstr "Brug kommandoen Udfyld celler med tilfældige tal (<menuitem>Ark ▸ Udfyld celler ▸ Fyld tilfældige tal</menuitem>)."
#. o9wUN
#: 04060106.xhp
@@ -42715,7 +42715,7 @@ msgctxt ""
"hd_id3154492\n"
"help.text"
msgid "Update every"
-msgstr "Opdater efter"
+msgstr "Opdatér efter"
#. zX8A3
#: 04090000.xhp
@@ -44508,7 +44508,7 @@ msgctxt ""
"hd_id3153813\n"
"help.text"
msgid "Update Style"
-msgstr "Opdater typografi"
+msgstr "Opdatér typografi"
#. cnnLu
#: 05100000.xhp
@@ -44526,7 +44526,7 @@ msgctxt ""
"par_id3145118\n"
"help.text"
msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155754\">Icon Update Style</alt></image>"
-msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155754\">ikonet Opdater typografi</alt></image>"
+msgstr "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3155754\">ikonet Opdatér typografi</alt></image>"
#. AbPzG
#: 05100000.xhp
@@ -44535,7 +44535,7 @@ msgctxt ""
"par_id3147501\n"
"help.text"
msgid "Update Style"
-msgstr "Opdater typografi"
+msgstr "Opdatér typografi"
#. r8GGG
#: 05100000.xhp
@@ -45518,7 +45518,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Conditional Formatting - All cells"
-msgstr ""
+msgstr "Betinget formatering ▸ Alle celler"
#. 2J3Dw
#: 05120400.xhp
@@ -45536,7 +45536,7 @@ msgctxt ""
"par_id31662915586650\n"
"help.text"
msgid "Applies the conditional formatting to the set of cells defined in the selected range. The formatting is applied based on the contents of the whole range."
-msgstr ""
+msgstr "Anvender den betingede formatering på cellerne i det valgte område. Formateringen anvendes baseret på indholdet af hele området."
#. EzAUv
#: 05120400.xhp
@@ -46112,7 +46112,7 @@ msgctxt ""
"par_id3155606\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">How to use Icon Set Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Siden <link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">Hvordan man bruger ikonsæt betinget formatering</link> i TDF-Wiki."
#. s9tpC
#: 05120400.xhp
@@ -46121,7 +46121,7 @@ msgctxt ""
"par_id651663598549283\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">How to apply a Color Scale Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Siden <link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">Hvordan man bruger en farveskala betinget formatering</link> i TDF-Wiki."
#. AiUSf
#: 05120500.xhp
@@ -46130,7 +46130,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Conditional Formatting - Manage Conditions"
-msgstr ""
+msgstr "Betinget formatering ▸ Administrér betingelser"
#. a66Es
#: 05120500.xhp
@@ -46148,7 +46148,7 @@ msgctxt ""
"par_id3155906\n"
"help.text"
msgid "Manage all the conditional formatting defined in the spreadsheet."
-msgstr ""
+msgstr "Administrér alle de betingede formateringer defineret i regnearket."
#. rMivF
#: 05120500.xhp
@@ -46157,7 +46157,7 @@ msgctxt ""
"par_id3155907\n"
"help.text"
msgid "The <emph>Manage Conditional Formatting</emph> dialog is where you can add, edit or delete one or several conditional formattings."
-msgstr ""
+msgstr "I dialogen <emph>Administrér betinget formatering</emph> kan du tilføjet, redigere eller slette en eller flere betingede formateringer."
#. rFGM7
#: 05120500.xhp
@@ -46166,7 +46166,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "The <emph>Conditional Formats</emph> list displays the active conditional formatting rules set in the current spreadsheet. Only the first rule for each cell range is listed, even if there are multiple rules defined for a given range."
-msgstr ""
+msgstr "Listen <emph>Betingede formateringer</emph> viser de aktive regler for for betinget formatering, som er sat i det nuværende regneark. Kun den første regel for hvert celleområde er listet, selv om der er flere regler for et givet område."
#. dEeLT
#: 05120500.xhp
@@ -46175,7 +46175,7 @@ msgctxt ""
"par_id3155908\n"
"help.text"
msgid "If you have defined a conditional formatting on a cell range and you try now to define a new conditional formatting on a part of this range, a warning message will be displayed, asking if you want to edit the existing conditional formatting (on the whole range) or define a new conditional formatting overlapping it (on the selected range)."
-msgstr ""
+msgstr "Hvis du har defineret betinget formatering for et celleområde og du nu forsøger at defineret en ny betinget formatering på en del af dette område, så vil en advarsel blive vist, som spørger om du ønsker at redigere den eksisterende betingede formatering (for hele området) eller definere en ny betinget formatering, som overlapper (på det markerede område)."
#. GXZBY
#: 06020000.xhp
@@ -46697,7 +46697,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Refresh Traces"
-msgstr "Opdater spor"
+msgstr "Opdatér spor"
#. 9LwsC
#: 06030900.xhp
@@ -46715,7 +46715,7 @@ msgctxt ""
"hd_id3152349\n"
"help.text"
msgid "<link href=\"text/scalc/01/06030900.xhp\">Refresh Traces</link>"
-msgstr "<link href=\"text/scalc/01/06030900.xhp\">Opdater spor</link>"
+msgstr "<link href=\"text/scalc/01/06030900.xhp\">Opdatér spor</link>"
#. BfwsW
#: 06030900.xhp
@@ -46742,7 +46742,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
-msgstr "Start <emph>Funktioner - Detektiv - Opdater spor</emph>"
+msgstr "Start <emph>Funktioner ▸ Detektiv ▸ Opdatér spor</emph>"
#. xpA7W
#: 06030900.xhp
@@ -46751,7 +46751,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "If <emph>Tools - Detective - AutoRefresh</emph> is turned on, every time formulas are changed in the document."
-msgstr "Hver gang formler i dokumentet ændres, hvis <emph>Funktioner - Detektiv - Opdater Automatisk</emph> er slået til."
+msgstr "Hver gang formler i dokumentet ændres, hvis <emph>Funktioner ▸ Detektiv ▸ Opdatér automatisk</emph> er slået til."
#. rftbG
#: 06031000.xhp
@@ -46760,7 +46760,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoRefresh"
-msgstr "Opdater automatisk"
+msgstr "Opdatér automatisk"
#. KcDEQ
#: 06031000.xhp
@@ -46778,7 +46778,7 @@ msgctxt ""
"hd_id3154515\n"
"help.text"
msgid "<link href=\"text/scalc/01/06031000.xhp\">AutoRefresh</link>"
-msgstr "<link href=\"text/scalc/01/06031000.xhp\">Opdater automatisk</link>"
+msgstr "<link href=\"text/scalc/01/06031000.xhp\">Opdatér automatisk</link>"
#. TnDpQ
#: 06031000.xhp
@@ -47723,7 +47723,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Indsætter automatisk nye rækker og kolonner i databaseområdet i dit dokument, når nye dataposter bliver føjet til databasen.</ahelp> For at opdatere databaseområdet manuelt, vælg <emph>Data - Opdater område</emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/definedatabaserangedialog/InsertOrDeleteCells\" visibility=\"visible\">Indsætter automatisk nye rækker og kolonner i databaseområdet i dit dokument, når nye dataposter bliver føjet til databasen.</ahelp> For at opdatere databaseområdet manuelt, vælg <emph>Data ▸ Opdatér område</emph>."
#. 2oEGE
#: 12010100.xhp
@@ -47858,7 +47858,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. TDesh
#: 12030000.xhp
@@ -47939,7 +47939,7 @@ msgctxt ""
"hd_id3147428\n"
"help.text"
msgid "Sort by"
-msgstr "Sorter efter"
+msgstr "Sortér efter"
#. Lt4dN
#: 12030100.xhp
@@ -48047,7 +48047,7 @@ msgctxt ""
"hd_id3150300\n"
"help.text"
msgid "Sort Ascending/Descending"
-msgstr "Sorter stigende/faldende"
+msgstr "Sortér stigende/faldende"
#. hbqiZ
#: 12030100.xhp
@@ -48371,7 +48371,7 @@ msgctxt ""
"hd_id3154201\n"
"help.text"
msgid "Top to Bottom (Sort Rows)"
-msgstr "Top til bund (Sorter rækker)"
+msgstr "Top til bund (Sortér rækker)"
#. V6Ewe
#: 12030200.xhp
@@ -48389,7 +48389,7 @@ msgctxt ""
"hd_id3145588\n"
"help.text"
msgid "Left to Right (Sort Columns)"
-msgstr "Venstre til Højre (Sorter Kolonner)"
+msgstr "Venstre til højre (Sortér kolonner)"
#. BmYDU
#: 12030200.xhp
@@ -48479,7 +48479,7 @@ msgctxt ""
"hd_id101621534096986\n"
"help.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. u7XHt
#: 12040100.xhp
@@ -48497,7 +48497,7 @@ msgctxt ""
"hd_id561621534101425\n"
"help.text"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. CbVJm
#: 12040100.xhp
@@ -48902,7 +48902,7 @@ msgctxt ""
"par_id3149123\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
-msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Marker afkrydsningsfeltet <emph>Kopier resultater til</emph>, og angiv målområdet, hvor du vil vise de filtrerede data. Hvis dette felt er afkrydset, forbliver målområdet kædet til kildeområdet. Du skal have defineret kildeområdet under <emph>Data - Definer område</emph> som et databaseområde.</ahelp> Efter at have gjort dette, kan du når som helst genanvende det angivne filter: Klik i kildeområdet og vælg derefter <emph>Data - Opdater område</emph>."
+msgstr "<ahelp hid=\"modules/scalc/ui/standardfilterdialog/destpers\">Marker afkrydsningsfeltet <emph>Kopier resultater til</emph>, og angiv målområdet, hvor du vil vise de filtrerede data. Hvis dette felt er afkrydset, forbliver målområdet kædet til kildeområdet. Du skal have defineret kildeområdet under <emph>Data ▸ Definér område</emph> som et databaseområde.</ahelp> Efter at have gjort dette, kan du når som helst genanvende det angivne filter: Klik i kildeområdet og vælg derefter <emph>Data ▸ Opdatér område</emph>."
#. iFDua
#: 12040201.xhp
@@ -49253,7 +49253,7 @@ msgctxt ""
"hd_id3151119\n"
"help.text"
msgid "Pre-sort area according to groups"
-msgstr "Sorter først området efter grupper"
+msgstr "Sortér først området efter grupper"
#. vpMJn
#: 12050200.xhp
@@ -49271,7 +49271,7 @@ msgctxt ""
"hd_id3153951\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. LWEQW
#: 12050200.xhp
@@ -51748,7 +51748,7 @@ msgctxt ""
"par_idN10557\n"
"help.text"
msgid "Sort by"
-msgstr "Sorter efter"
+msgstr "Sortér efter"
#. mHJkA
#: 12090106.xhp
@@ -52009,7 +52009,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Refresh"
-msgstr "Opdater"
+msgstr "Opdatér"
#. c96PZ
#: 12090200.xhp
@@ -52018,7 +52018,7 @@ msgctxt ""
"hd_id3151385\n"
"help.text"
msgid "<link href=\"text/scalc/01/12090200.xhp\">Refresh</link>"
-msgstr "<link href=\"text/scalc/01/12090200.xhp\">Opdater</link>"
+msgstr "<link href=\"text/scalc/01/12090200.xhp\">Opdatér</link>"
#. To7EA
#: 12090200.xhp
@@ -52261,7 +52261,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Refresh Range"
-msgstr "Opdater område"
+msgstr "Opdatér område"
#. XEhmj
#: 12100000.xhp
@@ -52279,7 +52279,7 @@ msgctxt ""
"hd_id3153662\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\">Opdater område</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\">Opdatér område</link>"
#. fYiGb
#: 12100000.xhp
@@ -52639,7 +52639,7 @@ msgctxt ""
"par_idN10724\n"
"help.text"
msgid "Sort entries ascending"
-msgstr "Sorter elementer stigende"
+msgstr "Sortér elementer stigende"
#. FcnYF
#: 12120100.xhp
diff --git a/source/da/helpcontent2/source/text/scalc/guide.po b/source/da/helpcontent2/source/text/scalc/guide.po
index 90aac6389cf..a9c9854ae60 100644
--- a/source/da/helpcontent2/source/text/scalc/guide.po
+++ b/source/da/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/da/>\n"
"Language: da\n"
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3159156\n"
"help.text"
msgid "Using the menu command <emph>Format - Conditional - Condition</emph>, the dialog allows you to define conditions per cell, which must be met in order for the selected cells to have a particular format."
-msgstr "Når du bruger menukommandoen <emph>Formatér ▸ Betinget ▸ Betingelse</emph>, lader dialogen dig definere betingelser på celleplan, som skal opfyldes for at den valgte celle får et særligt format."
+msgstr "Når du bruger menukommandoen <emph>Formatér ▸ Betinget formatering ▸ Betingelse</emph>, lader dialogen dig definere betingelser på celleplan, som skal opfyldes for at den valgte celle får et særligt format."
#. SbhJy
#: cellstyle_conditional.xhp
@@ -2939,7 +2939,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Choose <emph>Format - Conditional - Condition</emph>."
-msgstr "Vælg <emph>Formatér ▸ Betinget ▸ Betingelse</emph>"
+msgstr "Vælg <emph>Formatér ▸ Betinget formatering ▸ Betingelse</emph>"
#. AnNxD
#: cellstyle_conditional.xhp
@@ -3146,7 +3146,7 @@ msgctxt ""
"par_id3153801\n"
"help.text"
msgid "Choose the <emph>Format - Conditional - Condition</emph> command to open the corresponding dialog."
-msgstr "Vælg kommandoen <emph>Formatér ▸ Betinget ▸ Betingelse</emph> for at åbne den tilsvarende dialog."
+msgstr "Vælg kommandoen <emph>Formatér ▸ Betinget formatering ▸ Betingelse</emph> for at åbne den tilsvarende dialog."
#. oaUQo
#: cellstyle_conditional.xhp
@@ -3227,7 +3227,7 @@ msgctxt ""
"par_id3159123\n"
"help.text"
msgid "<link href=\"text/scalc/01/05120000.xhp\">Format - Conditional - Condition</link>"
-msgstr "<link href=\"text/scalc/01/05120000.xhp\">Formatér ▸ Betinget ▸ Betingelse</link>"
+msgstr "<link href=\"text/scalc/01/05120000.xhp\">Formatér ▸ Betinget formatering ▸ Betingelse</link>"
#. HFoKB
#: cellstyle_minusvalue.xhp
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3154684\n"
"help.text"
msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
-msgstr "Hvis data i kildearket er blevet ændret,genberegner $[officename] pivottabellen. for at genberegne tabellen, vælg <emph>Data - Pivottabel - opdater</emph>. Gør det samme efter at du har importeret et Excel pivotark til $[officename] Calc."
+msgstr "Hvis data i kildearket er blevet ændret,genberegner $[officename] pivottabellen. for at genberegne tabellen, vælg <emph>Data ▸ Pivottabel ▸ opdatér</emph>. Gør det samme efter at du har importeret et Excel pivotark til $[officename] Calc."
#. kDqTU
#: dbase_files.xhp
@@ -9896,7 +9896,7 @@ msgctxt ""
"par_id451525146722974\n"
"help.text"
msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr "Vælg <emph>Data - Pivottabel - Opdater</emph>."
+msgstr "Vælg <emph>Data ▸ Pivottabel ▸ Opdatér</emph>."
#. Q3QuQ
#: pivotchart_update.xhp
@@ -9905,7 +9905,7 @@ msgctxt ""
"par_id331525146738273\n"
"help.text"
msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
-msgstr "Vælg <emph>Opdater...</emph> på kontekstmenuen på en vilkårlig celle i pivottabellen."
+msgstr "Vælg <emph>Opdatér...</emph> på kontekstmenuen på en vilkårlig celle i pivottabellen."
#. wpTTH
#: print_details.xhp
diff --git a/source/da/helpcontent2/source/text/schart/01.po b/source/da/helpcontent2/source/text/schart/01.po
index 8c3bc6dbf29..bde2252cf02 100644
--- a/source/da/helpcontent2/source/text/schart/01.po
+++ b/source/da/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-19 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/da/>\n"
"Language: da\n"
@@ -5038,7 +5038,7 @@ msgctxt ""
"hd_id731665497089724\n"
"help.text"
msgid "Show outline"
-msgstr ""
+msgstr "Vis omrids"
#. dBV6E
#: data_table.xhp
@@ -5047,7 +5047,7 @@ msgctxt ""
"par_id681665497198017\n"
"help.text"
msgid "Show or hide borders around the table."
-msgstr ""
+msgstr "Vis eller skjul omrids for tabellen."
#. YvKdx
#: data_table.xhp
@@ -5056,7 +5056,7 @@ msgctxt ""
"hd_id311665497090098\n"
"help.text"
msgid "Show keys"
-msgstr ""
+msgstr "Vis nøgler"
#. exJ2p
#: data_table.xhp
@@ -5065,7 +5065,7 @@ msgctxt ""
"par_id681665497198018\n"
"help.text"
msgid "Show or hide the key associated with each data series, which is the same key used in the chart legend."
-msgstr ""
+msgstr "Vis eller skjul nøglen forbundet med hver dataserie, hvilket er den samme nøgle som bruges i diagramforklaringen."
#. kQknt
#: smooth_line_properties.xhp
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id1331217\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the Pick a Color dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vælg en farve med Farvevalg-dialogen.</ahelp>"
#. CkjT6
#: three_d_view.xhp
@@ -5776,7 +5776,7 @@ msgctxt ""
"par_id5871761\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the Pick a Color dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vælg en farve med Farvevalg-dialogen.</ahelp>"
#. TzVRx
#: type_area.xhp
@@ -6649,7 +6649,7 @@ msgctxt ""
"par_id281715882742258\n"
"help.text"
msgid "Choose <menuitem>Insert - Chart - Chart Type - Pie</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Diagram ▸ Diagramtype ▸ Lagkage</menuitem>"
#. vcfpD
#: type_pie.xhp
@@ -6658,7 +6658,7 @@ msgctxt ""
"par_id281715882937791\n"
"help.text"
msgid "Choose <menuitem>Insert - Chart - Chart Type - Pie</menuitem>"
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Diagram ▸ Diagramtype ▸ Lagkage</menuitem>"
#. hGaaW
#: type_pie.xhp
@@ -6667,7 +6667,7 @@ msgctxt ""
"par_id821715883408073\n"
"help.text"
msgid "- then in the <menuitem>Chart Wizard</menuitem> choose <menuitem>Chart Type - Pie</menuitem>"
-msgstr ""
+msgstr "‒ vælg så <menuitem>Diagramtype ▸ Lagkage</menuitem> i <menuitem>Diagramguiden</menuitem>"
#. XGE3t
#: type_pie.xhp
@@ -6694,7 +6694,7 @@ msgctxt ""
"par_id6529740\n"
"help.text"
msgid "<menuitem>Pie:</menuitem> This subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
-msgstr ""
+msgstr "<menuitem>Lagkage</menuitem>: Denne undertype viser sektorer som farvede områder af den samlede lagkage, men kun for én datakolonne. I diagrammet kan du klikke og trække på en sektor for at adskille den sektor fra den øvrige lagkage eller for at tilføje den igen."
#. uFAir
#: type_pie.xhp
@@ -6703,7 +6703,7 @@ msgctxt ""
"par_id9121982\n"
"help.text"
msgid "<menuitem>Exploded pie:</menuitem> This subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
-msgstr ""
+msgstr "<menuitem>Adskilt lagkage</menuitem>: Den undertype viser sektorerne allerede adskilt fra hinanden. I diagrammet kan kun klikke og trække en sektor for at at flytte den langs en linje fra lagkagens centrum."
#. d4CLY
#: type_pie.xhp
@@ -6712,7 +6712,7 @@ msgctxt ""
"par_id3808404\n"
"help.text"
msgid "<menuitem>Donut:</menuitem> This subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr ""
+msgstr "<menuitem>Krans</menuitem>: Denne undertype kan vise flere datakolonner. Hver datakolonne vises som en krans med et hul, hvor den næste datakolonne kan vises. I diagrammet kan du klikke og trække en sektor for at flytte den langs en linje fra kransens centrum."
#. Ftj2b
#: type_pie.xhp
@@ -6721,7 +6721,7 @@ msgctxt ""
"par_id2394482\n"
"help.text"
msgid "<menuitem>Exploded donut:</menuitem> This subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
-msgstr ""
+msgstr "<menuitem>Adskilt krans</menuitem>: Denne undertype viser de ydre sektorer allerede adskilt fra resten af kransen. I diagrammet kan du klikke og trække en ydre sektor for at flytte den langs en linje fra kransens centrum."
#. 6wYBY
#: type_pie.xhp
@@ -6730,7 +6730,7 @@ msgctxt ""
"par_id471715871882381\n"
"help.text"
msgid "<menuitem>Bar-of-pie:</menuitem> This subtype shows a pie chart on the left, with the last three entries in the data column aggregated as a \"composite\" sector. The composite sector is broken down in a bar chart on the right."
-msgstr ""
+msgstr "<menuitem>Stolpe-fra-lagkage</menuitem>: Denne undertype viser et lagkagediagram til venstre, med de sidste tre værdier fra datakolonnen samlet som en \"sammensat\" sektor. Den sammensatte sektor er delt op i et stolpediagram til højre."
#. 3xwzT
#: type_pie.xhp
@@ -6739,7 +6739,7 @@ msgctxt ""
"par_id451715871912120\n"
"help.text"
msgid "<menuitem>Pie-of-pie:</menuitem> This subtype shows a pie chart on the left, with the last three entries in the data column aggregated as a \"composite\" sector. The composite sector is displayed on the right as another pie chart."
-msgstr ""
+msgstr "<menuitem>Lagkage-i-lagkage</menuitem>: Denne undertype viser et lagkagediagram til venstre, med de sidste tre værdier i datakolonnen samlet som en \"sammensat\" sektor. Den sammensatte sektor vises til højre som et andet lagkagediagram."
#. JRtGo
#: type_stock.xhp
@@ -7306,7 +7306,7 @@ msgctxt ""
"par_id1911679\n"
"help.text"
msgid "Based on <emph>open, low, high</emph>, and <emph>close</emph> column Type 2 generates the traditional \"candle stick\" chart. Type 2 draws the vertical line between the bottom and top price and adds a rectangle in front, which visualizes the range between the opening and closing price. If you click on the rectangle you see more information in the status bar. %PRODUCTNAME uses different fill colors for rising values (the opening price is lower than the closing price) and falling values."
-msgstr "Kolonnetype 2 genererer det traditionelle \"kalenderlys\" diagram baseret på <emph>åbningskurs, laveste, højeste</emph>,og <emph>lukkekurs</emph>. Type 2 tegner den lodrette linje mellem bundpris og toppris og tilføjer et rektangel foran, som visualiserer området mellem åbnings- og lukkepris. %PRODUCTNAME bruger forskellige fyldfarver for stigende værdier (åbningspris er mindre end lukkeprisen) og faldende værdier."
+msgstr "Kolonnetype 2 genererer det traditionelle \"kalenderlys\" diagram baseret på <emph>åbningskurs, laveste, højeste</emph>,og <emph>lukkekurs</emph>. Type 2 tegner den lodrette linje mellem bundpris og toppris og tilføjer et rektangel foran, som visualiserer området mellem åbnings- og lukkepris. %PRODUCTNAME bruger forskellige udfyldningsfarver for stigende værdier (åbningspris er mindre end lukkeprisen) og faldende værdier."
#. 8FqfW
#: type_stock.xhp
@@ -7855,7 +7855,7 @@ msgctxt ""
"par_id7261268\n"
"help.text"
msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
-msgstr "Tegnerækkefølgen er den samme som rækkefølgen i dataserien. Marker <emph>Sorter efter X-værdier</emph> for at tegne linjerne i rækkefølgen for x-værdier. Sorteringen anvendes kun til diagrammet, ikke for data i tabellen."
+msgstr "Tegnerækkefølgen er den samme som rækkefølgen i dataserien. Marker <emph>Sortér efter X-værdier</emph> for at tegne linjerne i rækkefølgen for x-værdier. Sorteringen anvendes kun til diagrammet, ikke for data i tabellen."
#. rsbDS
#: type_xy.xhp
diff --git a/source/da/helpcontent2/source/text/sdatabase.po b/source/da/helpcontent2/source/text/sdatabase.po
index 452214d05e1..3fdb99a4f46 100644
--- a/source/da/helpcontent2/source/text/sdatabase.po
+++ b/source/da/helpcontent2/source/text/sdatabase.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-11-02 14:48+0100\n"
-"PO-Revision-Date: 2024-06-14 09:45+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdatabase/da/>\n"
"Language: da\n"
@@ -949,7 +949,7 @@ msgctxt ""
"hd_id3154207\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. uXuDt
#: 02010100.xhp
@@ -3000,7 +3000,7 @@ msgctxt ""
"hd_id3149095\n"
"help.text"
msgid "<link href=\"text/shared/main0212.xhp\">Sort and Filter Data</link>"
-msgstr "<link href=\"text/shared/main0212.xhp\">Sorter og filtrer data</link>"
+msgstr "<link href=\"text/shared/main0212.xhp\">Sortér og filtrér data</link>"
#. faEKt
#: 05000000.xhp
@@ -4037,7 +4037,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "Update options"
-msgstr "Opdater indstillinger"
+msgstr "Opdatér indstillinger"
#. TcZQE
#: 05020100.xhp
@@ -6016,7 +6016,7 @@ msgctxt ""
"hd_id3154923\n"
"help.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. XFbZd
#: 11090000.xhp
@@ -10999,7 +10999,7 @@ msgctxt ""
"par_idN10583\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. eTkp4
#: menuview.xhp
@@ -11458,7 +11458,7 @@ msgctxt ""
"par_idN10556\n"
"help.text"
msgid "Sort by"
-msgstr "Sorter efter"
+msgstr "Sortér efter"
#. CRtP3
#: querywizard02.xhp
@@ -12385,7 +12385,7 @@ msgctxt ""
"par_id651540564204840\n"
"help.text"
msgid "<image src=\"cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Sort Ascending icon</alt></image>"
-msgstr "<image src=\"cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Ikonet Sorter stigende</alt></image>"
+msgstr "<image src=\"cmd/sc_sortascending.svg\" id=\"img_id631540564204841\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id141540564204841\">Ikonet Sortér stigende</alt></image>"
#. EfMFi
#: rep_insertfield.xhp
@@ -12394,7 +12394,7 @@ msgctxt ""
"par_id401540563992665\n"
"help.text"
msgid "Sort names ascending."
-msgstr "Sorter navne stigende."
+msgstr "Sortér navne stigende."
#. rJE3c
#: rep_insertfield.xhp
@@ -12403,7 +12403,7 @@ msgctxt ""
"par_id811540564184191\n"
"help.text"
msgid "<image src=\"cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Sort Descending icon</alt></image>"
-msgstr "<image src=\"cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Ikonet Sorter faldende</alt></image>"
+msgstr "<image src=\"cmd/sc_sortdescending.svg\" id=\"img_id391540564184192\" width=\"1.0cm\" height=\"1.0cm\"><alt id=\"alt_id571540564184192\">Ikonet Sortér faldende</alt></image>"
#. BEcwL
#: rep_insertfield.xhp
@@ -12412,7 +12412,7 @@ msgctxt ""
"par_id401540563942665\n"
"help.text"
msgid "Sort names descending,"
-msgstr "Sorter navne faldende."
+msgstr "Sortér navne faldende."
#. RVvGD
#: rep_insertfield.xhp
@@ -15458,7 +15458,7 @@ msgctxt ""
"hd_id1001642852606113\n"
"help.text"
msgid "Sort ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. vG7vU
#: toolbar_table.xhp
@@ -15485,7 +15485,7 @@ msgctxt ""
"hd_id441642852616281\n"
"help.text"
msgid "Sort descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. iL4by
#: toolbar_table.xhp
@@ -15494,7 +15494,7 @@ msgctxt ""
"par_id511642854313007\n"
"help.text"
msgid "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id531642854313009\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661642854313010\">Icon Sort descending</alt></image>"
-msgstr "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id531642854313009\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661642854313010\">Ikonet Sorter faldende</alt></image>"
+msgstr "<image src=\"cmd/lc_sortdescending.svg\" id=\"img_id531642854313009\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id661642854313010\">Ikonet Sortér faldende</alt></image>"
#. e2A2e
#: toolbar_table.xhp
diff --git a/source/da/helpcontent2/source/text/sdraw.po b/source/da/helpcontent2/source/text/sdraw.po
index a4168ca1ba4..4b3524b3bbe 100644
--- a/source/da/helpcontent2/source/text/sdraw.po
+++ b/source/da/helpcontent2/source/text/sdraw.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-14 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw/da/>\n"
"Language: da\n"
@@ -266,7 +266,7 @@ msgctxt ""
"hd_id671683306520960\n"
"help.text"
msgid "Line Color"
-msgstr ""
+msgstr "Linjefarve"
#. mb9UG
#: main0210.xhp
@@ -275,7 +275,7 @@ msgctxt ""
"par_id301683306696915\n"
"help.text"
msgid "Sets the <link href=\"text/shared/01/quickcolorselector.xhp\">line color</link> of the selected object."
-msgstr ""
+msgstr "Angiver <link href=\"text/shared/01/quickcolorselector.xhp\">linjefarven</link> for det markerede objekt."
#. t9MQS
#: main0210.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"hd_id361683306526098\n"
"help.text"
msgid "Fill Color"
-msgstr ""
+msgstr "Udfyldningsfarve"
#. GoGiJ
#: main0210.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"par_id701683306692312\n"
"help.text"
msgid "Sets the <link href=\"text/shared/01/quickcolorselector.xhp\">area color</link> of the selected object."
-msgstr ""
+msgstr "Sætter <link href=\"text/shared/01/quickcolorselector.xhp\">områdefarven</link> for det markerede objekt."
#. APoZ6
#: main0210.xhp
@@ -788,7 +788,7 @@ msgctxt ""
"hd_id3153913\n"
"help.text"
msgid "<link href=\"text/sdraw/01/insert_layer.xhp\">Layer</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/01/insert_layer.xhp\">Lag</link>"
#. 9RWyM
#: main_insert.xhp
diff --git a/source/da/helpcontent2/source/text/sdraw/00.po b/source/da/helpcontent2/source/text/sdraw/00.po
index 9d1bbb33a62..3b7f22f553f 100644
--- a/source/da/helpcontent2/source/text/sdraw/00.po
+++ b/source/da/helpcontent2/source/text/sdraw/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-06-13 08:24+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdraw00/da/>\n"
"Language: da\n"
@@ -230,4 +230,4 @@ msgctxt ""
"par_id301566157911675\n"
"help.text"
msgid "<variable id=\"pagenavigation\">Choose <menuitem>Page - Navigate</menuitem>.</variable>"
-msgstr "<variable id=\"pagenavigation\">Vælg <menuitem>Side - Naviger</menuitem>.</variable>"
+msgstr "<variable id=\"pagenavigation\">Vælg <menuitem>Side ▸ Navigér</menuitem>.</variable>"
diff --git a/source/da/helpcontent2/source/text/sdraw/guide.po b/source/da/helpcontent2/source/text/sdraw/guide.po
index 54a071fd03e..a2b8f148d6d 100644
--- a/source/da/helpcontent2/source/text/sdraw/guide.po
+++ b/source/da/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-04-19 12:24+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsdrawguide/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1550902980.000000\n"
#. cZbDh
@@ -1535,7 +1535,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
-msgstr "Du kan kombinere flere objekter til en gruppe, så de virker som et enkelt objekt. Du kan flytte og ændre alle objekterne i en gruppe som en enkelt enhed. Du kan også ændre egenskaberne (for eksempel linjestørrelse og fyldfarve) for alle objekter i en gruppe under ét eller for individuelle objekter i en gruppe. Grupper kan være midlertidige eller tildelte:"
+msgstr "Du kan kombinere flere objekter til en gruppe, så de virker som et enkelt objekt. Du kan flytte og ændre alle objekterne i en gruppe som en enkelt enhed. Du kan også ændre egenskaberne (for eksempel linjestørrelse og udfyldningsfarve) for alle objekter i en gruppe under ét eller for individuelle objekter i en gruppe. Grupper kan være midlertidige eller tildelte:"
#. WWeYC
#: groups.xhp
diff --git a/source/da/helpcontent2/source/text/shared.po b/source/da/helpcontent2/source/text/shared.po
index 0bb00b9c8e8..437350da10a 100644
--- a/source/da/helpcontent2/source/text/shared.po
+++ b/source/da/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-06-13 08:24+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textshared/da/>\n"
"Language: da\n"
@@ -788,7 +788,7 @@ msgctxt ""
"par_idN1088E\n"
"help.text"
msgid "<link href=\"text/scalc/01/12030100.xhp\">Sort Descending / Sort Ascending</link>"
-msgstr "<link href=\"text/scalc/01/12030100.xhp\">Sorter faldende / Sorter stigende</link>"
+msgstr "<link href=\"text/scalc/01/12030100.xhp\">Sortér faldende / Sortér stigende</link>"
#. bzxXw
#: main0201.xhp
@@ -1481,7 +1481,7 @@ msgctxt ""
"hd_id161647003427601\n"
"help.text"
msgid "Refresh Control"
-msgstr "Opdater kontrol"
+msgstr "Opdatér kontrol"
#. zuPjH
#: main0213.xhp
@@ -1490,7 +1490,7 @@ msgctxt ""
"par_id861647005853278\n"
"help.text"
msgid "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Icon Refresh Control</alt></image>"
-msgstr "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Ikonet Opdater kontrol</alt></image>"
+msgstr "<image src=\"cmd/lc_refreshformcontrol.svg\" id=\"img_id901647005853278\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id581647005853278\">Ikonet Opdatér kontrol</alt></image>"
#. 8RmLu
#: main0213.xhp
@@ -1499,7 +1499,7 @@ msgctxt ""
"par_id811647005853278\n"
"help.text"
msgid "Refresh current control"
-msgstr "Opdater aktuel kontrol"
+msgstr "Opdatér aktuel kontrol"
#. AqwfH
#: main0213.xhp
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index 11f9d80debb..8f7562e4a57 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/da/>\n"
"Language: da\n"
@@ -612,14 +612,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Nulstil til ophav"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Det aktuelle faneblads værdier sættes til dem, der findes på det tilsvarende faneblad i den typografi, der er angivet i \"Nedarv fra\" under Administration. I alle tilfælde, også når \"Nedarv fra\" er \"- Ingen -\", fjernes aktuelle værdier, der er angivet under \"Indeholder\"."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -3643,7 +3643,7 @@ msgctxt ""
"hd_id3155434\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. Vz5A6
#: 00000010.xhp
@@ -13747,67 +13747,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vælg fanebladet <emph>Formater - Celler - Baggrund</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Vælg <menuitem>Formater - Sidetypografi - (fanebladet) Administration</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Vælg <menuitem>Typografi -Rediger typografi - (fanebladet) Adminster</menuitem>"
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Vælg <menuitem>Formater - Typografier - Rediger typografier - (fanebladet) Administrer</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13819,13 +13819,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Vælg <menuitem>Dias - Egenskaber - (fanebladet) Side</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
@@ -20155,7 +20155,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <menuitem>Tools - AutoCorrect - Apply and Edit Changes</menuitem>. The <emph>AutoCorrect</emph> dialog appears.<br/>Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr "Vælg <menuitem>Funktioner ▸ Autokorrektur ▸ Anvend og rediger</menuitem>. Dialogen <emph>Autokorrektur</emph> kommer frem.<br/>Klik på knappen <emph>Rediger ændringer</emph>og naviger til (fanebladet) <emph>Liste</emph>."
+msgstr "Vælg <menuitem>Funktioner ▸ Autokorrektur ▸ Anvend og rediger</menuitem>. Dialogen <emph>Autokorrektur</emph> kommer frem.<br/>Klik på knappen <emph>Rediger ændringer</emph>og navigér til (fanebladet) <emph>Liste</emph>."
#. DRyHd
#: edit_menu.xhp
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 6b60c38f0bb..c1eac6bc905 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561921642.000000\n"
#. 3u8hR
@@ -2138,7 +2138,7 @@ msgctxt ""
"par_id3153096\n"
"help.text"
msgid "To apply the new styles from the template to the document, click <widget>Update Styles</widget>."
-msgstr "For at anvende de nye typografier på dokumentet klikker du på <widget>Opdater typografier</widget>."
+msgstr "For at anvende de nye typografier på dokumentet klikker du på <widget>Opdatér typografier</widget>."
#. BDWYx
#: 01020000.xhp
@@ -4100,7 +4100,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. xECP4
#: 01100400.xhp
@@ -10544,7 +10544,7 @@ msgctxt ""
"hd_id3150084\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. GQ9uE
#: 02110000.xhp
@@ -10571,7 +10571,7 @@ msgctxt ""
"par_id3145086\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. E6pmY
#: 02110000.xhp
@@ -11077,7 +11077,7 @@ msgctxt ""
"par_id3151210\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">Only updates the link when you click the <emph>Update</emph> button.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">Opdaterer kun forbindelsen, når du klikker på knappen <emph>Opdater</emph>.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/baselinksdialog/MANUAL\">Opdaterer kun forbindelsen, når du klikker på knappen <emph>Opdatér</emph>.</ahelp>"
#. F9APc
#: 02180000.xhp
@@ -11122,7 +11122,7 @@ msgctxt ""
"hd_id3156280\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. iDw2U
#: 02180000.xhp
@@ -12652,7 +12652,7 @@ msgctxt ""
"par_id3147088\n"
"help.text"
msgid "Sort text."
-msgstr "Sorter tekst."
+msgstr "Sortér tekst."
#. jWgzP
#: 02230100.xhp
@@ -13453,7 +13453,7 @@ msgctxt ""
"hd_id3153281\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. xNvmD
#: 02230401.xhp
@@ -14650,7 +14650,7 @@ msgctxt ""
"par_id3154186\n"
"help.text"
msgid "<ahelp hid=\"HID_COLOR_CTL_COLORS\">To change the fill color of an object in the current file, select the object and then click a color. To change the line color of the selected object, right-click a color. To change the color of text in a text object, double-click the text-object, select the text, and then click a color.</ahelp>"
-msgstr "<ahelp hid=\"HID_COLOR_CTL_COLORS\">For at ændre et objekts fyldfarve i den aktuelle fil, vælger du objektet og klikker så på en farve. For at det valgte objekts stregfarve højreklikker du på en farve. For at ændre tekstfarve på et tekst-objekt dobbeltklikker du på tekstobjektet, vælger teksten og klikker så på en farve.</ahelp>"
+msgstr "<ahelp hid=\"HID_COLOR_CTL_COLORS\">For at ændre et objekts udfyldningsfarve i den aktuelle fil, vælger du objektet og klikker så på en farve. For at det valgte objekts stregfarve højreklikker du på en farve. For at ændre tekstfarve på et tekst-objekt dobbeltklikker du på tekstobjektet, vælger teksten og klikker så på en farve.</ahelp>"
#. bo2uz
#: 03170000.xhp
@@ -14659,7 +14659,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "You can also drag a color from the <emph>Color</emph> bar and drop it on a draw object on your slide to change the fill color."
-msgstr "Du kan også trække en farve fra værktøjslinjen <emph>Farve</emph> og slipper den på et tegningsobjekt på dit dias for at ændre fyldfarven."
+msgstr "Du kan også trække en farve fra værktøjslinjen <emph>Farve</emph> og slipper den på et tegningsobjekt på dit dias for at ændre udfyldningsfarven."
#. RxUos
#: 03170000.xhp
@@ -15046,7 +15046,7 @@ msgctxt ""
"hd_id3445539\n"
"help.text"
msgid "Navigating from comment to comment in text documents"
-msgstr "Naviger fra kommentar til kommentar"
+msgstr "Navigér fra kommentar til kommentar"
#. xYA7F
#: 04050000.xhp
@@ -23454,14 +23454,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Gendanner grafikkens oprindelige størrelse.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Administration"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23472,14 +23472,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>håndtere; typografier</bookmark_value><bookmark_value>typografier; håndtere</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Administration</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
@@ -23659,7 +23659,7 @@ msgctxt ""
"par_id3145085\n"
"help.text"
msgid "<link href=\"text/swriter/01/05140000.xhp\">Update Style</link>"
-msgstr "<link href=\"text/swriter/01/05140000.xhp\">Opdater typografi</link>"
+msgstr "<link href=\"text/swriter/01/05140000.xhp\">Opdatér typografi</link>"
#. wUCX4
#: 05040200.xhp
@@ -27891,7 +27891,7 @@ msgctxt ""
"bm_id3149999\n"
"help.text"
msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value><bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
-msgstr "<bookmark_value>flader; typografier</bookmark_value><bookmark_value>fyldmønstre til flader</bookmark_value><bookmark_value>fyldfarver til flader</bookmark_value><bookmark_value>usynlige flader</bookmark_value><bookmark_value>rammer; baggrunde</bookmark_value><bookmark_value>baggrunde; rammer/sektioner/indekser</bookmark_value><bookmark_value>sektioner; baggrunde</bookmark_value><bookmark_value>indekser; baggrunde</bookmark_value><bookmark_value>sidefødder;baggrunde</bookmark_value><bookmark_value>sidehoveder;baggrunde</bookmark_value>"
+msgstr "<bookmark_value>flader; typografier</bookmark_value><bookmark_value>fyldmønstre til flader</bookmark_value><bookmark_value>udfyldningsfarver til flader</bookmark_value><bookmark_value>usynlige flader</bookmark_value><bookmark_value>rammer; baggrunde</bookmark_value><bookmark_value>baggrunde; rammer/sektioner/indekser</bookmark_value><bookmark_value>sektioner; baggrunde</bookmark_value><bookmark_value>indekser; baggrunde</bookmark_value><bookmark_value>sidefødder;baggrunde</bookmark_value><bookmark_value>sidehoveder;baggrunde</bookmark_value>"
#. L4pLX
#: 05210100.xhp
@@ -29268,7 +29268,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/transparencytabpage/MTR_TRANSPARENT\">Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent).</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/transparencytabpage/MTR_TRANSPARENT\">Justerer gennemsigtigheden af den nuværende fyldfarve. Indtast et tal mellem 0 % (helt ugennemsigtig) og 100 % (helt gennemsigtig).</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/transparencytabpage/MTR_TRANSPARENT\">Justerer gennemsigtigheden af den nuværende udfyldningsfarve. Indtast et tal mellem 0 % (helt ugennemsigtig) og 100 % (helt gennemsigtig).</ahelp>"
#. MA4PB
#: 05210700.xhp
@@ -29286,7 +29286,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/transparencytabpage/RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/transparencytabpage/RBT_TRANS_GRADIENT\">Anvender en gennemsigtighedsfarveovergang på den nuværende fyldfarve. Vælg denne indstilling, og indstil derefter farveovergangsegenskaberne.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/transparencytabpage/RBT_TRANS_GRADIENT\">Anvender en gennemsigtighedsfarveovergang på den nuværende udfyldningsfarve. Vælg denne indstilling, og indstil derefter farveovergangsegenskaberne.</ahelp>"
#. swAFY
#: 05210700.xhp
@@ -34893,7 +34893,7 @@ msgctxt ""
"hd_id71592536242245\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. 5hw4X
#: 05350000.xhp
@@ -34911,7 +34911,7 @@ msgctxt ""
"par_id231592538985329\n"
"help.text"
msgid "<image src=\"res/sc10350.png\" id=\"img_id761592538985330\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id401592538985331\">Update Icon</alt></image>"
-msgstr "<image src=\"res/sc10350.png\" id=\"img_id761592538985330\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id401592538985331\">ikonet Opdater</alt></image>"
+msgstr "<image src=\"res/sc10350.png\" id=\"img_id761592538985330\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id401592538985331\">ikonet Opdatér</alt></image>"
#. 5jyB7
#: 05350000.xhp
@@ -34920,7 +34920,7 @@ msgctxt ""
"par_id401592538985331\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. FW5mo
#: 05350000.xhp
@@ -49403,7 +49403,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Extension Update"
-msgstr "Opdater udvidelser"
+msgstr "Opdatér udvidelser"
#. gFZiV
#: extensionupdate.xhp
@@ -49412,7 +49412,7 @@ msgctxt ""
"hd_id9688100\n"
"help.text"
msgid "Extension Update"
-msgstr "Opdater udvidelser"
+msgstr "Opdatér udvidelser"
#. xW3EV
#: extensionupdate.xhp
@@ -49430,7 +49430,7 @@ msgctxt ""
"par_id6401257\n"
"help.text"
msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
-msgstr "Når du klikker på knappen <item type=\"menuitem\">Kontroller for opdateringer</item> eller vælger kommandoen <item type=\"menuitem\">Opdater</item>, vil dialogen Opdater Udvidelser vise sig og straks undersøge, om der er tilgængelige opdateringer."
+msgstr "Når du klikker på knappen <item type=\"menuitem\">Kontroller for opdateringer</item> eller vælger kommandoen <item type=\"menuitem\">Opdatér</item>, vil dialogen Opdatér Udvidelser vise sig og straks undersøge, om der er tilgængelige opdateringer."
#. tzbHd
#: extensionupdate.xhp
@@ -52688,7 +52688,7 @@ msgctxt ""
"hd_id4453566\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. 5MQ9r
#: packagemanager.xhp
@@ -52697,7 +52697,7 @@ msgctxt ""
"par_id4129459\n"
"help.text"
msgid "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately.</ahelp> You will see the <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> dialog."
-msgstr "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Klik for at søge efter onlineopdateringer for samtlige tilføjelser. For kun at kontrollere for opdatering af de valgte udvidelser, skal du vælge kommandoen Opdater fra genvejsmenuen. Søgning efter tilgængelige opdateringer startes straks.</ahelp> Du vil se dialogen <link href=\"text/shared/01/extensionupdate.xhp\">Opdatering af tilføjelser</link>."
+msgstr "<ahelp hid=\"desktop/ui/extensionmanager/updatebtn\">Klik for at søge efter onlineopdateringer for samtlige tilføjelser. For kun at kontrollere for opdatering af de valgte udvidelser, skal du vælge kommandoen Opdatér fra genvejsmenuen. Søgning efter tilgængelige opdateringer startes straks.</ahelp> Du vil se dialogen <link href=\"text/shared/01/extensionupdate.xhp\">Opdatering af tilføjelser</link>."
#. CBJAi
#: packagemanager.xhp
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index 88472898086..74fe1337a7b 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/da/>\n"
"Language: da\n"
@@ -3056,7 +3056,7 @@ msgctxt ""
"par_idN10856\n"
"help.text"
msgid "Refresh form"
-msgstr "Opdater formular"
+msgstr "Opdatér formular"
#. uqZBH
#: 01170101.xhp
@@ -5162,7 +5162,7 @@ msgctxt ""
"par_idN1215A\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies to show or hide the filtering and sorting items in a selected <emph>Navigation</emph> bar control.</ahelp> Filtering and sorting items are the following: <emph>Sort ascending, Sort descending, Sort, Automatic filter, Default filter, Apply filter, Reset filter/sort</emph>."
-msgstr "<ahelp hid=\".\">Angiver, om filtrerings- og sorteringselementer skal vises eller skjules på en valgt <emph>Navigation</emph>skontrollinje.</ahelp> Der er disse Filtrerings- og sorteringselementer: <emph> Sorter stigende, Sorter faldende, Sorter, Automatisk filter, Standardfilter, Anvend filter, Nulstil filter/sortering.</emph>"
+msgstr "<ahelp hid=\".\">Angiver, om filtrerings- og sorteringselementer skal vises eller skjules på en valgt <emph>Navigation</emph>skontrollinje.</ahelp> Der er disse Filtrerings- og sorteringselementer: <emph>Sortér stigende, Sortér faldende, Sortér, Automatisk filter, Standardfilter, Anvend filter, Nulstil filter/sortering.</emph>"
#. 8oY9x
#: 01170101.xhp
@@ -8519,7 +8519,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\">subform</link>."
-msgstr "Bestemmer den datakilde, som formularen er baseret på, eller angiver om data kan redigeres af brugeren. Bortset fra funktionerne sorter og filtrer, kan du også finde alle de nødvendige egenskaber til at oprette en <link href=\"text/shared/02/01170203.xhp\">underformular</link>."
+msgstr "Bestemmer den datakilde, som formularen er baseret på, eller angiver om data kan redigeres af brugeren. Bortset fra funktionerne sortér og filtrér, kan du også finde alle de nødvendige egenskaber til at oprette en <link href=\"text/shared/02/01170203.xhp\">underformular</link>."
#. LChMy
#: 01170203.xhp
@@ -8645,7 +8645,7 @@ msgctxt ""
"hd_id3156005\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. utCtn
#: 01170203.xhp
@@ -8663,7 +8663,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "The appropriate icons on the <link href=\"text/shared/main0213.xhp\"><emph>Form Navigation</emph> Bar</link> can be used in User mode to sort: <link href=\"text/shared/02/12010000.xhp\"><emph>Sort Ascending</emph></link>, <link href=\"text/shared/02/12020000.xhp\"><emph>Sort Descending</emph></link>, <link href=\"text/shared/02/12100100.xhp\"><emph>Sort</emph></link>."
-msgstr "De passende ikoner på værktøjslinjen <link href=\"text/shared/main0213.xhp\"><emph>Formularnavigation</emph></link> kan bruges i Brugertilstand til at sortere:<link href=\"text/shared/02/12010000.xhp\"><emph>Sorter stigende</emph></link>, <link href=\"text/shared/02/12020000.xhp\"><emph>Sorter faldende</emph></link>, <link href=\"text/shared/02/12100100.xhp\"><emph>Sorter</emph></link>."
+msgstr "De passende ikoner på værktøjslinjen <link href=\"text/shared/main0213.xhp\"><emph>Formularnavigation</emph></link> kan bruges i Brugertilstand til at sortere: <link href=\"text/shared/02/12010000.xhp\"><emph>Sortér stigende</emph></link>, <link href=\"text/shared/02/12020000.xhp\"><emph>Sortér faldende</emph></link>, <link href=\"text/shared/02/12100100.xhp\"><emph>Sortér</emph></link>."
#. TLB5m
#: 01170203.xhp
@@ -14195,7 +14195,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. xCQCM
#: 12010000.xhp
@@ -14204,7 +14204,7 @@ msgctxt ""
"hd_id3152594\n"
"help.text"
msgid "<link href=\"text/shared/02/12010000.xhp\">Sort Ascending</link>"
-msgstr "<link href=\"text/shared/02/12010000.xhp\">Sorter stigende</link>"
+msgstr "<link href=\"text/shared/02/12010000.xhp\">Sortér stigende</link>"
#. d564t
#: 12010000.xhp
@@ -14240,7 +14240,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. aKafC
#: 12020000.xhp
@@ -14249,7 +14249,7 @@ msgctxt ""
"hd_id3154689\n"
"help.text"
msgid "<link href=\"text/shared/02/12020000.xhp\">Sort Descending</link>"
-msgstr "<link href=\"text/shared/02/12020000.xhp\">Sorter faldende</link>"
+msgstr "<link href=\"text/shared/02/12020000.xhp\">Sortér faldende</link>"
#. 7spDm
#: 12020000.xhp
@@ -14393,7 +14393,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Refresh"
-msgstr "Opdater"
+msgstr "Opdatér"
#. 5dbKE
#: 12050000.xhp
@@ -14402,7 +14402,7 @@ msgctxt ""
"hd_id3154926\n"
"help.text"
msgid "<link href=\"text/shared/02/12050000.xhp\">Refresh</link>"
-msgstr "<link href=\"text/shared/02/12050000.xhp\">Opdater</link>"
+msgstr "<link href=\"text/shared/02/12050000.xhp\">Opdatér</link>"
#. mFd2G
#: 12050000.xhp
@@ -14420,7 +14420,7 @@ msgctxt ""
"par_id3147261\n"
"help.text"
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\">Ikonet Opdater</alt></image>"
+msgstr "<image id=\"img_id3153910\" src=\"cmd/sc_reload.png\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3153910\">Ikonet Opdatér</alt></image>"
#. fovgD
#: 12050000.xhp
@@ -14429,7 +14429,7 @@ msgctxt ""
"par_id3145090\n"
"help.text"
msgid "Refresh"
-msgstr "Opdater"
+msgstr "Opdatér"
#. xUBys
#: 12050000.xhp
@@ -14438,7 +14438,7 @@ msgctxt ""
"par_id3145345\n"
"help.text"
msgid "Click the arrow next to the <emph>Refresh </emph>icon to open a submenu with the following commands:"
-msgstr "Klik på pilen ved siden af ikonet <emph>Opdater</emph> for at åbne en undermenu med følgende kommandoer:"
+msgstr "Klik på pilen ved siden af ikonet <emph>Opdatér</emph> for at åbne en undermenu med følgende kommandoer:"
#. BBNfo
#: 12050000.xhp
@@ -14447,7 +14447,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<emph>Refresh</emph> - Displays the refreshed contents of the database table."
-msgstr "<emph>Opdater</emph>- Viser det opdaterede indhold af databasetabellen."
+msgstr "<emph>Opdatér</emph>- Viser det opdaterede indhold af databasetabellen."
#. 7GhhH
#: 12050000.xhp
@@ -15671,7 +15671,7 @@ msgctxt ""
"par_id3149549\n"
"help.text"
msgid "While the functions <link href=\"text/shared/02/12010000.xhp\"><emph>Sort in Ascending Order</emph></link> and <link href=\"text/shared/02/12020000.xhp\"><emph>Sort in Descending Order</emph></link> sort by one criterion only, you can combine several criteria in the <emph>Sort Order</emph> dialog."
-msgstr "Mens funktionerne <link href=\"text/shared/02/12010000.xhp\"><emph>Sorter i stigende rækkefølge</emph></link> og <link href=\"text/shared/02/12020000.xhp\"><emph>Sorter i faldende rækkefølge</emph></link> kun sorterer efter et enkelt kriterium, kan du kombinere flere kriterier i dialogen <emph>Sorteringsrækkefølge</emph>."
+msgstr "Mens funktionerne <link href=\"text/shared/02/12010000.xhp\"><emph>Sortér i stigende rækkefølge</emph></link> og <link href=\"text/shared/02/12020000.xhp\"><emph>Sortér i faldende rækkefølge</emph></link> kun sorterer efter et enkelt kriterium, kan du kombinere flere kriterier i dialogen <emph>Sorteringsrækkefølge</emph>."
#. eyLVZ
#: 12100100.xhp
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index ee1d80c6c95..cb4315b7336 100644
--- a/source/da/helpcontent2/source/text/shared/guide.po
+++ b/source/da/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/da/>\n"
"Language: da\n"
@@ -13869,7 +13869,7 @@ msgctxt ""
"par_id5734733\n"
"help.text"
msgid "You can change the properties (line size, fill color, and more) of all objects in a group together, and you can enter the group and change the individual objects."
-msgstr "Du kan ændre egenskaberne (linjestørrelse, fyldfarve og mere) på alle objekter i en gruppe på samme tid, og du kan på et hvert tidspunkt gå ind i gruppen for at ændre enkeltdelene i gruppen."
+msgstr "Du kan ændre egenskaberne (linjestørrelse, udfyldningsfarve og mere) på alle objekter i en gruppe på samme tid, og du kan på et hvert tidspunkt gå ind i gruppen for at ændre enkeltdelene i gruppen."
#. sRgyC
#: groups.xhp
@@ -20079,7 +20079,7 @@ msgctxt ""
"par_id3153950\n"
"help.text"
msgid "Refresh Data (in Excel)"
-msgstr "Opdater data (i Excel)"
+msgstr "Opdatér data (i Excel)"
#. LKfBd
#: microsoft_terms.xhp
@@ -20088,7 +20088,7 @@ msgctxt ""
"par_id4526200\n"
"help.text"
msgid "<link href=\"text/scalc/01/12100000.xhp\">Refresh Range</link>"
-msgstr "<link href=\"text/scalc/01/12100000.xhp\">Opdater område</link>"
+msgstr "<link href=\"text/scalc/01/12100000.xhp\">Opdatér område</link>"
#. AZums
#: microsoft_terms.xhp
diff --git a/source/da/helpcontent2/source/text/shared/help.po b/source/da/helpcontent2/source/text/shared/help.po
index 345346ca772..ca33cfcc3c5 100644
--- a/source/da/helpcontent2/source/text/shared/help.po
+++ b/source/da/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-03 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1561275748.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">LibreOffice-bøger</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/da/helpcontent2/source/text/shared/menu.po b/source/da/helpcontent2/source/text/shared/menu.po
index b735223b911..71f274d690d 100644
--- a/source/da/helpcontent2/source/text/shared/menu.po
+++ b/source/da/helpcontent2/source/text/shared/menu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"PO-Revision-Date: 2024-06-26 08:48+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/da/>\n"
"Language: da\n"
@@ -581,7 +581,7 @@ msgctxt ""
"par_id291689426754707\n"
"help.text"
msgid "This submenu contains callout shapes like rectangular, rounded rectangular, round, cloud and more."
-msgstr "Denne undermenu indeholder forklaringsformer som rektangulær, afrundet rektangulær, sky med mere."
+msgstr "Denne undermenu indeholder billedforklaringsformer som rektangulær, afrundet rektangulær, rund, sky og mere."
#. Xxjvu
#: insert_shape.xhp
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index cb93d1743d8..ca74f871f30 100644
--- a/source/da/helpcontent2/source/text/shared/optionen.po
+++ b/source/da/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/da/>\n"
"Language: da\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -7997,7 +7997,7 @@ msgctxt ""
"hd_id3156326\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. NDiiZ
#: 01040900.xhp
@@ -8006,7 +8006,7 @@ msgctxt ""
"hd_id3145119\n"
"help.text"
msgid "Update links when loading"
-msgstr "Opdater kæder ved indlæsning"
+msgstr "Opdatér kæder ved indlæsning"
#. HxZJV
#: 01040900.xhp
@@ -8015,7 +8015,7 @@ msgctxt ""
"hd_id050420171032255464\n"
"help.text"
msgid "Settings for automatic links updates stored in documents are ignored for security reasons. Link updates are always bounded by %PRODUCTNAME Security settings in <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferences</item></caseinline><defaultinline><item type=\"menuitem\">Tools - Options...</item></defaultinline></switchinline> <item type=\"menuitem\">- %PRODUCTNAME – Security</item>."
-msgstr "Indstillinger for automatiske links-opdateringer gemt i dokumenter ignoreres af sikkerhedsmæssige årsager. Link-opdateringer er altid afgrænset af %PRODUCTNAME Sikkerhedsindstillinger i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Indstillinger </item></caseinline><defaultinline><item type=\"menuitem\">Funktioner - Indstillinger ... </item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME - Sikkerhed </item>."
+msgstr "Indstillinger for automatiske links-opdateringer gemt i dokumenter ignoreres af sikkerhedsmæssige årsager. Link-opdateringer er altid afgrænset af %PRODUCTNAME Sikkerhedsindstillinger i <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME ▸ Indstillinger </item></caseinline><defaultinline><item type=\"menuitem\">Funktioner ▸ Indstillinger... </item></defaultinline></switchinline><item type=\"menuitem\">- %PRODUCTNAME ▸ Sikkerhed </item>."
#. R4VkB
#: 01040900.xhp
@@ -8060,7 +8060,7 @@ msgctxt ""
"par_id3153252\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/onrequest\">Updates links only on request while loading a document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/onrequest\">Opdater kun kæder på anmodning, når et dokument indlæses.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/onrequest\">Opdatér kun kæder på anmodning, når et dokument indlæses.</ahelp>"
#. xKwZE
#: 01040900.xhp
@@ -8078,7 +8078,7 @@ msgctxt ""
"par_id3148946\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optgeneralpage/never\">Links are never updated while loading a document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/never\">Opdater aldrig kæder når et dokument indlæses.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/optgeneralpage/never\">Opdatér aldrig kæder når et dokument indlæses.</ahelp>"
#. d9ABs
#: 01040900.xhp
diff --git a/source/da/helpcontent2/source/text/simpress.po b/source/da/helpcontent2/source/text/simpress.po
index 9ea5c74cab7..6c03d060c32 100644
--- a/source/da/helpcontent2/source/text/simpress.po
+++ b/source/da/helpcontent2/source/text/simpress.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-13 10:15+0000\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress/da/>\n"
"Language: da\n"
@@ -1796,7 +1796,7 @@ msgctxt ""
"hd_id301615489789755\n"
"help.text"
msgid "Navigate"
-msgstr "Naviger"
+msgstr "Navigér"
#. 62VZA
#: main_slide.xhp
diff --git a/source/da/helpcontent2/source/text/simpress/01.po b/source/da/helpcontent2/source/text/simpress/01.po
index 75e834173d1..ec71b7e24ab 100644
--- a/source/da/helpcontent2/source/text/simpress/01.po
+++ b/source/da/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-05 09:45+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/da/>\n"
"Language: da\n"
@@ -3488,7 +3488,7 @@ msgctxt ""
"hd_id3153119\n"
"help.text"
msgid "Update Style"
-msgstr "Opdater typografi"
+msgstr "Opdatér typografi"
#. sfz5E
#: 05100000.xhp
@@ -3515,7 +3515,7 @@ msgctxt ""
"par_id3153085\n"
"help.text"
msgid "Update Style"
-msgstr "Opdater typografi"
+msgstr "Opdatér typografi"
#. zSbLC
#: 05100000.xhp
diff --git a/source/da/helpcontent2/source/text/smath.po b/source/da/helpcontent2/source/text/smath.po
index f78073affb3..dd38b20cd30 100644
--- a/source/da/helpcontent2/source/text/smath.po
+++ b/source/da/helpcontent2/source/text/smath.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2021-03-05 18:23+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
+"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1543597092.000000\n"
#. yKBT5
@@ -149,7 +149,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the <emph>Commands</emph> window can also be accessed through a mouse click if you have already opened the Elements pane with <link href=\"text/smath/01/03090000.xhp\"><menuitem>View - Elements</menuitem></link>."
-msgstr "Sætter visningsskala og definerer, hvfilke elementer, du ønsker synlige. De fleste af de kommandoer, du kan skrive ind i vinduet <emph>Kommandoer</emph>, kan også tilgås med et museklik, hvis du allerede har åbnet ruden Elementer med <link href=\"text/smath/01/03090000.xhp\"><menuitem>Vis ▸ Elementer</menuitem></link>."
+msgstr "Sætter visningsskala og definerer, hvilke elementer, du ønsker synlige. De fleste af de kommandoer, du kan skrive ind i vinduet <emph>Kommandoer</emph>, kan også tilgås med et museklik, hvis du allerede har åbnet ruden Elementer med <link href=\"text/smath/01/03090000.xhp\"><menuitem>Vis ▸ Elementer</menuitem></link>."
#. 4C4gL
#: main0103.xhp
diff --git a/source/da/helpcontent2/source/text/smath/00.po b/source/da/helpcontent2/source/text/smath/00.po
index 41ea2ad157d..80654d6b95b 100644
--- a/source/da/helpcontent2/source/text/smath/00.po
+++ b/source/da/helpcontent2/source/text/smath/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-02-09 16:46+0100\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath00/da/>\n"
"Language: da\n"
@@ -248,7 +248,7 @@ msgctxt ""
"par_id3150257\n"
"help.text"
msgid "Choose <emph>View - Update</emph>"
-msgstr "Vælg <emph>Vis - Opdater</emph>"
+msgstr "Vælg <emph>Vis ▸ Opdatér</emph>"
#. FGuRC
#: 00000004.xhp
@@ -275,7 +275,7 @@ msgctxt ""
"par_id3147260\n"
"help.text"
msgid "<image id=\"img_id3151168\" src=\"cmd/lc_refresh.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151168\">Icon Update</alt></image>"
-msgstr "<image id=\"img_id3151168\" src=\"cmd/lc_refresh.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151168\">Ikonet Opdater</alt></image>"
+msgstr "<image id=\"img_id3151168\" src=\"cmd/lc_refresh.svg\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id3151168\">Ikonet Opdatér</alt></image>"
#. 9BewG
#: 00000004.xhp
@@ -284,7 +284,7 @@ msgctxt ""
"par_id3145417\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. uo9hE
#: 00000004.xhp
@@ -293,7 +293,7 @@ msgctxt ""
"par_id3154262\n"
"help.text"
msgid "<variable id=\"neuzeichnen\">Choose <emph>View - AutoUpdate Display</emph></variable>"
-msgstr "<variable id=\"neuzeichnen\">Vælg <emph>Vis - Opdater visning automatisk</emph></variable>"
+msgstr "<variable id=\"neuzeichnen\">Vælg <emph>Vis ▸ Opdatér visning automatisk</emph></variable>"
#. V5dDC
#: 00000004.xhp
diff --git a/source/da/helpcontent2/source/text/smath/01.po b/source/da/helpcontent2/source/text/smath/01.po
index 46c8ec4151e..9b09363e858 100644
--- a/source/da/helpcontent2/source/text/smath/01.po
+++ b/source/da/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-05-22 12:01+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/da/>\n"
"Language: da\n"
@@ -293,7 +293,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. FXrna
#: 03070000.xhp
@@ -302,7 +302,7 @@ msgctxt ""
"bm_id3153768\n"
"help.text"
msgid "<bookmark_value>updating formula view</bookmark_value><bookmark_value>formula view; updating</bookmark_value>"
-msgstr "<bookmark_value>opdatering af formelvisning</bookmark_value><bookmark_value>formelvisning; opdater</bookmark_value>"
+msgstr "<bookmark_value>opdatering af formelvisning</bookmark_value><bookmark_value>formelvisning; opdatering</bookmark_value>"
#. 5Dbbw
#: 03070000.xhp
@@ -311,7 +311,7 @@ msgctxt ""
"hd_id3153768\n"
"help.text"
msgid "<link href=\"text/smath/01/03070000.xhp\">Update</link>"
-msgstr "<link href=\"text/smath/01/03070000.xhp\">Opdater</link>"
+msgstr "<link href=\"text/smath/01/03070000.xhp\">Opdatér</link>"
#. CAAvs
#: 03070000.xhp
@@ -329,7 +329,7 @@ msgctxt ""
"par_id3145253\n"
"help.text"
msgid "Changes in the <emph>Commands</emph> window are automatically updated if <emph>AutoUpdate Display</emph> is activated."
-msgstr "Ændringer i vinduet <emph>Kommandoer</emph> opdateres automatisk hvis <emph>AutoOpdater visning</emph> er aktiveret."
+msgstr "Ændringer i vinduet <emph>Kommandoer</emph> opdateres automatisk hvis <emph>Autoopdatér visning</emph> er aktiveret."
#. GGdNs
#: 03080000.xhp
@@ -338,7 +338,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoUpdate Display"
-msgstr "Autoopdater visning"
+msgstr "Autoopdatér visning"
#. uF9Yn
#: 03080000.xhp
@@ -356,7 +356,7 @@ msgctxt ""
"hd_id3154702\n"
"help.text"
msgid "<link href=\"text/smath/01/03080000.xhp\">AutoUpdate Display</link>"
-msgstr "<link href=\"text/smath/01/03080000.xhp\">Autoopdater visning</link>"
+msgstr "<link href=\"text/smath/01/03080000.xhp\">Autoopdatér visning</link>"
#. kD5k9
#: 03080000.xhp
@@ -365,7 +365,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<ahelp hid=\".\">Automatically updates a modified formula. If you do not select this option, the formula will only be updated after you choose <emph>View - Update</emph> or press F9.</ahelp>"
-msgstr "<ahelp hid=\".\">Opdaterer automatisk en ændret formel. Hvis du ikke vælger denne mulighed, vil formlen kun blive opdateret, når du vælger <emph>Vis - Opdater</emph> eller trykker på F9.</ahelp>"
+msgstr "<ahelp hid=\".\">Opdaterer automatisk en ændret formel. Hvis du ikke vælger denne mulighed, vil formlen kun blive opdateret, når du vælger <emph>Vis ▸ Opdatér</emph> eller trykker på F9.</ahelp>"
#. mPBhR
#: 03090000.xhp
@@ -1193,7 +1193,7 @@ msgctxt ""
"par_id3153523\n"
"help.text"
msgid "divides"
-msgstr "Er divisor i"
+msgstr "er divisor i"
#. 7AqFQ
#: 03090200.xhp
@@ -1202,7 +1202,7 @@ msgctxt ""
"par_id3147079\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_XDIVIDESY\">Inserts the <emph>divides</emph> character.</ahelp> You can also type <emph><?> divides <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XDIVIDESY\">Indsætter tegnet <emph>Er divisor i</emph>.</ahelp> Du kan også skrive <emph><?> Er divisor i <?></emph> direkte i vinduet <emph>Kommandoer</emph>."
+msgstr "<ahelp hid=\"HID_SMA_XDIVIDESY\">Indsætter tegnet <emph>er divisor i</emph>.</ahelp> Du kan også skrive <emph><?> divides <?></emph> direkte i vinduet <emph>Kommandoer</emph>."
#. ATPEY
#: 03090200.xhp
@@ -7729,7 +7729,7 @@ msgctxt ""
"par_id3153749\n"
"help.text"
msgid "divides"
-msgstr "Er divisor i"
+msgstr "er divisor i"
#. EDSXx
#: 03091502.xhp
diff --git a/source/da/helpcontent2/source/text/smath/04.po b/source/da/helpcontent2/source/text/smath/04.po
index f8d35d2a45a..5e02e36fe00 100644
--- a/source/da/helpcontent2/source/text/smath/04.po
+++ b/source/da/helpcontent2/source/text/smath/04.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-12-07 19:22+0100\n"
-"PO-Revision-Date: 2017-05-09 19:12+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
+"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
+"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textsmath04/da/>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1494357140.000000\n"
#. fW4At
@@ -167,7 +167,7 @@ msgctxt ""
"par_id3153003\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. EfFPe
#: 01020000.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/00.po b/source/da/helpcontent2/source/text/swriter/00.po
index 83fc4903db0..0f8da112bc7 100644
--- a/source/da/helpcontent2/source/text/swriter/00.po
+++ b/source/da/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-30 14:12+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/da/>\n"
"Language: da\n"
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3154505\n"
"help.text"
msgid "<variable id=\"fussnote\">Choose <emph>Edit - Reference - Footnote or Endnote</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fussnote\">Vælg <emph>Redigér ▸ Reference ▸ Fodnoter og slutnoter</emph></variable>"
#. D4PcF
#: 00000402.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id91705505003097\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight</menuitem>."
-msgstr "Vælg <menuitem>Formatér ▸ Visuel markering</menuitem>."
+msgstr "Vælg <menuitem>Formatér ▸ Sæt spotlys på</menuitem>."
#. Ap6v8
#: 00000405.xhp
@@ -2201,7 +2201,7 @@ msgctxt ""
"par_id751692650117734\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Direct Formatting</menuitem>."
-msgstr "Vælg <menuitem>Formatér ▸ Visuel markering ▸ Direkte formatering af ten</menuitem>."
+msgstr "Vælg <menuitem>Formatér ▸ Sæt spotlys på ▸ Direkte formatering af ten</menuitem>."
#. pe2jB
#: 00000405.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"par_id991705508323227\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Paragraph Formatting</menuitem>."
-msgstr "Vælg <menuitem>Formatér ▸ Visuel markering ▸ Afsnitstypografier</menuitem>."
+msgstr "Vælg <menuitem>Formatér ▸ Sæt spotlys på ▸ Afsnitstypografier</menuitem>."
#. TG5F7
#: 00000405.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id361688480578471\n"
"help.text"
msgid "Open the <emph>Styles - Paragraph</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr "Åbn panelet <emph>Typografier ▸ Afsnitstypografier</emph> og afkryds feltet <menuitem>Visuel markering</menuitem>."
+msgstr "Åbn panelet <emph>Typografier ▸ Afsnitstypografier</emph> og afkryds feltet <menuitem>Spotlys</menuitem>."
#. 95qcn
#: 00000405.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id121705508327920\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Formatting</menuitem>."
-msgstr "Vælg <menuitem>Formatér ▸ Visuel markering ▸ Tegntypografier</menuitem>."
+msgstr "Vælg <menuitem>Formatér ▸ Sæt spotlys på ▸ Tegntypografier</menuitem>."
#. t4bGN
#: 00000405.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"par_id841705508304691\n"
"help.text"
msgid "Open the <emph>Styles - Character</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr "Åbn panelet <emph>Typografier ▸ Afsnitstypografier</emph> og afkryds feltet <menuitem>Visuel markering</menuitem>."
+msgstr "Åbn panelet <emph>Typografier ▸ Afsnitstypografier</emph> og afkryds feltet <menuitem>Spotlys</menuitem>."
#. GA9eA
#: 00000405.xhp
@@ -4208,7 +4208,7 @@ msgctxt ""
"par_id3155174\n"
"help.text"
msgid "<variable id=\"aktualisieren\">Choose <emph>Tools - Update</emph></variable>"
-msgstr "<variable id=\"aktualisieren\">Vælg <emph>Funktioner - Opdater</emph></variable>"
+msgstr "<variable id=\"aktualisieren\">Vælg <emph>Funktioner ▸ Opdatér</emph></variable>"
#. FzXCX
#: 00000406.xhp
@@ -4217,7 +4217,7 @@ msgctxt ""
"par_id3151330\n"
"help.text"
msgid "<variable id=\"seitenformatierung\">Choose <menuitem>Tools - Update - Page Formatting</menuitem></variable>"
-msgstr "<variable id=\"seitenformatierung\">Vælg <menuitem>Funktioner ▸ Opdater ▸ Sideformatering</menuitem></variable>"
+msgstr "<variable id=\"seitenformatierung\">Vælg <menuitem>Funktioner ▸ Opdatér ▸ Sideformatering</menuitem></variable>"
#. gnwPv
#: 00000406.xhp
@@ -4226,7 +4226,7 @@ msgctxt ""
"par_id3149482\n"
"help.text"
msgid "<variable id=\"aktuellesverz\">Choose <emph>Tools - Update - Current Index</emph></variable>"
-msgstr "<variable id=\"aktuellesverz\">Vælg <emph>Funktioner - Opdater - Aktuelt indeks</emph></variable>"
+msgstr "<variable id=\"aktuellesverz\">Vælg <emph>Funktioner ▸ Opdatér ▸ Aktuelt indeks</emph></variable>"
#. XTg6n
#: 00000406.xhp
@@ -4235,7 +4235,7 @@ msgctxt ""
"par_id3149821\n"
"help.text"
msgid "<variable id=\"alleverz\">Choose <menuitem>Tools - Update - Indexes and Tables</menuitem></variable>"
-msgstr "<variable id=\"alleverz\">Vælg <menuitem>Funktioner ▸ Opdater ▸ Indekser og tabeller</menuitem></variable>"
+msgstr "<variable id=\"alleverz\">Vælg <menuitem>Funktioner ▸ Opdatér ▸ Indekser og tabeller</menuitem></variable>"
#. w865X
#: 00000406.xhp
@@ -4244,7 +4244,7 @@ msgctxt ""
"par_id3151249\n"
"help.text"
msgid "<variable id=\"alles\">Choose <emph>Tools - Update - Update All </emph></variable>"
-msgstr "<variable id=\"alles\">Vælg <emph>Funktioner - Opdater - Opdater alt</emph></variable>"
+msgstr "<variable id=\"alles\">Vælg <emph>Funktioner ▸ Opdatér ▸ Opdatér alt</emph></variable>"
#. vmmB6
#: 00000406.xhp
@@ -4253,7 +4253,7 @@ msgctxt ""
"par_id3154839\n"
"help.text"
msgid "Choose <emph>Tools - Update - Fields </emph>"
-msgstr "Vælg <emph>Funktioner - Opdater - Felter</emph>"
+msgstr "Vælg <emph>Funktioner ▸ Opdatér ▸ Felter</emph>"
#. LVSKP
#: 00000406.xhp
@@ -4271,7 +4271,7 @@ msgctxt ""
"par_id3148970\n"
"help.text"
msgid "<variable id=\"aktverknuepf\">Choose <emph>Tools - Update - Links</emph></variable>"
-msgstr "<variable id=\"aktverknuepf\">Vælg <emph>Funktioner - Opdater - Kæder</emph></variable>"
+msgstr "<variable id=\"aktverknuepf\">Vælg <emph>Funktioner ▸ Opdatér ▸ Kæder</emph></variable>"
#. 3hKeK
#: 00000406.xhp
@@ -4280,7 +4280,7 @@ msgctxt ""
"par_id3147220\n"
"help.text"
msgid "<variable id=\"adiagr\">Choose <menuitem>Tools - Update - Charts</menuitem></variable>"
-msgstr "<variable id=\"adiagr\">Vælg <menuitem>Funktioner ▸ Opdater ▸ Diagrammer</menuitem></variable>"
+msgstr "<variable id=\"adiagr\">Vælg <menuitem>Funktioner ▸ Opdatér ▸ Diagrammer</menuitem></variable>"
#. eFAoC
#: 00000406.xhp
@@ -4451,7 +4451,7 @@ msgctxt ""
"par_id511529885005747\n"
"help.text"
msgid "<variable id=\"sus\">Choose <menuitem>Styles - Update Selected Style</menuitem> or <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+ Shift+F11</keycode></variable>."
-msgstr "<variable id=\"sus\">Vælg <menuitem>Typografier ▸ Opdater markeret typografi</menuitem> eller <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Skift+F11</keycode></variable>."
+msgstr "<variable id=\"sus\">Vælg <menuitem>Typografier ▸ Opdatér markeret typografi</menuitem> eller <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+Skift+F11</keycode></variable>."
#. JhWrU
#: stylesmenu.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/01.po b/source/da/helpcontent2/source/text/swriter/01.po
index ef763ef593f..ce0c9daf342 100644
--- a/source/da/helpcontent2/source/text/swriter/01.po
+++ b/source/da/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562179621.000000\n"
#. sZfWF
@@ -797,7 +797,7 @@ msgctxt ""
"hd_id321603114930016\n"
"help.text"
msgid "Navigate By"
-msgstr "Naviger med"
+msgstr "Navigér med"
#. rBGnd
#: 02110000.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"par_id3154371\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Inserts the selected item as a link where you drag and drop in the current document. Text is inserted as protected sections. The contents of the link are automatically updated when the source is changed. To manually update the links in a document, choose <emph>Tools - Update - Links</emph>. You cannot create links for graphics, OLE objects, references and indexes.</ahelp>"
-msgstr "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Indsætter det valgte element som en kæde der, hvor du trækker og slipper i det aktuelle dokument. Tekst bliver indsat som beskyttede sektioner. Indholdet af kæden bliver automatisk opdateret, når kilden bliver ændret. For at opdatere kæderne manuelt i et dokument, vælg <emph>Funktioner - Opdater - Kæder</emph>. Du kan ikke oprette kæder for grafik, OLE-objekter, referencer og indekser.</ahelp>"
+msgstr "<ahelp hid=\"HID_NAVI_DRAG_LINK\">Indsætter det valgte element som en kæde der, hvor du trækker og slipper i det aktuelle dokument. Tekst bliver indsat som beskyttede sektioner. Indholdet af kæden bliver automatisk opdateret, når kilden bliver ændret. For at opdatere kæderne manuelt i et dokument, vælg <emph>Funktioner ▸ Opdatér ▸ Kæder</emph>. Du kan ikke oprette kæder for grafik, OLE-objekter, referencer og indekser.</ahelp>"
#. SGQ9j
#: 02110000.xhp
@@ -12661,7 +12661,7 @@ msgctxt ""
"par_id3083451\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Replaces identical index entries that occur on the directly following page(s), with a single entry that lists the first page number and a \"f\" or \"ff\". For example, the entries \"View 10, View 11\" are combined as \"View 10f\", and \"View 10, View 11, View 12\" as \"View 10ff\". Actual appearance depends on the locale setting, but can be overridden with <emph>Sort - Language</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Erstatter identiske indekselementer, som findes på den/de følgende side(r), med et enkelt element, som oplister det første sidetal og et \"f\" eller \"ff\". for eksempel bliver elementerne \"Side 10, Side 11\" kombineret til \"Side 10f\" og \"Side 10, Side 11, Side 12\" til \"Side 10ff\". Det aktuelle udseende afhænger af den landeindstillingen/lokaliseringen, men kan tilsidesættes med <emph>Sorter - Sprog</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocindexpage/useff\">Erstatter identiske indekselementer, som findes på den/de følgende side(r), med et enkelt element, som oplister det første sidetal og et \"f\" eller \"ff\". For eksempel bliver elementerne \"Side 10, Side 11\" kombineret til \"Side 10f\" og \"Side 10, Side 11, Side 12\" til \"Side 10ff\". Det aktuelle udseende afhænger af den landeindstillingen/lokaliseringen, men kan tilsidesættes med <emph>Sortér ▸ Sprog</emph>.</ahelp>"
#. jxWc7
#: 04120212.xhp
@@ -12796,7 +12796,7 @@ msgctxt ""
"hd_id3152950\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. 7xzRw
#: 04120212.xhp
@@ -14353,7 +14353,7 @@ msgctxt ""
"par_id3149491\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/tocentriespage/key3lb\">Select the entry by which to sort the bibliography entries. This option is only available if you select the <emph>Content</emph> radio button in the <emph>Sort by</emph> area.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/key3lb\">Vælg det element, som litteraturlistelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen <emph>Indhold</emph> i området <emph>Sorter efter</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/tocentriespage/key3lb\">Vælg det element, som litteraturlistelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen <emph>Indhold</emph> i området <emph>Sortér efter</emph>.</ahelp>"
#. 8iKZ5
#: 04120227.xhp
@@ -23364,14 +23364,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Direkte formatering tilsidesætter enhver formatering, der leveres af en tegntypografi. For at fjerne direkte formatering fra et udsnit bruger du <menuitem>Formater ▸ Ryd direkte formatering</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Brug afsnittet <emph>Indhold</emph> i håndteringen for at se tegntypografiens egenskaber."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
@@ -23974,7 +23974,7 @@ msgctxt ""
"par_idN10A04\n"
"help.text"
msgid "<link href=\"text/swriter/guide/stylist_update.xhp\"><menuitem>Update Selected Style</menuitem></link>"
-msgstr "<link href=\"text/swriter/guide/stylist_update.xhp\"><menuitem>Opdater den valgte Typografi</menuitem></link>"
+msgstr "<link href=\"text/swriter/guide/stylist_update.xhp\"><menuitem>Opdatér den valgte typografi</menuitem></link>"
#. JZgJw
#: 05140000.xhp
@@ -26667,7 +26667,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. CuoQx
#: 06100000.xhp
@@ -27063,7 +27063,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "You can also right-click in an index or table of contents, and then choose <emph>Update Index or Table of Contents</emph>. The following commands are also available in the context menu:"
-msgstr "Du kan også højreklikke i et indeks eller en indholdsfortegnelse og så vælge <emph>Opdater indeks/oversigt</emph>. Følgende kommandoer er også tilgængelig i genvejsmenuen:"
+msgstr "Du kan også højreklikke i et indeks eller en indholdsfortegnelse og så vælge <emph>Opdatér indeks/oversigt</emph>. Følgende kommandoer er også tilgængelig i genvejsmenuen:"
#. EEH64
#: 06160000.xhp
@@ -27126,7 +27126,7 @@ msgctxt ""
"par_id3150211\n"
"help.text"
msgid "<ahelp hid=\".uno:UpdateAllIndexes\" visibility=\"visible\">Update all indexes and tables of contents in the current document. You do not need to place the cursor in an index or table before you use this command.</ahelp>"
-msgstr "<ahelp hid=\".uno:UpdateAllIndexes\" visibility=\"visible\">Opdater alle indekser og indholdsfortegnelser i det aktuelle dokument. Du behøver ikke at placere markøren i et indeks eller en oversigt, før du bruger denne kommando.</ahelp>"
+msgstr "<ahelp hid=\".uno:UpdateAllIndexes\" visibility=\"visible\">Opdatér alle indekser og indholdsfortegnelser i det aktuelle dokument. Du behøver ikke at placere markøren i et indeks eller en oversigt, før du bruger denne kommando.</ahelp>"
#. TEBED
#: 06180000.xhp
@@ -27441,7 +27441,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Update All"
-msgstr "Opdater alt"
+msgstr "Opdatér alt"
#. V7W8J
#: 06190000.xhp
@@ -27450,7 +27450,7 @@ msgctxt ""
"hd_id3145824\n"
"help.text"
msgid "<link href=\"text/swriter/01/06190000.xhp\">Update All</link>"
-msgstr "<link href=\"text/swriter/01/06190000.xhp\">Opdater alt</link>"
+msgstr "<link href=\"text/swriter/01/06190000.xhp\">Opdatér alt</link>"
#. BET9U
#: 06190000.xhp
@@ -27549,7 +27549,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. CATRK
#: 06990000.xhp
@@ -27567,7 +27567,7 @@ msgctxt ""
"hd_id3154704\n"
"help.text"
msgid "<link href=\"text/swriter/01/06990000.xhp\">Update</link>"
-msgstr "<link href=\"text/swriter/01/06990000.xhp\">Opdater</link>"
+msgstr "<link href=\"text/swriter/01/06990000.xhp\">Opdatér</link>"
#. ChDDB
#: 06990000.xhp
@@ -27774,7 +27774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Characters"
-msgstr "Visuel markering af tegntypografier"
+msgstr "Sæt spotlys på tegntypografier"
#. RPAjL
#: SpotlightCharStyles.xhp
@@ -27783,7 +27783,7 @@ msgctxt ""
"bm_id71705516048353\n"
"help.text"
msgid "<bookmark_value>style spotlight;character styles</bookmark_value>"
-msgstr "<bookmark_value>visuel markering; tegntypografier</bookmark_value>"
+msgstr "<bookmark_value>typografi-spotlys; tegntypografier</bookmark_value>"
#. MJkww
#: SpotlightCharStyles.xhp
@@ -27792,7 +27792,7 @@ msgctxt ""
"hd_id31705511866295\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightCharStyles.xhp\">Spotlight Character Styles</link></variable>"
-msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightCharStyles.xhp\">Visuel markering af tegntypografier</link></variable>"
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightCharStyles.xhp\">Sæt spotlys på tegntypografier</link></variable>"
#. 4LbDW
#: SpotlightCharStyles.xhp
@@ -27801,7 +27801,7 @@ msgctxt ""
"par_id481705511866297\n"
"help.text"
msgid "Activates spotlighting of character styles."
-msgstr "Aktiverer \"Visuel markering\" for tegntypografier"
+msgstr "Aktiverer Spotlys på tegntypografier"
#. yiY4A
#: SpotlightCharStyles.xhp
@@ -27810,7 +27810,7 @@ msgctxt ""
"par_id881705514569887\n"
"help.text"
msgid "Spotlighting character styles allows a better control of the application of character styles in the document."
-msgstr "Visuel markering af tegntypografier giver bedre kontrol med anvendelsen af tegntypografier i dokumentet."
+msgstr "Spotlys på tegntypografier giver bedre kontrol med anvendelsen af tegntypografier i dokumentet."
#. iYu9G
#: SpotlightCharStyles.xhp
@@ -27819,7 +27819,7 @@ msgctxt ""
"par_id171705512039793\n"
"help.text"
msgid "Character style spotlight displays the styled characters with a background color and a call-out with a unique number for each applied character style in the document. The background color and call-out number are also displayed in the corresponding character entry in the <menuitem>Styles</menuitem> deck on the sidebar."
-msgstr "Visuel markering af tegntypografier viser tegn med typografi på en baggrundsfarve og tilføjet et felt med en entydigt nummer for hver anvendt tegntypografi i dokumentet. Baggrundsfarven og feltnummeret vises også ved den tilhørende tegntypografi i panelet <menuitem>Typografier ▸ Tegntypografier</menuitem> i sidepanelet."
+msgstr "Spotlys på tegntypografier viser tegn med typografi på en baggrundsfarve og tilføjet et felt med en entydigt nummer for hver anvendt tegntypografi i dokumentet. Baggrundsfarven og feltnummeret vises også ved den tilhørende tegntypografi i panelet <menuitem>Typografier ▸ Tegntypografier</menuitem> i sidepanelet."
#. o7SqG
#: SpotlightCharStyles.xhp
@@ -27855,7 +27855,7 @@ msgctxt ""
"par_id791705511272699\n"
"help.text"
msgid "Use the <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link> command to display character direct formatting."
-msgstr "Brug kommandoen <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Visuel markering af direkte formatering</link> for at vise direkte formatering af tegn."
+msgstr "Brug kommandoen <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlys på direkte formatering</link> for at vise direkte formatering af tegn."
#. GD8i8
#: SpotlightMenu.xhp
@@ -27864,7 +27864,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Menu"
-msgstr "Menuen Visuel markering"
+msgstr "Menuen Spotlys"
#. bKTbg
#: SpotlightMenu.xhp
@@ -27873,7 +27873,7 @@ msgctxt ""
"hd_id381705504492179\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightMenu.xhp\">Spotlight</link></variable>"
-msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightMenu.xhp\">Visuel markering</link></variable>"
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightMenu.xhp\">Spotlys</link></variable>"
#. MzTFm
#: SpotlightMenu.xhp
@@ -27882,7 +27882,7 @@ msgctxt ""
"par_id181705504492181\n"
"help.text"
msgid "Opens a submenu to access styles spotlight commands."
-msgstr "Åbner en undermenu for visuel markering af typografier og direkte formatering."
+msgstr "Åbner en undermenu med kommandoer til at sætte spotlys på typografier og direkte formatering."
#. 4VPqr
#: SpotlightParaStyles.xhp
@@ -27891,7 +27891,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Paragraphs"
-msgstr "Visuel markering af afsnitstypografier"
+msgstr "Spotlys på afsnitstypografier"
#. XWYNq
#: SpotlightParaStyles.xhp
@@ -27900,7 +27900,7 @@ msgctxt ""
"bm_id851705516087312\n"
"help.text"
msgid "<bookmark_value>style spotlight;paragraph styles</bookmark_value>"
-msgstr "<bookmark_value>visuel markering;afsnitstypografier</bookmark_value>"
+msgstr "<bookmark_value>typografi-spotlys;afsnitstypografier</bookmark_value>"
#. VUQDd
#: SpotlightParaStyles.xhp
@@ -27909,7 +27909,7 @@ msgctxt ""
"hd_id61705507661379\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightParaStyles.xhp\">Spotlight Paragraph Styles</link></variable>"
-msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightParaStyles.xhp\">Visuel markering af afsnitstypografier</link></variable>"
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightParaStyles.xhp\">Sæt spotlys på afsnitstypografier</link></variable>"
#. XkG4s
#: SpotlightParaStyles.xhp
@@ -27918,7 +27918,7 @@ msgctxt ""
"par_id161705507661381\n"
"help.text"
msgid "Activates spotlighting of paragraph styles."
-msgstr "Aktiverer visuel markering af afsnitstypografier."
+msgstr "Aktiverer spotlys på afsnitstypografier."
#. pfGrJ
#: SpotlightParaStyles.xhp
@@ -27927,7 +27927,7 @@ msgctxt ""
"par_id651705514526491\n"
"help.text"
msgid "Spotlighting paragraphs styles allows a better control of the application of paragraph styles in the document."
-msgstr "Visuel markering af afsnitstypografier giver bedre kontrol med anvendelsen af afsnitstypografier i dokumentet."
+msgstr "Spotlys på afsnitstypografier giver bedre kontrol med anvendelsen af afsnitstypografier i dokumentet."
#. EC7t8
#: SpotlightParaStyles.xhp
@@ -27936,7 +27936,7 @@ msgctxt ""
"par_id181705509762659\n"
"help.text"
msgid "Paragraph spotlight displays a color and a unique number code for each applied paragraph style in the document. The color and number are also displayed in the corresponding paragraph entry in the <menuitem>Styles</menuitem> deck on the sidebar."
-msgstr "Visuel markering af afsnitstypografier viser en farve og en entydig nummerkode for hver anvendt afsnitstypografi i dokumentet. Farven og nummeret vises også ved den tilsvarende afsnitstypografi i panelet <menuitem>Typografier</menuitem> i sidepanelet."
+msgstr "Spotlys på afsnitstypografier viser en farve og en entydig nummerkode for hver anvendt afsnitstypografi i dokumentet. Farven og nummeret vises også ved den tilsvarende afsnitstypografi i panelet <menuitem>Typografier</menuitem> i sidepanelet."
#. D7pE4
#: SpotlightParaStyles.xhp
@@ -27981,7 +27981,7 @@ msgctxt ""
"par_id221705510181740\n"
"help.text"
msgid "Character properties are not attributes of paragraph direct formatting properties, therefore character styles and character direct formatting does not affect paragraph spotlighting."
-msgstr "Formatering af tegn hver for sig hører ikke til afsnitstypografier, derfor påvirkes visuel markering af afsnitstypografier ikke af tegntypografier eller af direkte formatering af tekst."
+msgstr "Formatering af tegn hver for sig hører ikke til afsnitstypografier, derfor påvirkes spotlys på afsnitstypografier ikke af tegntypografier eller af direkte formatering af tekst."
#. 4FHSb
#: SpotlightParaStyles.xhp
@@ -27990,7 +27990,7 @@ msgctxt ""
"par_id791705511272699\n"
"help.text"
msgid "Use the <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link> command to display character direct formatting."
-msgstr "Brug kommandoen <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Visuel markering af direkte formatering</link> for at vise direkte formatering af tegn."
+msgstr "Brug kommandoen <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Sæt spotlys på direkte formatering</link> for at vise direkte formatering af tegn."
#. BEqCH
#: TableAutoFitMenu.xhp
@@ -32697,7 +32697,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Character Spotlight"
-msgstr "Visuel markering af tegnformatering"
+msgstr "Sæt spotlys på tegnformatering"
#. BxaE7
#: spotlight_chars_df.xhp
@@ -32706,7 +32706,7 @@ msgctxt ""
"bm_id401688481259265\n"
"help.text"
msgid "<bookmark_value>characters direct formatting;spotlighting</bookmark_value>"
-msgstr "<bookmark_value>direkte tegnformatering;visuel markering</bookmark_value>"
+msgstr "<bookmark_value>direkte tegnformatering;sætte spotlys på</bookmark_value>"
#. MF8kD
#: spotlight_chars_df.xhp
@@ -32724,7 +32724,7 @@ msgctxt ""
"par_id261692649960798\n"
"help.text"
msgid "Spotlights direct character formatting applied in the text."
-msgstr "Giver visuel markering af direkte tegnformatering anvendt i teksten."
+msgstr "Sætter spotlys på direkte tegnformatering anvendt i teksten."
#. m8BHb
#: spotlight_chars_df.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/04.po b/source/da/helpcontent2/source/text/swriter/04.po
index 8ed42fdd972..de5948ebe5f 100644
--- a/source/da/helpcontent2/source/text/swriter/04.po
+++ b/source/da/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-09-12 14:57+0200\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter04/da/>\n"
"Language: da\n"
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155306\n"
"help.text"
msgid "Update fields"
-msgstr "Opdater felter"
+msgstr "Opdatér felter"
#. CezLx
#: 01020000.xhp
@@ -428,7 +428,7 @@ msgctxt ""
"par_id3154865\n"
"help.text"
msgid "Update Input Fields and Input Lists"
-msgstr "Opdater indtastningsfelter og indtastningslister"
+msgstr "Opdatér indtastningsfelter og indtastningslister"
#. YrFbX
#: 01020000.xhp
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3153020\n"
"help.text"
msgid "Update Style"
-msgstr "Opdater typografi"
+msgstr "Opdatér typografi"
#. L8FVh
#: 01020000.xhp
@@ -815,7 +815,7 @@ msgctxt ""
"par_idN10D64\n"
"help.text"
msgid "Apply Body Text paragraph style"
-msgstr ""
+msgstr "Brug typografien Brødtekst"
#. dxC7K
#: 01020000.xhp
@@ -1409,7 +1409,7 @@ msgctxt ""
"hd_id3154531\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Left</caseinline><defaultinline>Shift+Home</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando+Skift+Venstrepil</caseinline><defaultinline>Skift+Home</defaultinline></switchinline>"
#. MyZhF
#: 01020000.xhp
@@ -1445,7 +1445,7 @@ msgctxt ""
"hd_id3151005\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Right</caseinline><defaultinline>Shift+End</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando+Skift+Højrepil</caseinline><defaultinline>Skift+End</defaultinline></switchinline>"
#. qCDwe
#: 01020000.xhp
@@ -1481,7 +1481,7 @@ msgctxt ""
"hd_id3151030\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Up</caseinline><defaultinline>Ctrl+Shift+Home</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando+Skift+Pil op</caseinline><defaultinline>Ctrl+Skift+Home</defaultinline></switchinline>"
#. Soi4q
#: 01020000.xhp
@@ -1517,7 +1517,7 @@ msgctxt ""
"hd_id3149750\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Arrow Down</caseinline><defaultinline>Ctrl+Shift+End</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando+Skift+Pil ned</caseinline><defaultinline>Ctrl+Skift+End</defaultinline></switchinline>"
#. HD7Wn
#: 01020000.xhp
@@ -1706,7 +1706,7 @@ msgctxt ""
"hd_id3151124\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Shift+Fn+Backspace</caseinline><defaultinline>Ctrl+Shift+Del</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando+Skift+Fn+Tilbagetast</caseinline><defaultinline>Ctrl+Skift+Del</defaultinline></switchinline>"
#. CFwv6
#: 01020000.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 1de9cacc671..8b560faa2d6 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/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: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562961482.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "I listen af sidetypografier, højreklik på \"Venstre side\" og vælg <emph>Modificer</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klik på fanebladet <emph>Administration</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Du kan bruge forskellige sidehoveder og -fødder på forskellige sider i dit dokument, sålænge siderne bruger forskellige sidetypografier. $[officename] tilbyder flere foruddefinerede sidetypografier såsom <emph>Første side</emph>, <emph>Venstre side</emph> og <emph>Højre side</emph>, eller du kan oprette en brugerdefineret sidetypografi."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Højreklik \"Højre Side\" på listen af sidetypografier og vælg <emph>Modificer</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "I dialogen <item type=\"menuitem\">Sidetypografier</item> skal du klikke på fanebladet <item type=\"menuitem\">Sidehoved</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vælg <item type=\"menuitem\">Aktiver sidehoved</item> og klik på fanebladet <item type=\"menuitem\">Administration</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "I feltet <item type=\"menuitem\">Næste typografi</item> skal du vælge \"Venstre side\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "I dialogen <emph>Typografier</emph>, højreklik \"Venstre side\" på listen af sidetypografier og vælg <emph>Modificer</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "I dialogen <item type=\"menuitem\">Sidetypografier</item> skal du klikke på fanebladet <item type=\"menuitem\">Sidehoved</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vælg <item type=\"menuitem\">Aktiver sidehoved</item> og klik på fanebladet <item type=\"menuitem\">Administration</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "I feltet <item type=\"menuitem\">Næste typografi</item> skal du vælge \"Højre side\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -8861,7 +8861,7 @@ msgctxt ""
"par_id3150502\n"
"help.text"
msgid "To update the index, right-click in the index, and then choose <emph>Update Index or Table of Contents</emph>."
-msgstr "For at opdatere stikordsregisteret, højreklik i stikordsregisteret, og vælg så <emph>Opdater indeks/oversigt</emph>."
+msgstr "For at opdatere stikordsregisteret, højreklik i stikordsregisteret, og vælg så <emph>Opdatér indeks/oversigt</emph>."
#. 2FBdu
#: indices_index.xhp
@@ -9311,7 +9311,7 @@ msgctxt ""
"par_id3153183\n"
"help.text"
msgid "Right-click in the table of contents and choose <emph>Update Index or Table of Contents</emph>."
-msgstr "Højreklik i indholdsfortegnelsen og vælg <emph>Opdater indeks/oversigt</emph>."
+msgstr "Højreklik i indholdsfortegnelsen og vælg <emph>Opdatér indeks/oversigt</emph>."
#. F6mzg
#: indices_toc.xhp
@@ -9320,7 +9320,7 @@ msgctxt ""
"par_id3147066\n"
"help.text"
msgid "Choose <emph>Tools - Update - All Indexes and Tables</emph>."
-msgstr "Vælg <emph>Funktioner - Opdater - Alle indekser og oversigter</emph>."
+msgstr "Vælg <emph>Funktioner ▸ Opdatér ▸ Alle indekser og oversigter</emph>."
#. UN4gr
#: indices_userdef.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "I listen af sidetypografier, højreklik et element, og vælg så <emph>Nyt</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "På fanebladet <emph>Administration</emph> skal du skrive et navn for sidetypografien i feltet <emph>Navn</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Vælg <emph>Sideskift</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "I feltet <item type=\"menuitem\">Typografi</item> skal du vælge en sidetypografi, som bruger sidebaggrunden."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Et <emph>automatisk sideskift</emph> fremkommer ved slutningen af en side, når den aktuelle sidetypografi har en anden \"næste typografi\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Højreklik på en sidetypografi og vælg <emph>Ny</emph>.Den nye side får alle egenskaberne fra den valgte sidetypografi til at starte med"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "På fanebladet <emph>Administration</emph> skal du skrive et navn for sidetypografien i feltet <emph>Navn</emph>, for eksempel \"Min liggende\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "En side lange typografier"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "En sidetypografi kan defineres til kun omfatte én side. Typografien \"Første side\" er et eksempel. Du sætter denne egenskab ved definere en anden sidetypografi til at være den \"næste typografi\" på <menuitem>Formater ▸ Sidetypografi ▸ (fanebladet) Organiser</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Manuelt defineret område for en sidetypografi"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Sidetypografien \"Standard\" sætter ikke en anden \"Næste typografi\" på <menuitem>Formater ▸ Sidetypografi ▸ (fanebladet) Organiser</menuitem>. I stedet sættes den \"Næste typografi\" også til at være \"Standard\". Alle sidetypografier, som følges af den samme sidetypografi, kan spænde over flere sider. Den øverste og nederste kant i sidetypografiens rækkevidde er defineret af \"Sideskift med typografi\". Alle sider mellem to \"Sideskift med typografi\" bruger den samme sidetypografi."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "I listen af sidetypografier, højreklik et element, og vælg så <emph>Nyt</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "På fanebladet <emph>Administration</emph> indtastes et navn i feltet <emph>Navn</emph>"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
@@ -14072,7 +14072,7 @@ msgctxt ""
"hd_id3151115\n"
"help.text"
msgid "Updating Cross-References"
-msgstr "Opdater krydshenvisninger"
+msgstr "Opdatér krydshenvisninger"
#. TjQFq
#: references.xhp
@@ -14081,7 +14081,7 @@ msgctxt ""
"par_id3153594\n"
"help.text"
msgid "To manually update the cross-references in a document, choose <emph>Tools - Update - Fields</emph> from the menu or press F9."
-msgstr "Opdater krydsreferencerne i et dokument manuelt ved at vælge <emph>Funktioner - Opdatér - Felter </emph> i menuen eller tryk F9."
+msgstr "Opdatér krydsreferencerne i et dokument manuelt ved at vælge <emph>Funktioner ▸ Opdatér ▸ Felter </emph> i menuen eller tryk F9."
#. FV3HG
#: references.xhp
@@ -15098,7 +15098,7 @@ msgctxt ""
"par_id3149611\n"
"help.text"
msgid "When you open a document that contains linked sections, $[officename] prompts you to update the contents of the sections. To manually update a link, choose <emph>Tools - Update - Links</emph>."
-msgstr "Når du åbner et dokument, der indeholder sammenkædede sektioner, spørger $[officename] dig om at opdatere indholdet i sektionerne. For at opdatere en sammenkædning manuelt, skal du vælge <emph>Funktioner - Opdater - Kæder</emph>."
+msgstr "Når du åbner et dokument, der indeholder sammenkædede sektioner, spørger $[officename] dig om at opdatere indholdet i sektionerne. For at opdatere en sammenkædning manuelt, skal du vælge <emph>Funktioner ▸ Opdatér ▸ Kæder</emph>."
#. BTDeY
#: section_insert.xhp
@@ -15827,7 +15827,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Styles"
-msgstr "Visuel markering af typografier"
+msgstr "Sæt spotlys på typografier"
#. P9uc3
#: spotlight_styles.xhp
@@ -15836,7 +15836,7 @@ msgctxt ""
"bm_id401688481259265\n"
"help.text"
msgid "<bookmark_value>spotlight;styles</bookmark_value> <bookmark_value>styles spotlight;visual indicator of styles</bookmark_value> <bookmark_value>styles visual indicator;spotlighting styles</bookmark_value>"
-msgstr "<bookmark_value>visuel markering;typografier</bookmark_value><bookmark_value>typografier;visuel markering</bookmark_value><bookmark_value>visuel markering;markeringstyper</bookmark_value>"
+msgstr "<bookmark_value>spotlys;typografier</bookmark_value><bookmark_value>typografier;spotlys</bookmark_value><bookmark_value>typografier visuel markering;spotlys på typografier</bookmark_value>"
#. wexaF
#: spotlight_styles.xhp
@@ -15845,7 +15845,7 @@ msgctxt ""
"hd_id901688480262925\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/guide/spotlight_styles.xhp\">Styles Spotlighting</link></variable>"
-msgstr "<variable id=\"h1\"><link href=\"text/swriter/guide/spotlight_styles.xhp\">Visuel markering af typografier</link></variable>"
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/guide/spotlight_styles.xhp\">Sæt spotlys på typografier</link></variable>"
#. RABFw
#: spotlight_styles.xhp
@@ -15854,7 +15854,7 @@ msgctxt ""
"par_id721688480262925\n"
"help.text"
msgid "The styles spotlight in %PRODUCTNAME Writer gives a visual indicator of styles and direct formatting present in the document."
-msgstr "Den visuelle markering af typografier i %PRODUCTNAME Writer giver en visuel indikation af typografier og direkte formatering anvendt i dokumentet."
+msgstr "Typografi-spotlys i %PRODUCTNAME Writer giver en visuel indikation af typografier og direkte formatering anvendt i dokumentet."
#. DPLrV
#: spotlight_styles.xhp
@@ -15863,7 +15863,7 @@ msgctxt ""
"par_id441688481502370\n"
"help.text"
msgid "Use the styles spotlight to inspect usage of styles and direct formatting in the document."
-msgstr "Brug den visuelle markering af typografier til at inspicere brugen af typografier og direkte formatering i dokumentet."
+msgstr "Brug typografi-spotlys til at inspicere brugen af typografier og direkte formatering i dokumentet."
#. xzB7C
#: spotlight_styles.xhp
@@ -15872,7 +15872,7 @@ msgctxt ""
"par_id361688480578471\n"
"help.text"
msgid "Open the <emph>Styles</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr "Åbn panelet <emph>Typografier</emph> og afkryds feltet <menuitem>Visuel markering</menuitem>."
+msgstr "Åbn panelet <emph>Typografier</emph> og afkryds feltet <menuitem>Spotlys</menuitem>."
#. ejCjY
#: spotlight_styles.xhp
@@ -15881,7 +15881,7 @@ msgctxt ""
"par_id701688481512511\n"
"help.text"
msgid "The Spotlight visual indicator is codified using numbers and colors. The feature shows direct formatting for characters and paragraphs indicated by a hatch pattern in the Spotlight colored on the margin."
-msgstr "Indikatoren \"Visuel markering\" er kodificeret med numre og farver. Afsnitstypografier angives med et farvet skraveringsmønster i margenen, formatering af tegn fremhæves i teksten."
+msgstr "Indikatoren Spotlys er kodificeret med numre og farver. Afsnitstypografier angives med et farvet skraveringsmønster i margenen, formatering af tegn fremhæves i teksten."
#. RjcYe
#: spotlight_styles.xhp
@@ -15890,7 +15890,7 @@ msgctxt ""
"par_id871688481600843\n"
"help.text"
msgid "The Spotlight feature can visualize paragraphs and characters styles only."
-msgstr "Funktionen \"Vis markering\" for typografier kan kun visualisere afsnitstypografier og tegntypografier."
+msgstr "Funktionen Spotlys for typografier kan kun visualisere afsnitstypografier og tegntypografier."
#. agBzx
#: spotlight_styles.xhp
@@ -16250,7 +16250,7 @@ msgctxt ""
"par_id3153119\n"
"help.text"
msgid "Click the arrow next to the <emph>Style actions</emph> icon and choose <menuitem>Update Selected Style</menuitem> from the submenu."
-msgstr "Klik på pilen ved siden af ikonet <emph>Typografi-handlinger</emph> og vælg <menuitem>Opdater den markerede typografi</menuitem> på undermenuen."
+msgstr "Klik på pilen ved siden af ikonet <emph>Typografi-handlinger</emph> og vælg <menuitem>Opdatér den markerede typografi</menuitem> på undermenuen."
#. nbBhi
#: stylist_update.xhp
@@ -18770,7 +18770,7 @@ msgctxt ""
"par_id3145099\n"
"help.text"
msgid "$[officename] automatically updates the contents of the inserted section whenever the source document is changed. To manually update the contents of the section, choose <emph>Tools - Update - Update All</emph>."
-msgstr "$[officename] opdaterer automatisk indholdet af den indsatte sektion hver gang kildedokumentet bliver ændret. Hvis du vil opdatere sektionens indhold manuelt, skal du vælge <emph>Funktioner - Opdater - Opdater alt</emph>."
+msgstr "$[officename] opdaterer automatisk indholdet af den indsatte sektion hver gang kildedokumentet bliver ændret. Hvis du vil opdatere sektionens indhold manuelt, skal du vælge <emph>Funktioner ▸ Opdatér ▸ Opdatér alt</emph>."
#. wDniB
#: title_page.xhp
diff --git a/source/da/helpcontent2/source/text/swriter/menu.po b/source/da/helpcontent2/source/text/swriter/menu.po
index 02c1e4706c5..2cbce74c922 100644
--- a/source/da/helpcontent2/source/text/swriter/menu.po
+++ b/source/da/helpcontent2/source/text/swriter/menu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-09-12 14:57+0200\n"
-"PO-Revision-Date: 2024-06-14 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_help-master/textswritermenu/da/>\n"
"Language: da\n"
@@ -131,7 +131,7 @@ msgctxt ""
"par_id581672703896121\n"
"help.text"
msgid "Contains a single check box character to interact with. Clicking on the content control toggles the checked state of the check box."
-msgstr ""
+msgstr "Indeholder et enkelt afkrydsningsfelt at arbejde med. Ved at klikke på indholdskontrollen skifter du mellem slået til og slået fra."
#. xjWQb
#: contentcontrol_submenu.xhp
@@ -140,7 +140,7 @@ msgctxt ""
"hd_id711672693310034\n"
"help.text"
msgid "Combo Box"
-msgstr ""
+msgstr "Kombinationsfelt"
#. 3XBQd
#: contentcontrol_submenu.xhp
@@ -149,7 +149,7 @@ msgctxt ""
"par_id341672703909353\n"
"help.text"
msgid "Contains a drop-down selection of list entries that you can select and text box that you can edit directly."
-msgstr ""
+msgstr "Indeholder en rulleliste med muligheder du kan vælge, og tekstfelt som du kan redigere direkte."
#. PGCKF
#: contentcontrol_submenu.xhp
@@ -158,7 +158,7 @@ msgctxt ""
"hd_id731672693314411\n"
"help.text"
msgid "Drop-down List"
-msgstr ""
+msgstr "Rulleliste"
#. LJyny
#: contentcontrol_submenu.xhp
@@ -167,7 +167,7 @@ msgctxt ""
"par_id741672703915281\n"
"help.text"
msgid "Contains a drop-down button control with a list of display-text and value pairs. Unlike a combo box, the drop-down list does not let users enter a custom input."
-msgstr ""
+msgstr "Indeholder rulleliste-knapkontrol med en liste af visningstekst og værdipar. I modsætning til et kombinationsfelt, lader rullelisten ikke brugeren indtaste egne input."
#. zvdaS
#: contentcontrol_submenu.xhp
@@ -176,7 +176,7 @@ msgctxt ""
"hd_id191672693319354\n"
"help.text"
msgid "Date"
-msgstr ""
+msgstr "Dato"
#. pEBdA
#: contentcontrol_submenu.xhp
@@ -185,7 +185,7 @@ msgctxt ""
"par_id841672703921231\n"
"help.text"
msgid "Contains a calendar control. Limits text to a single paragraph."
-msgstr ""
+msgstr "Indeholder en kalenderkontrol. Begrænser tekst til et enkelt afsnit."
#. k5UDL
#: edit_reference_submenu.xhp
@@ -194,7 +194,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Reference (Edit)"
-msgstr ""
+msgstr "Reference (redigér)"
#. MKMWr
#: edit_reference_submenu.xhp
@@ -203,7 +203,7 @@ msgctxt ""
"hd_id1001603128268578\n"
"help.text"
msgid "<link href=\"text/swriter/menu/edit_reference_submenu.xhp\">Reference</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/menu/edit_reference_submenu.xhp\">Reference</link>"
#. 6LFFX
#: edit_reference_submenu.xhp
@@ -212,7 +212,7 @@ msgctxt ""
"par_id411603128291771\n"
"help.text"
msgid "A submenu that offers possibilities to edit footnotes, endnotes, index entries, and bibliography entries."
-msgstr ""
+msgstr "En undermenu som giver mulighed for at redigere fodnoter, slutnoter, indekselementer og litteraturlisteelementer."
#. 4WjGu
#: edit_reference_submenu.xhp
@@ -221,7 +221,7 @@ msgctxt ""
"hd_id3147302\n"
"help.text"
msgid "<link href=\"text/swriter/01/02150000.xhp\">Footnote or Endnote</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02150000.xhp\">Fodnoter og slutnoter</link>"
#. Q5YzA
#: edit_reference_submenu.xhp
@@ -230,7 +230,7 @@ msgctxt ""
"hd_id3147327\n"
"help.text"
msgid "<link href=\"text/swriter/01/04120100.xhp\">Index Entry</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04120100.xhp\">Indekselement</link>"
#. b6WK8
#: edit_reference_submenu.xhp
@@ -239,7 +239,7 @@ msgctxt ""
"par_id561673359242198\n"
"help.text"
msgid "Edits the selected index entry."
-msgstr ""
+msgstr "Redigerer det markerede indekselement."
#. p7mQW
#: edit_reference_submenu.xhp
@@ -248,7 +248,7 @@ msgctxt ""
"hd_id3147352\n"
"help.text"
msgid "<link href=\"text/swriter/01/02130000.xhp\">Bibliography Entry</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02130000.xhp\">Litteraturelement</link>"
#. tP5yN
#: insert_footnote_endnote.xhp
@@ -320,7 +320,7 @@ msgctxt ""
"hd_id3147231\n"
"help.text"
msgid "<link href=\"text/swriter/01/04030000.xhp\">Footnote or Endnote</link>"
-msgstr "<link href=\"text/swriter/01/04030000.xhp\">Fodnote eller Slutnote</link>"
+msgstr "<link href=\"text/swriter/01/04030000.xhp\">Fodnoter og slutnoter</link>"
#. VGa5M
#: insert_frame.xhp
@@ -338,7 +338,7 @@ msgctxt ""
"hd_id030720160601535384\n"
"help.text"
msgid "<link href=\"text/swriter/menu/insert_frame.xhp\">Insert Frame</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/menu/insert_frame.xhp\">Indsæt ramme</link>"
#. LZL3Y
#: insert_frame.xhp
@@ -356,7 +356,7 @@ msgctxt ""
"par_id811689500121312\n"
"help.text"
msgid "Choose <menuitem>Insert - Frame</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Ramme</menuitem>."
#. Hq4D6
#: insert_frame.xhp
@@ -419,7 +419,7 @@ msgctxt ""
"par_id421690025310002\n"
"help.text"
msgid "Choose <menuitem>Insert - Header and Footer</menuitem>."
-msgstr ""
+msgstr "Vælg <menuitem>Indsæt ▸ Sidehoved og sidefod</menuitem>."
#. cSY5i
#: submenu_more_breaks.xhp
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office.po b/source/da/officecfg/registry/data/org/openoffice/Office.po
index 2634bc4bc0f..3d7cc87296b 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/da/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: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2024-06-16 23:47+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeoffice/da/>\n"
"Language: da\n"
@@ -1084,7 +1084,7 @@ msgctxt ""
"Left\n"
"value.text"
msgid "Right click, left or up arrow, page up, backspace"
-msgstr "Højreklik, Venstrepil eller Pil op, Pg Up, Tilbage"
+msgstr "Højreklik, venstrepil eller pil op, Pg Up, tilbagetast (backspace)"
#. yhyBn
#: PresenterScreen.xcu
@@ -8704,7 +8704,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "DatUpdated"
-msgstr "DatOpdater"
+msgstr "DatOpdateret"
#. W9TU3
#: TableWizard.xcu
diff --git a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
index dc787af6fd1..12e8e843ca6 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-20 11:18+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/da/>\n"
"Language: da\n"
@@ -524,7 +524,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trace ~Precedents"
-msgstr "Spor ~overordnede"
+msgstr "Spor fra forudgående"
#. dAYx8
#: CalcCommands.xcu
@@ -564,7 +564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Precedents"
-msgstr "~Fjern overordnede spor"
+msgstr "Fjern spor fra forudgående"
#. jDtxy
#: CalcCommands.xcu
@@ -574,7 +574,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Trace Dependents"
-msgstr "~Spor underordnede"
+msgstr "Spor til afhængige"
#. 4wDz9
#: CalcCommands.xcu
@@ -594,7 +594,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove ~Dependents"
-msgstr "Fjern ~underordnede spor"
+msgstr "Fjern spor til afhængige"
#. cogwE
#: CalcCommands.xcu
@@ -684,7 +684,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Trace ~Precedent"
-msgstr "Spor ~overordnede"
+msgstr "Spor fra forudgående"
#. Eob2h
#: CalcCommands.xcu
@@ -694,7 +694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Remove Precedent"
-msgstr "~Fjern foregående"
+msgstr "Fjern spor fra forudgående"
#. fWMFQ
#: CalcCommands.xcu
@@ -704,7 +704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Trace Dependent"
-msgstr "~Spor underordnede"
+msgstr "Spor til afhængige"
#. nSNFf
#: CalcCommands.xcu
@@ -714,7 +714,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Remove Dependent"
-msgstr "Fjern underordnede"
+msgstr "Fjern spor til afhængige"
#. XGaan
#: CalcCommands.xcu
@@ -764,7 +764,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tra~ces"
-msgstr "~Opdater spor"
+msgstr "~Opdatér spor"
#. thBTW
#: CalcCommands.xcu
@@ -774,7 +774,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "A~utoRefresh Traces"
-msgstr "~Opdater automatisk spor"
+msgstr "~Opdatér spor automatisk"
#. SrsPm
#: CalcCommands.xcu
@@ -784,7 +784,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "A~utoRefresh"
-msgstr "~Opdater automatisk"
+msgstr "~Opdatér automatisk"
#. 4JrVG
#: CalcCommands.xcu
@@ -864,7 +864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Events..."
-msgstr "Ark-handling~er"
+msgstr "Arkhændels~er"
#. QfBmZ
#: CalcCommands.xcu
@@ -1814,7 +1814,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "~Clear"
-msgstr "Slet"
+msgstr "Ryd"
#. i6Ea2
#: CalcCommands.xcu
@@ -1824,7 +1824,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Print Ranges"
-msgstr "Nulstil udskriftsområde"
+msgstr "Nulstil udskriftsområder"
#. PFJ6t
#: CalcCommands.xcu
@@ -1894,7 +1894,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Cell Reference Types"
-msgstr "Gennemløb cellereference typer"
+msgstr "Gennemløb typer af cellereference"
#. 8Zduf
#: CalcCommands.xcu
@@ -2654,7 +2654,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "R~efresh Range"
-msgstr "Opdater område"
+msgstr "Opdatér område"
#. DQNFa
#: CalcCommands.xcu
@@ -3564,7 +3564,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Protect ~Spreadsheet Structure..."
-msgstr "Beskyt ~strukturen i regnearket..."
+msgstr "Beskyt regnearkets ~struktur..."
#. i7G2v
#: CalcCommands.xcu
@@ -3704,7 +3704,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Provider"
-msgstr "Opdater Dataudbyder"
+msgstr "Opdatér dataudbyder"
#. JGKYk
#: CalcCommands.xcu
@@ -3804,7 +3804,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Data Import"
-msgstr "Opdater dataimport"
+msgstr "Opdatér dataimport"
#. 4EX6A
#: CalcCommands.xcu
@@ -3824,7 +3824,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. yAC2q
#: CalcCommands.xcu
@@ -3834,7 +3834,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. ZPTh6
#: CalcCommands.xcu
@@ -3864,7 +3864,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sheet ~Tab Color..."
-msgstr "Ark fanefarve..."
+msgstr "Arkfanefarve..."
#. Rdaez
#: CalcCommands.xcu
@@ -4684,7 +4684,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mark Precedents"
-msgstr "Markér overordnede"
+msgstr "Markér forudgående"
#. CFuUE
#: CalcCommands.xcu
@@ -4694,7 +4694,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mark Dependents"
-msgstr "Markér underordnede"
+msgstr "Markér afhængige"
#. RwEGH
#: CalcCommands.xcu
@@ -8034,7 +8034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Tables"
-msgstr "Opdater tabeller"
+msgstr "Opdatér tabeller"
#. F5JSA
#: DbuCommands.xcu
@@ -13184,7 +13184,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Change Fill Color"
-msgstr "Skift fyldfarve"
+msgstr "Skift udfyldningsfarve"
#. 5EkpA
#: Effects.xcu
@@ -16344,7 +16344,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "Navigate"
-msgstr "Naviger"
+msgstr "Navigér"
#. 2yKvJ
#: GenericCategories.xcu
@@ -20956,7 +20956,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fill Color"
-msgstr "Fyldfarve"
+msgstr "Udfyldningsfarve"
#. GSfaE
#: GenericCommands.xcu
@@ -25266,7 +25266,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Ascending"
-msgstr "Sorter stigende"
+msgstr "Sortér stigende"
#. Ciy57
#: GenericCommands.xcu
@@ -25276,7 +25276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. Vny8X
#: GenericCommands.xcu
@@ -25316,7 +25316,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sort..."
-msgstr "Sorter..."
+msgstr "Sortér..."
#. eiTcz
#: GenericCommands.xcu
@@ -25406,7 +25406,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh"
-msgstr "Opdater"
+msgstr "Opdatér"
#. D4EUF
#: GenericCommands.xcu
@@ -25416,7 +25416,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Refresh Control"
-msgstr "Opdater kontrolelement"
+msgstr "Opdatér kontrolelement"
#. n4m38
#: GenericCommands.xcu
@@ -26436,7 +26436,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ormat"
-msgstr "Forma~ter"
+msgstr "Format"
#. NC4x3
#: GenericCommands.xcu
@@ -27326,7 +27326,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Navigate"
-msgstr "Naviger"
+msgstr "Navigér"
#. 3Bg25
#: GenericCommands.xcu
@@ -31216,7 +31216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spotlight Character Direct Formatting"
-msgstr "Visuel markering af direkte tegnformatering"
+msgstr "Sæt spotlys på direkte tegnformatering"
#. QYDBe
#: WriterCommands.xcu
@@ -31236,7 +31236,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spotlight Paragraph Styles"
-msgstr "Visuel markering af afsnitstypografier"
+msgstr "Sæt spotlys på afsnitstypografier"
#. AfDFw
#: WriterCommands.xcu
@@ -31256,7 +31256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spotlight Character Styles"
-msgstr "Visuel markering af tegntypografier"
+msgstr "Sæt spotlys på tegntypografier"
#. wuuFj
#: WriterCommands.xcu
@@ -36276,7 +36276,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Navigate By"
-msgstr "Naviger efter"
+msgstr "Navigér efter"
#. 2bsCo
#: WriterCommands.xcu
@@ -37356,7 +37356,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Spotlight"
-msgstr "Visuel markering"
+msgstr "Sæt spotlys på"
#. joS9f
#: WriterFormWindowState.xcu
diff --git a/source/da/reportdesign/messages.po b/source/da/reportdesign/messages.po
index f5e8749d98f..3f312b4fa7f 100644
--- a/source/da/reportdesign/messages.po
+++ b/source/da/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: 2024-06-09 01:45+0000\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/reportdesignmessages/da/>\n"
"Language: da\n"
@@ -1334,7 +1334,7 @@ msgstr "Sortér stigende"
#: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:74
msgctxt "floatingfield|down"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. 8eQMV
#: reportdesign/uiconfig/dbreport/ui/floatingfield.ui:86
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index f579a233119..b6737b0a75e 100644
--- a/source/da/sc/messages.po
+++ b/source/da/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-20 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562523528.000000\n"
#. kBovX
@@ -367,7 +367,7 @@ msgstr "Subtotaler"
#: sc/inc/globstr.hrc:70
msgctxt "STR_UNDO_SORT"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. FZYhE
#: sc/inc/globstr.hrc:71
@@ -391,7 +391,7 @@ msgstr "Importerer"
#: sc/inc/globstr.hrc:74
msgctxt "STR_UNDO_REPEATDB"
msgid "Refresh range"
-msgstr "Opdater område"
+msgstr "Opdatér område"
#. tDARx
#: sc/inc/globstr.hrc:75
@@ -475,25 +475,25 @@ msgstr "Redigér tegnestil"
#: sc/inc/globstr.hrc:88
msgctxt "STR_UNDO_DETADDPRED"
msgid "Trace Precedents"
-msgstr "Spor overordnede"
+msgstr "Spor fra forudgående"
#. kFK3T
#: sc/inc/globstr.hrc:89
msgctxt "STR_UNDO_DETDELPRED"
msgid "Remove Precedent"
-msgstr "Fjern overordnede spor"
+msgstr "Fjern spor fra forudgående"
#. 8Pkj9
#: sc/inc/globstr.hrc:90
msgctxt "STR_UNDO_DETADDSUCC"
msgid "Trace Dependents"
-msgstr "Spor underordnede"
+msgstr "Spor til afhængige"
#. RAhZn
#: sc/inc/globstr.hrc:91
msgctxt "STR_UNDO_DETDELSUCC"
msgid "Remove Dependent"
-msgstr "Fjern underordnet spor"
+msgstr "Fjern spor til afhængige"
#. xTvKp
#: sc/inc/globstr.hrc:92
@@ -517,7 +517,7 @@ msgstr "Markér ugyldige data"
#: sc/inc/globstr.hrc:95
msgctxt "STR_UNDO_DETREFRESH"
msgid "Refresh Traces"
-msgstr "Opdater spor"
+msgstr "Opdatér spor"
#. 2AuiD
#: sc/inc/globstr.hrc:96
@@ -1976,13 +1976,13 @@ msgstr "Formindsk/forstør udskrift"
#: sc/inc/globstr.hrc:345
msgctxt "STR_SCATTR_PAGE_SCALETOPAGES"
msgid "Shrink print range(s) on number of pages"
-msgstr "Formindsk udskriftsområde på antal sider"
+msgstr "Formindsk udskriftsområde(r) på antal sider"
#. P4CCx
#: sc/inc/globstr.hrc:346
msgctxt "STR_SCATTR_PAGE_SCALETO"
msgid "Shrink print range(s) to width/height"
-msgstr "Formindsk udskriftsområde til bredde/højde"
+msgstr "Formindsk udskriftsområde(r) til bredde/højde"
#. fnrU6
#: sc/inc/globstr.hrc:347
@@ -2283,7 +2283,7 @@ msgstr "Filter"
#: sc/inc/globstr.hrc:394
msgctxt "STR_OPERATION_SORT"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. dCgtR
#: sc/inc/globstr.hrc:395
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Sammenligningstilstand"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Nøjagtigt match. Vil returnerer #N/A if der ikke er noget match (standard).\n"
-"-1 - Nøjagtigt match eller det næste mindre element.\n"
-"1 - Nøjagtigt match eller det næste større element.\n"
-"2 - Sammenligning med jokertegn eller regulære udtryk."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Sammenligningstilstand"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Nøjagtigt match. Vil returnerer #N/A if der ikke er noget match (standard).\n"
-"-1 - Nøjagtigt match eller det næste mindre element.\n"
-"1 - Nøjagtigt match eller det næste større element.\n"
-"2 - Sammenligning med jokertegn eller regulære udtryk."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -17858,19 +17852,19 @@ msgstr "Medtag grænsekolonne(r), der kun indeholder kommentarer"
#: sc/inc/strings.hrc:134
msgctxt "SCSTR_INCLUDE_NOTES_ROW_LABEL"
msgid "Include boundary row(s) containing only comments"
-msgstr "Inkluder grænserække(r), der kun indeholder kommentarer"
+msgstr "Inkludér grænserække(r), der kun indeholder kommentarer"
#. EGvxt
#: sc/inc/strings.hrc:135
msgctxt "SCSTR_INCLUDE_IMAGES_COL_LABEL"
msgid "Include boundary column(s) containing only images"
-msgstr "Inkluder grænsekolonne(r), der kun indeholder billeder"
+msgstr "Inkludér grænsekolonne(r), der kun indeholder billeder"
#. nAjuE
#: sc/inc/strings.hrc:136
msgctxt "SCSTR_INCLUDE_IMAGES_ROW_LABEL"
msgid "Include boundary row(s) containing only images"
-msgstr "Inkluder grænserække(r), der kun indeholder billeder"
+msgstr "Inkludér grænserække(r), der kun indeholder billeder"
#. ujjcx
#: sc/inc/strings.hrc:137
@@ -18105,7 +18099,7 @@ msgstr "Sortér stigende"
#: sc/inc/strings.hrc:178
msgctxt "STR_MENU_SORT_DESC"
msgid "Sort Descending"
-msgstr "Sorter faldende"
+msgstr "Sortér faldende"
#. BDYHo
#: sc/inc/strings.hrc:179
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linje"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Område"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Skyggeeffekt"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Skrifttype"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Indrykning og afstand"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimation"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensionering"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatorer"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Fremhævning"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Slet"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ingen kant"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle kanter"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Ydre kanter"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Tyk boks kant"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tyk nedre kant"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dobbelt nedre kant"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Top og tyk nedre kanter"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Top og dobbelt nedre kanter"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Venstre kant"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Højre kant"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Øvre kant"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Nedre kant"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal op kant"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal ned kant"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Øvre og nedre kanter"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Venstre- og højrekanter"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Formatér celler"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Tal"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Skrifttype"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Kanter"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Baggrund"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cellebeskyttelse"
@@ -27198,7 +27096,7 @@ msgstr "Opdel"
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1433
msgctxt "notebookbar_groups|conditionalb"
msgid "Conditional"
-msgstr "Betinget"
+msgstr "Betinget formatering"
#. gDAQ5
#: sc/uiconfig/scalc/ui/notebookbar_groups.ui:1554
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Sidetypografi"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Side"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Kanter"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Baggrund"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Sidehoved"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Sidefod"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Ark"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Celletypografi"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Tal"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Skrifttype"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Kanter"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Baggrund"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cellebeskyttelse"
@@ -30201,7 +30099,7 @@ msgstr "Aldrig"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:231
msgctxt "scgeneralpage|label6"
msgid "Update links when opening"
-msgstr "Opdater kæder ved åbning"
+msgstr "Opdatér kæder ved åbning"
#. GGhDQ
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:276
@@ -30909,13 +30807,13 @@ msgstr "Formindsk/forstør udskrift"
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:645
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Shrink print range(s) to width/height"
-msgstr "Formindsk udskriftsområde til bredde/højde"
+msgstr "Formindsk udskriftsområde(r) til bredde/højde"
#. KzA6v
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:646
msgctxt "sheetprintpage|comboLB_SCALEMODE"
msgid "Shrink print range(s) on number of pages"
-msgstr "Formindsk udskriftsområde på antal sider"
+msgstr "Formindsk udskriftsområde(r) på antal sider"
#. AzkrF
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:650
@@ -31719,13 +31617,13 @@ msgstr "Angiver sorteringsindstillingerne for det markerede område."
#: sc/uiconfig/scalc/ui/sortcriteriapage.ui:79
msgctxt "sortcriteriapage|topdown"
msgid "Top to bottom (sort rows)"
-msgstr "Øverst til nederst (sorter rækker)"
+msgstr "Øverst til nederst (sortér rækker)"
#. eNaAT
#: sc/uiconfig/scalc/ui/sortcriteriapage.ui:94
msgctxt "sortcriteriapage|leftright"
msgid "Left to right (sort columns)"
-msgstr "Venstre til højre (sorter kolonner)"
+msgstr "Venstre til højre (sortér kolonner)"
#. vTci8
#: sc/uiconfig/scalc/ui/sortcriteriapage.ui:111
@@ -31827,7 +31725,7 @@ msgstr "Sorterer først efter STORE bogstaver og så efter små bogstaver. For a
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:48
msgctxt "sortoptionspage|formats"
msgid "Include formats"
-msgstr "Inkluder formater"
+msgstr "Inkludér formater"
#. KbJnq
#: sc/uiconfig/scalc/ui/sortoptionspage.ui:56
@@ -31953,7 +31851,7 @@ msgstr "Sætter yderligere sorteringsindstillinger."
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:28
msgctxt "sorttransformationentry|name"
msgid "Sort Transformation"
-msgstr "Sorter transformation"
+msgstr "Sortér transformation"
#. eKJtE
#: sc/uiconfig/scalc/ui/sorttransformationentry.ui:45
@@ -33082,8 +32980,8 @@ msgstr "Stigende"
msgctxt "subtotaloptionspage|extended_tip|ascending"
msgid "Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options."
msgstr ""
-"<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">Sorterer begyndende med den laveste værdi. Du kan definere sorteringsreglerne i Data - Sorter - Indstillinger.</ahelp> \n"
-"Du definerer standarden i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Indstillinger</menuitem></caseinline><defaultinline><menuitem>Funktioner - Indstillinger</menuitem></defaultinline></switchinline><menuitem> - Sprogindstillinger - Sprog</menuitem>."
+"<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/ascending\">Sorterer begyndende med den laveste værdi. Du kan definere sorteringsreglerne i Data ▸ Sortér ▸ Indstillinger.</ahelp> \n"
+"Du definerer standarden i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME ▸ Indstillinger</menuitem></caseinline><defaultinline><menuitem>Funktioner ▸ Indstillinger</menuitem></defaultinline></switchinline><menuitem> ▸ Sprogindstillinger ▸ Sprog</menuitem>."
#. maa6m
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:148
@@ -33096,14 +32994,14 @@ msgstr "Faldende"
msgctxt "subtotaloptionspage|extended_tip|descending"
msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options."
msgstr ""
-"<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">Sorterer begyndende med den højeste værdi. Du kan definere sorteringsreglerne på Data - Sorter - Indstillinger.</ahelp> \n"
-"Du definerer standarden i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Indstillinger</menuitem></caseinline><defaultinline><menuitem>Funktioner - Indstillinger</menuitem></defaultinline></switchinline><menuitem> - Sprogindstillinger - Sprog</menuitem>."
+"<ahelp hid=\"modules/scalc/ui/subtotaloptionspage/descending\">Sorterer begyndende med den højeste værdi. Du kan definere sorteringsreglerne på Data ▸ Sortér ▸ Indstillinger.</ahelp> \n"
+"Du definerer standarden i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Indstillinger</menuitem></caseinline><defaultinline><menuitem>Funktioner ▸ Indstillinger</menuitem></defaultinline></switchinline><menuitem> ▸ Sprogindstillinger ▸ Sprog</menuitem>."
#. EGqiq
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:169
msgctxt "subtotaloptionspage|formats"
msgid "I_nclude formats"
-msgstr "Inkluder formater"
+msgstr "Inkludér formater"
#. gCtKR
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:178
@@ -33121,7 +33019,7 @@ msgstr "Brugerdefineret sorteringsrækkefølge"
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:225
msgctxt "subtotaloptionspage|label2"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. ikECk
#: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:240
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index 6674b6af3b7..0d8069faf4d 100644
--- a/source/da/sd/messages.po
+++ b/source/da/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: 2024-06-17 15:59+0200\n"
-"PO-Revision-Date: 2024-06-16 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/da/>\n"
"Language: da\n"
@@ -6068,7 +6068,7 @@ msgstr "Tilføjer diasnummeret eller sidetallet."
#: sd/uiconfig/simpress/ui/headerfootertab.ui:415
msgctxt "headerfootertab|include_label"
msgid "Include on Slide"
-msgstr "Inkluder på dias"
+msgstr "Inkludér på dias"
#. QNb8r
#: sd/uiconfig/simpress/ui/headerfootertab.ui:430
@@ -6092,7 +6092,7 @@ msgstr "Sidenummer"
#: sd/uiconfig/simpress/ui/headerfootertab.ui:467
msgctxt "headerfootertab|replacement_b"
msgid "Include on page"
-msgstr "Inkluder på side"
+msgstr "Inkludér på side"
#. euuqV
#: sd/uiconfig/simpress/ui/impressprinteroptions.ui:33
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linje"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Område"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skyggeeffekt"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Skrifttype"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Indrykning og afstand"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimering"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensionering"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Forbindelse"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatorer"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Fremhævning"
diff --git a/source/da/sfx2/messages.po b/source/da/sfx2/messages.po
index 054e18bef23..0e817664798 100644
--- a/source/da/sfx2/messages.po
+++ b/source/da/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: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-16 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560616969.000000\n"
#. bHbFE
@@ -537,7 +537,7 @@ msgstr "Math"
#: include/sfx2/strings.hrc:108
msgctxt "STR_GID_NAVIGATOR"
msgid "Navigate"
-msgstr "Naviger"
+msgstr "Navigér"
#. w7dmG
#: include/sfx2/strings.hrc:109
@@ -1613,7 +1613,7 @@ msgstr "Hovedadgangskoden er gemt i et forældet format; du bør opdatere den"
#: include/sfx2/strings.hrc:288
msgctxt "STR_REFRESH_PASSWORD"
msgid "Refresh Password"
-msgstr "Opdater adgangskode"
+msgstr "Opdatér adgangskode"
#. vf46C
#: include/sfx2/strings.hrc:289
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makroer er deaktiveret på grund af indstillingerne for makrosikkerhed."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makroer er underskrevet, men dokumentet (indeholder dokumenthændelser) er ikke underskrevet."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vis makroer"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Vis sikkerhedsindstillinger"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vis begivenheder"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grå elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bikube"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blåtrykstegninger"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bolsje"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gul ide"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skovfugl"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frisk"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Voksende frihed"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Storby"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnatsblå"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "NaturIllustration"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fremgang"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Livlig"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Sammendrag"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne forretningsbrev sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitkort med logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Enkel"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Forenklet kinesisk normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japansk Normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tøm alt"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kodeordslængde"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Det kodeord, du har har indtastet giver interoperabilitets-problemer. Indtast venligst et kodeord, som er kortere end 52 bytes eller længere end 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik for at åbne hyperlink: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik for at åbne hyperlink: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(bruges af: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Regneark"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Præsentation"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tegning"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Nyligt anvendt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ingen nylige tegn"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Nulstil alle Standard-skabeloner"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Nulstil standard tekstdokument"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Nulstil standard regneark"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Nulstil standard præsentation"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Nulstil standard tegning"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Importer"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Udvidelser"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Omdøb"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Omdøb kategori"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Ny kategori"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-objektinspektor"
@@ -5164,7 +5170,7 @@ msgstr "Se forhåndsvisning"
#: sfx2/uiconfig/ui/templatepanel.ui:325
msgctxt "commontemplate|STR_HIGHLIGHT_CHECKBOX"
msgid "Spotlight"
-msgstr "Visuel markering"
+msgstr "Spotlys"
#. p9AWW
#: sfx2/uiconfig/ui/versioncommentdialog.ui:8
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index a9ff5619d81..e2ba0f0d3dc 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-20 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/da/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560617130.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Kunne ikke etablere internetforbindelse til $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Serverfejlmeddelelse: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Serverfejlmeddelelse: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Der opstod en generel internetfejl."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "De forespurgte internetdata er ikke tilgængelige i mellemlageret og kan ikke overføres, fordi onlinetilstanden ikke er aktiveret."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Det var ikke muligt at oprette indholdet"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Filnavnet er for langt til mål-filsystemet."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Inputsyntaksen er ugyldig."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Gem dokumentet i et %PRODUCTNAME %PRODUCTVERSION-filformat."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Det maksimale antal dokumenter, som kan være åbne samtidig, er nået. Du skal lukke et eller flere dokumenter, før du kan åbne et nyt dokument."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Det var ikke muligt at oprette sikkerhedskopi."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ugyldig datalængde."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funktion ikke mulig: stien indeholder nuværende katalog."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funktion ikke mulig: ikke samme enhed (drev)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Enheden (drevet) er ikke klar."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Forkert checksum."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funktion ikke mulig: skrivebeskyttet"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Deaktiver deletilstanden først."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Der er konstateret filformatfejl på position $(ARG1)(række,kolonne)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filteret for dette filformat er deaktiveret i opsætningen. Kontakt venligst din system administrator."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Generel OLE-fejl."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Handlingen kan ikke udføres i objektets nuværende tilstand."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objektet understøtter ingen handlinger."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objektet understøtter ikke denne handling."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) ved aktivering af objekt"
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 63d98f8a22d..8854634f79e 100644
--- a/source/da/svx/messages.po
+++ b/source/da/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-20 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/da/>\n"
"Language: da\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560617160.000000\n"
#. 3GkZj
@@ -800,7 +800,7 @@ msgstr "Omvendt rækkefølge af %1"
#: include/svx/strings.hrc:155
msgctxt "STR_SortShapes"
msgid "Sort shapes"
-msgstr "Sorter figurer"
+msgstr "Sortér figurer"
#. cALbH
#: include/svx/strings.hrc:156
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ingen kanter"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Kun ydre kanter"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ydre kanter og vandrette linjer"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ydre kanter og alle indre linjer"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ydre kanter og lodrette linjer"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Ydre kanter uden ændring af indre linjer"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Kun diagonale linjer"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonalt faldende kanter"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonalt stigende kanter"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Krydsende kanter"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Alle fire kanter"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Kun venstre og højre kanter"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Kun over- og underkanter"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Over-og underkanter og alle vandrette linjer"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Kun venstre kant"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Kun højre kant"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Kun overkant"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Kun underkant"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Over- og underkanter samt alle indre linjer"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Venstre og højre kanter samt alle indre linjer"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Fjern fra favoritter"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Manglende tegn"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Tilføj til favoritter"
@@ -10281,19 +10331,19 @@ msgstr "Tilføj til favoritter"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafisk størrelsestjek"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Billedet '%NAME%' har for få pixels til den aktuelle størrelse (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Billedet '%NAME%' har for mange pixels til den aktuelle størrelse (%DPIX% x %DPIY% DPI)"
@@ -15493,7 +15543,7 @@ msgstr "Tildel"
#: svx/uiconfig/ui/docking3deffects.ui:2358
msgctxt "docking3deffects|update|tooltip_text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. AgKU4
#: svx/uiconfig/ui/docking3deffects.ui:2373
@@ -17443,7 +17493,7 @@ msgstr "Ingen"
#: svx/uiconfig/ui/gallerymenu1.ui:12
msgctxt "gallerymenu1|update"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. 4dEp2
#: svx/uiconfig/ui/gallerymenu1.ui:26
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 9382ac450be..9ae2c53bad2 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-19 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/da/>\n"
"Language: da\n"
@@ -1472,13 +1472,13 @@ msgstr "Fyld Bitmap-URL"
#: sw/inc/inspectorproperties.hrc:151
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color"
-msgstr "Fyld farve"
+msgstr "Udfyldningsfarve"
#. neFA2
#: sw/inc/inspectorproperties.hrc:152
msgctxt "RID_ATTRIBUTE_NAMES_MAP"
msgid "Fill Color2"
-msgstr "Fyld farve2"
+msgstr "Udfyldning: Farve 2"
#. 72i4Q
#: sw/inc/inspectorproperties.hrc:153
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Liste 5 fortsat"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Sidehoved og sidefod"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -4801,13 +4801,13 @@ msgstr "Slet sektioner"
#: sw/inc/strings.hrc:451
msgctxt "STR_SORT_TBL"
msgid "Sort table"
-msgstr "Sorter tabel"
+msgstr "Sortér tabel"
#. gui6q
#: sw/inc/strings.hrc:452
msgctxt "STR_SORT_TXT"
msgid "Sort text"
-msgstr "Sorter tekst"
+msgstr "Sortér tekst"
#. APAMG
#: sw/inc/strings.hrc:453
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabel"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatering"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulerede billedtekster"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nummerering"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Andet"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Klik for at opdatere..."
@@ -16438,55 +16444,55 @@ msgid "Frame"
msgstr "Ramme"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Placering og størrelse"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Indstillinger"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ombryd"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Kanter"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Område"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Spalter"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -19327,7 +19333,7 @@ msgstr "Tilføjer linjetal til tekst i rammer. Nummereringen starter forfra i hv
#: sw/uiconfig/swriter/ui/linenumbering.ui:528
msgctxt "linenumbering|showfooterheadernumbering"
msgid "Include header and footer"
-msgstr "Inkluder sidehoved og sidefod"
+msgstr "Inkludér sidehoved og sidefod"
#. FPgbW
#: sw/uiconfig/swriter/ui/linenumbering.ui:543
@@ -19783,7 +19789,7 @@ msgstr "Dokumentplacering"
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:12
msgctxt "readonlymenu|STR_UPDATE"
msgid "_Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. MUFyx
#: sw/uiconfig/swriter/ui/mastercontextmenu.ui:22
@@ -21241,7 +21247,7 @@ msgstr "Sænk dispositionsniveauet"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:105
msgctxt "navigatorcontextmenu|STR_UPDATE"
msgid "_Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. BtCca
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:113
@@ -21493,7 +21499,7 @@ msgstr "Registrér slutnote"
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:479
msgctxt "navigatorcontextmenu|STR_SORT_ALPHABETICALLY"
msgid "Sort Alphabetically"
-msgstr "Sorter alfabetisk"
+msgstr "Sortér alfabetisk"
#. cqtBF
#: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:493
@@ -21823,7 +21829,7 @@ msgstr "Redigér indholdet af den komponent, der er markeret på listen i Naviga
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:786
msgctxt "navigatorpanel|update|tooltip_text"
msgid "Update"
-msgstr "Opdater"
+msgstr "Opdatér"
#. jAmFd
#: sw/uiconfig/swriter/ui/navigatorpanel.ui:790
@@ -23486,7 +23492,7 @@ msgstr "Anvend Listetypografi"
#: sw/uiconfig/swriter/ui/numparapage.ui:384
msgctxt "numparapage|checkCB_COUNT_PARA"
msgid "_Include this paragraph in line numbering"
-msgstr "_Inkluder dette afsnit i linjenummerering"
+msgstr "_Inkludér dette afsnit i linjenummerering"
#. mhtFH
#: sw/uiconfig/swriter/ui/numparapage.ui:394
@@ -27632,7 +27638,7 @@ msgstr "Vælg din foretrukne adresseblok"
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:186
msgctxt "selectblockdialog|never"
msgid "N_ever include the country/region"
-msgstr "Inkluder aldrig land/region"
+msgstr "Inkludér aldrig land/region"
#. zCVnB
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:195
@@ -27644,7 +27650,7 @@ msgstr "Udelukker lande- eller regional information fra adresseblokken."
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:206
msgctxt "selectblockdialog|always"
msgid "_Always include the country/region"
-msgstr "Inkluder altid land/region"
+msgstr "Inkludér altid land/region"
#. TJHWo
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:215
@@ -27656,7 +27662,7 @@ msgstr "Inkluderer lande- eller regional information i adresseblokken."
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:226
msgctxt "selectblockdialog|dependent"
msgid "Only _include the country/region if it is not:"
-msgstr "Inkluder kun land/region, hvis det ikke er:"
+msgstr "Inkludér kun land/region, hvis det ikke er:"
#. 3jvNX
#: sw/uiconfig/swriter/ui/selectblockdialog.ui:238
@@ -27914,7 +27920,7 @@ msgstr "Gennem"
#: sw/uiconfig/swriter/ui/sortdialog.ui:29
msgctxt "sortdialog|SortDialog"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. Ceifw
#: sw/uiconfig/swriter/ui/sortdialog.ui:123
@@ -28883,43 +28889,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Rul alle ændringer på dette faneblad til de indstillinger, der var gældende, da denne dialog blev åbnet."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Generelt"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Skrifttype"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Placering"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk layout"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Fremhævning"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Kanter"
@@ -28931,85 +28937,85 @@ msgid "List Style"
msgstr "Listetypografi"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Navngiv og skjul brugerdefinerede typografier"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Generelt"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Vælg en foruddefineret punkttegnstype"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Usorteret"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Vælg en foruddefineret, sorteret liste"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Sorteret"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Vælg et foruddefineret dispositionsformat."
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Disposition"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Vælg et foruddefineret grafisk punkttegn"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Billede"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modificér indrykning, afstand og justering af listenumre og -symboler"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Placering"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Design dit egen liste- elle dispositionsformat"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Tilpas"
@@ -29021,109 +29027,109 @@ msgid "Paragraph Style"
msgstr "Afsnitstypografi"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Generelt"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Indrykning og afstand"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Justering"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstforløb"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Skrifttype"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Placering"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk layout"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Fremhævning"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatorer"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Uncialer"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Område"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Kanter"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Betingelse"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Sæt afsnittets dispositionsniveau, listetypografier og linjenummerering."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Disposition og liste"
@@ -29135,55 +29141,55 @@ msgid "Frame Style"
msgstr "Rammetypografi"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Generelt"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Indstillinger"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ombryd"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Område"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Kanter"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Spalter"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29201,61 +29207,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Generelt"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Side"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Område"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Gennemsigtighed"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Sidehoved"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Sidefod"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Kanter"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Spalter"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fodnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstgitter"
@@ -30092,7 +30098,7 @@ msgstr "Sorterer litteraturlisten efter de sorteringsnøgler, som du angiver, ek
#: sw/uiconfig/swriter/ui/tocentriespage.ui:936
msgctxt "tocentriespage|label14"
msgid "Sort by"
-msgstr "Sorter efter"
+msgstr "Sortér efter"
#. UUgEC
#: sw/uiconfig/swriter/ui/tocentriespage.ui:970
@@ -30104,7 +30110,7 @@ msgstr "_1:"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:986
msgctxt "tocentriespage|extended_tip|key1lb"
msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
-msgstr "Vælg det element, som litteraturlistelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sorter efter."
+msgstr "Vælg det element, som litteraturlisteelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sortér efter."
#. B7NqZ
#: sw/uiconfig/swriter/ui/tocentriespage.ui:999
@@ -30122,13 +30128,13 @@ msgstr "_3:"
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1027
msgctxt "tocentriespage|extended_tip|key2lb"
msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
-msgstr "Vælg det element, som litteraturlistelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sorter efter."
+msgstr "Vælg det element, som litteraturlisteelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sortér efter."
#. tfvwe
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1044
msgctxt "tocentriespage|extended_tip|key3lb"
msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area."
-msgstr "Vælg det element, som litteraturlistelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sorter efter."
+msgstr "Vælg det element, som litteraturlisteelementerne skal sorteres efter. Denne indstilling er kun tilgængelig, hvis du vælger alternativknappen Indhold i området Sortér efter."
#. 6GYwu
#: sw/uiconfig/swriter/ui/tocentriespage.ui:1058
@@ -30476,7 +30482,7 @@ msgstr "_Yderligere typografier"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:506
msgctxt "tocindexpage|addstylescb|tooltip_text"
msgid "Include selected paragraph styles in the index. Click the “Assign Styles” button."
-msgstr "Inkluder de valgte afsnitstypografier i indekset. Klik på knappen \"Tildel typografier\"."
+msgstr "Inkludér de valgte afsnitstypografier i indekset. Klik på knappen \"Tildel typografier\"."
#. mDsDx
#: sw/uiconfig/swriter/ui/tocindexpage.ui:511
@@ -30716,7 +30722,7 @@ msgstr "Vælg numerisk, når du vil sortere tal ud fra værdi, såsom i 1, 2, 12
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1129
msgctxt "tocindexpage|label4"
msgid "Sort"
-msgstr "Sorter"
+msgstr "Sortér"
#. zSgta
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1170
diff --git a/source/da/uui/messages.po b/source/da/uui/messages.po
index 8440c6b24d1..7b9da30a998 100644
--- a/source/da/uui/messages.po
+++ b/source/da/uui/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-02 00:05+0100\n"
-"PO-Revision-Date: 2024-06-09 01:45+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/uuimessages/da/>\n"
"Language: da\n"
@@ -903,7 +903,7 @@ msgstr "Adgangskoderne stemmer ikke overens."
#: uui/inc/strings.hrc:73
msgctxt "STR_LOCKCORRUPT_TITLE"
msgid "Lock file is corrupted"
-msgstr "Låsefilen er ødelagt"
+msgstr "Låsefilen er beskadiget"
#. nkUGA
#: uui/inc/strings.hrc:74
@@ -913,9 +913,9 @@ msgid ""
"\n"
"Select Notify to open read-only and get notified when the document becomes editable."
msgstr ""
-"Låsefilen er korrumperet og muligvis tom. Åbning og lukning af dokumentet skrivebeskyttet fjerner den korrumperede låsefil.\n"
+"Låsefilen er beskadiget og muligvis tom. Åbning og lukning af dokumentet skrivebeskyttet fjerner den beskadigede låsefil.\n"
"\n"
-"Vælg Underret for at åbne dokumentet og bliv underrettet, nårdet kan redigeres."
+"Vælg Underret for at åbne dokumentet og bliv underrettet, når det kan redigeres."
#. fKEYB
#: uui/inc/strings.hrc:75
diff --git a/source/da/wizards/messages.po b/source/da/wizards/messages.po
index 424e9e14e17..53e2435fc89 100644
--- a/source/da/wizards/messages.po
+++ b/source/da/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: 2022-12-12 14:06+0100\n"
-"PO-Revision-Date: 2024-06-09 01:45+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/wizardsmessages/da/>\n"
"Language: da\n"
@@ -206,7 +206,7 @@ msgstr "Returadresse"
#: wizards/com/sun/star/wizards/common/strings.hrc:64
msgctxt "RID_LETTERWIZARDDIALOG_START_9"
msgid "~Include footer"
-msgstr "~Inkluder sidefod"
+msgstr "~Inkludér sidefod"
#. Gsz9u
#: wizards/com/sun/star/wizards/common/strings.hrc:65
@@ -290,7 +290,7 @@ msgstr "Brug adressedatabase til ~brevfletning"
#: wizards/com/sun/star/wizards/common/strings.hrc:78
msgctxt "RID_LETTERWIZARDDIALOG_START_23"
msgid "Include ~only on second and following pages"
-msgstr "Inkluder ~kun på anden og efterfølgende sider"
+msgstr "Inkludér ~kun på anden og efterfølgende sider"
#. uwLyZ
#: wizards/com/sun/star/wizards/common/strings.hrc:79
diff --git a/source/da/wizards/source/resources.po b/source/da/wizards/source/resources.po
index f465cf440f9..1c7bc932252 100644
--- a/source/da/wizards/source/resources.po
+++ b/source/da/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: 2022-12-12 14:06+0100\n"
-"PO-Revision-Date: 2024-06-20 01:45+0000\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: Lars Jødal <lajo@rn.dk>\n"
"Language-Team: Danish <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/da/>\n"
"Language: da\n"
@@ -338,7 +338,7 @@ msgctxt ""
"RID_REPORT_20\n"
"property.text"
msgid "~Sort by"
-msgstr "~Sorter efter"
+msgstr "~Sortér efter"
#. 8CX4A
#: resources_en_US.properties
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 2f7d24e5fe5..fb9caf62a54 100644
--- a/source/de/cui/messages.po
+++ b/source/de/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-03 10:20+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/de/>\n"
"Language: de\n"
@@ -2562,11 +2562,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Zum Öffnen einer CSV-Datei als eine neue Tabelle im aktuellen Calc-Tabellendokument wählen Sie »Tabelle ▸ Tabelle aus Datei einfügen…«."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Um mit der standardmäßigen Formatierung weiterzuschreiben, nachdem Sie manuell Attribute wie „Fett“, „Kursiv“ oder „Unterstrichen“ angewendet haben, drücken Sie [%MOD1+Umschalt+X]."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16460,13 +16460,13 @@ msgstr "Minuten"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Stattdessen das Dokument automatisch speichern"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Legt fest, dass die Office-Suite das geänderte Dokument selbst speichert, anstatt eine temporäre Wiederherstellungs-Version zu erstellen. Verwendet dasselbe Zeitintervall wie die automatische Wiederherstellung."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/de/extensions/messages.po b/source/de/extensions/messages.po
index eb576fbe073..35c4814b074 100644
--- a/source/de/extensions/messages.po
+++ b/source/de/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: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-02-11 17:37+0000\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/extensionsmessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1555474560.000000\n"
#. cBx8W
@@ -2602,7 +2602,7 @@ msgstr "Herunterladen der Aktualisierung angehalten"
#: extensions/inc/strings.hrc:329
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_PAUSED"
msgid "Click the icon to resume."
-msgstr "Klicken Sie auf das Symbol, um fortzusetzen."
+msgstr "Klicken Sie zum Fortsetzen auf das Symbol."
#. 9jAgi
#: extensions/inc/strings.hrc:330
@@ -2626,7 +2626,7 @@ msgstr "Herunterladen des Updates abgeschlossen"
#: extensions/inc/strings.hrc:333
msgctxt "RID_UPDATE_BUBBLE_DOWNLOAD_AVAIL"
msgid "Click the icon to start the installation."
-msgstr "Klicken Sie auf das Symbol, um die Installation zu starten."
+msgstr "Klicken Sie zum Starten der Installation auf das Symbol."
#. PeAde
#: extensions/inc/strings.hrc:334
diff --git a/source/de/formula/messages.po b/source/de/formula/messages.po
index f5b49d5002e..f24940dc230 100644
--- a/source/de/formula/messages.po
+++ b/source/de/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-10 01:45+0000\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1555474717.000000\n"
#. YfKFn
@@ -2852,7 +2852,7 @@ msgstr "Auswahl"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Inhalt:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index 0101195ced4..7c749ddb144 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-16 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/de/>\n"
"Language: de\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Auf übergeordnete Vorlage zurücksetzen"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Die Werte in diesem Register werden auf die entsprechenden Werte der im Register „Verwalten“ unter „Basierend auf“ angegebenen Vorlage gesetzt. In allen Fällen, auch wenn „Basierend auf“ „Kein“ ist, werden die für dieses Register aktuell bei „Enthält“ angegebenen Werte entfernt."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Im Register <menuitem>Extras</menuitem> klicken Sie auf die Schaltfläche <menuitem>Optionen…</menuitem>, wählen Sie dann <menuitem>Laden/Speichern – Allgemein</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Wählen Sie <emph>Format – Zellen… – Register: Hintergrund</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Format – Seitenvorlage… – Register: Verwalten</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Vorlagen – Absatzvorlage bearbeiten… – Register: Verwalten</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Formatvorlagen – Formatvorlagen verwalten</menuitem> – das Kontextmenü eines Eintrags – <menuitem>Neu…/Vorlage bearbeiten… – Register: Verwaltung</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Wählen Sie <menuitem>Format – Seitenvorlage… – Register: Verwalten</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Formatvorlagen – Formatvorlagen verwalten</menuitem> – das Kontextmenü eines Eintrags – <menuitem>Neu…/Vorlage bearbeiten… – Register: Verwaltung</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Wählen Sie <menuitem>Format – Vorlagen – Vorlage bearbeiten… – Register: Verwalten</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Format – Formatvorlagen – Formatvorlagen verwalten</menuitem> – das Kontextmenü eines Eintrags – <menuitem>Neu…/Vorlage bearbeiten… – Register: Verwaltung</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Wählen Sie <menuitem>Folie – Foleneigenschaften… – Register: Seite</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wählen Sie <menuitem>Ansicht – Formatvorlagen</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(alternativ: [Befehl+T])</keycode></caseinline><defaultinline><keycode>(alternativ: [F11])</keycode></defaultinline></switchinline> – das Kontextmenü eines Eintrags – <menuitem>Neu…/Vorlage bearbeiten… – Register: Verwaltung</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 1681ddb700c..e24525163db 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-03 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/de/>\n"
"Language: de\n"
@@ -2732,7 +2732,7 @@ msgctxt ""
"par_id71543592343227\n"
"help.text"
msgid "Use <link href=\"text/shared/guide/openpgp.xml\">OpenPGP</link> public keys to encrypt documents."
-msgstr ""
+msgstr "Verwenden Sie öffentliche <link href=\"text/shared/guide/openpgp.xml\">OpenPGP</link>-Schlüssel zum Verschlüsseln von Dokumenten."
#. SqPSp
#: 01070000.xhp
@@ -3029,7 +3029,7 @@ msgctxt ""
"bm_id661712409722063\n"
"help.text"
msgid "<bookmark_value>description; document properties</bookmark_value> <bookmark_value>description; file properties</bookmark_value> <bookmark_value>description; metadata</bookmark_value> <bookmark_value>metadata; adding metadata</bookmark_value> <bookmark_value>metadata; editing metadata</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Beschreibung; Dokumenteigenschaften</bookmark_value><bookmark_value>Beschreibung; Dateieigenschaften</bookmark_value><bookmark_value>Beschreibung; Metadaten</bookmark_value><bookmark_value>Metadaten; Metadaten hinzufügen</bookmark_value><bookmark_value>Metadaten; Metadaten bearbeiten</bookmark_value>"
#. NQDen
#: 01100100.xhp
@@ -3056,7 +3056,7 @@ msgctxt ""
"par_id721712354151660\n"
"help.text"
msgid "Choose <menuitem>File - Properties</menuitem> then select the <menuitem>Description</menuitem> tab."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Datei – Eigenschaften…</menuitem> – Register: <menuitem>Beschreibung</menuitem>."
#. PSac7
#: 01100100.xhp
@@ -3065,7 +3065,7 @@ msgctxt ""
"par_id271712404524124\n"
"help.text"
msgid "%PRODUCTNAME supports the Dublin Core Metadata Element Set, a standardized set of metadata elements used to describe physical and electronic documents."
-msgstr ""
+msgstr "%PRODUCTNAME unterstützt das Metadatenschema „Dublin Core“, einen standardisierten Satz von Metadatenelementen zur Beschreibung physischer und elektronischer Dokumente."
#. DQhzs
#: 01100100.xhp
@@ -3074,7 +3074,7 @@ msgctxt ""
"par_id311712404964926\n"
"help.text"
msgid "You can add additional metadata elements in the <link href=\"text/shared/01/01100300.xhp\"><menuitem>Custom Properties</menuitem></link> tab."
-msgstr ""
+msgstr "Sie können zusätzliche Metadatenelemente im Register <link href=\"text/shared/01/01100300.xhp\"><menuitem>Benutzerdefinierte Eigenschaften</menuitem></link> hinzufügen."
#. DB262
#: 01100100.xhp
@@ -3092,7 +3092,7 @@ msgctxt ""
"hd_id101714412611703\n"
"help.text"
msgid "<variable id=\"elements_h2\">Elements</variable>"
-msgstr ""
+msgstr "<variable id=\"elements_h2\">Elemente</variable>"
#. V3K7D
#: 01100100.xhp
@@ -3101,7 +3101,7 @@ msgctxt ""
"hd_id3152372\n"
"help.text"
msgid "<variable id=\"title_h3\">Title</variable>"
-msgstr ""
+msgstr "<variable id=\"title_h3\">Title</variable>"
#. m9p8k
#: 01100100.xhp
@@ -3119,7 +3119,7 @@ msgctxt ""
"par_id291714416716612\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A name given to the resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Ein der Ressource zugewiesener Name."
#. mirp7
#: 01100100.xhp
@@ -3128,7 +3128,7 @@ msgctxt ""
"hd_id3145669\n"
"help.text"
msgid "<variable id=\"subject_h3\">Subject</variable>"
-msgstr ""
+msgstr "<variable id=\"subject_h3\">Thema</variable>"
#. aPM28
#: 01100100.xhp
@@ -3146,7 +3146,7 @@ msgctxt ""
"par_id781714416090632\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The topic of the resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Das Thema der Ressource."
#. ntXMN
#: 01100100.xhp
@@ -3155,7 +3155,7 @@ msgctxt ""
"hd_id3156426\n"
"help.text"
msgid "<variable id=\"keywords_h3\">Keywords</variable>"
-msgstr ""
+msgstr "<variable id=\"keywords_h3\">Schlüsselwörter</variable>"
#. 4pHTt
#: 01100100.xhp
@@ -3173,7 +3173,7 @@ msgctxt ""
"hd_id991712331471026\n"
"help.text"
msgid "<variable id=\"contributor_h3\">Contributor</variable>"
-msgstr ""
+msgstr "<variable id=\"contributor_h3\">Mitwirkende(r)</variable>"
#. BejA7
#: 01100100.xhp
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_id1001712331484014\n"
"help.text"
msgid "Enter the names of the people, organizations, or other entities that have made contributions to the document. For example, the names of the document’s authors, or team members who contributed data to it."
-msgstr ""
+msgstr "Geben Sie die Namen der Personen, Organisationen oder anderen Entitäten ein, die Beiträge zum Dokument geleistet haben. Beispielsweise die Namen der Autoren des Dokuments oder der Teammitglieder, die Daten dazu beigetragen haben."
#. CicCF
#: 01100100.xhp
@@ -3191,7 +3191,7 @@ msgctxt ""
"par_id341714417205026\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An entity responsible for making contributions to the resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Eine Entität, die für die Bereitstellung von Beiträgen zur Ressource verantwortlich ist."
#. 9HoTd
#: 01100100.xhp
@@ -3200,7 +3200,7 @@ msgctxt ""
"hd_id291712331494279\n"
"help.text"
msgid "<variable id=\"coverage_h3\">Coverage</variable>"
-msgstr ""
+msgstr "<variable id=\"coverage_h3\">Eingrenzung</variable>"
#. vCizD
#: 01100100.xhp
@@ -3209,7 +3209,7 @@ msgctxt ""
"par_id961712331502781\n"
"help.text"
msgid "Enter the time, place, or jurisdiction that the document is relevant to. For example, a range of dates, a place, or an institution that the document applies to."
-msgstr ""
+msgstr "Geben Sie die Zeit, den Ort oder die Gerichtsbarkeit ein, für die das Dokument relevant ist. Beispielsweise einen Datumsbereich, einen Ort oder eine Institution, für die das Dokument gilt."
#. 3NGzr
#: 01100100.xhp
@@ -3218,7 +3218,7 @@ msgctxt ""
"par_id751714417027700\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Das räumliche oder zeitliche Thema der Ressource, die räumliche Anwendbarkeit der Ressource oder die Gerichtsbarkeit, unter der die Ressource relevant ist."
#. oCXtb
#: 01100100.xhp
@@ -3227,7 +3227,7 @@ msgctxt ""
"hd_id91712331508846\n"
"help.text"
msgid "<variable id=\"identifier_h3\">Identifier</variable>"
-msgstr ""
+msgstr "<variable id=\"identifier_h3\">Kennung</variable>"
#. knfFR
#: 01100100.xhp
@@ -3236,7 +3236,7 @@ msgctxt ""
"par_id311712331541857\n"
"help.text"
msgid "Enter a unique and unambiguous identifier for the document. For example, a document number or ISBN."
-msgstr ""
+msgstr "Geben Sie eine eindeutige und einmalige Kennung für das Dokument ein. Beispielsweise eine Dokumentnummer oder eine ISBN."
#. ifeVh
#: 01100100.xhp
@@ -3245,7 +3245,7 @@ msgctxt ""
"par_id951714414695195\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An unambiguous reference to the document within a specific context."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Ein eindeutiger Verweis auf das Dokument in einem bestimmten Kontext."
#. xXzCz
#: 01100100.xhp
@@ -3254,7 +3254,7 @@ msgctxt ""
"hd_id941712331544480\n"
"help.text"
msgid "<variable id=\"publisher_h3\">Publisher</variable>"
-msgstr ""
+msgstr "<variable id=\"publisher_h3\">Herausgeber(in)</variable>"
#. 3CXu4
#: 01100100.xhp
@@ -3263,7 +3263,7 @@ msgctxt ""
"par_id971712331610892\n"
"help.text"
msgid "Enter the name of the entity that is making the document available. For example, a company, university, or government body."
-msgstr ""
+msgstr "Geben Sie den Namen der Entität ein, die das Dokument zur Verfügung stellt. Beispielsweise ein Unternehmen, eine Universität oder eine Regierungsbehörde."
#. wwXLg
#: 01100100.xhp
@@ -3272,7 +3272,7 @@ msgctxt ""
"par_id951714495693749\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>An entity responsible for making the resource available."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Eine Entität, die für die Bereitstellung der Ressource verantwortlich ist."
#. EHSTB
#: 01100100.xhp
@@ -3281,7 +3281,7 @@ msgctxt ""
"hd_id991712331616227\n"
"help.text"
msgid "<variable id=\"relation_h3\">Relation</variable>"
-msgstr ""
+msgstr "<variable id=\"relation_h3\">Beziehung</variable>"
#. dtGAj
#: 01100100.xhp
@@ -3290,7 +3290,7 @@ msgctxt ""
"par_id41712331631248\n"
"help.text"
msgid "Enter information about resources related to the document. For example, a set of volumes the document is part of, or the document's edition number."
-msgstr ""
+msgstr "Geben Sie Informationen zu Ressourcen ein, die mit dem Dokument in Zusammenhang stehen. Beispielsweise eine Reihe von Bänden, zu denen das Dokument gehört, oder die Ausgabenummer des Dokuments."
#. 3adUT
#: 01100100.xhp
@@ -3299,7 +3299,7 @@ msgctxt ""
"par_id121714495775615\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A related resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Eine verwandte Ressource."
#. EwqDc
#: 01100100.xhp
@@ -3308,7 +3308,7 @@ msgctxt ""
"hd_id371712331706300\n"
"help.text"
msgid "<variable id=\"rights_h3\">Rights</variable>"
-msgstr ""
+msgstr "<variable id=\"rights_h3\">Rechte</variable>"
#. gAqnL
#: 01100100.xhp
@@ -3317,7 +3317,7 @@ msgctxt ""
"par_id381712331724319\n"
"help.text"
msgid "Enter information intellectual property rights associated with the document. For example, a copyright statement, or information about who has permission to access the document."
-msgstr ""
+msgstr "Geben Sie Informationen zu den mit dem Dokument verbundenen geistigen Eigentumsrechten ein. Beispielsweise eine Copyright-Erklärung oder Informationen darüber, wer Zugriff auf das Dokument hat."
#. U5YE6
#: 01100100.xhp
@@ -3326,7 +3326,7 @@ msgctxt ""
"par_id651714495803137\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>Information about rights held in and over the resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Informationen zu den an und über die Ressource bestehenden Rechten."
#. U7iEe
#: 01100100.xhp
@@ -3335,7 +3335,7 @@ msgctxt ""
"hd_id691712336584526\n"
"help.text"
msgid "<variable id=\"source_h3\">Source</variable>"
-msgstr ""
+msgstr "<variable id=\"source_h3\">Quelle</variable>"
#. 7gvvH
#: 01100100.xhp
@@ -3344,7 +3344,7 @@ msgctxt ""
"par_id281712331745647\n"
"help.text"
msgid "Enter information about other resources from which the document is derived. For example, the name or identifier of a hard copy that the document was scanned from, or a url that the document was downloaded from."
-msgstr ""
+msgstr "Geben Sie Informationen zu anderen Ressourcen ein, aus denen das Dokument stammt. Beispielsweise den Namen oder die Kennung einer Papierkopie, von der das Dokument gescannt wurde, oder eine URL, von der das Dokument heruntergeladen wurde."
#. 4bXyK
#: 01100100.xhp
@@ -3353,7 +3353,7 @@ msgctxt ""
"par_id511714495809888\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>A related resource from which the described resource is derived."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Eine verwandte Ressource, von der die beschriebene Ressource abgeleitet ist."
#. 7GCuX
#: 01100100.xhp
@@ -3362,7 +3362,7 @@ msgctxt ""
"hd_id921712336596379\n"
"help.text"
msgid "<variable id=\"type_h3\">Type</variable>"
-msgstr ""
+msgstr "<variable id=\"type_h3\">Typ</variable>"
#. DQaEH
#: 01100100.xhp
@@ -3371,7 +3371,7 @@ msgctxt ""
"par_id61712336816144\n"
"help.text"
msgid "Enter information about the category or format of the document. For example, whether the document is a text document, image, or multimedia presentation."
-msgstr ""
+msgstr "Geben Sie Informationen zur Kategorie oder zum Format des Dokuments ein. Beispielsweise, ob es sich bei dem Dokument um ein Textdokument, ein Bild oder eine Multimedia-Präsentation handelt."
#. z9u52
#: 01100100.xhp
@@ -3380,7 +3380,7 @@ msgctxt ""
"par_id971714495815222\n"
"help.text"
msgid "<emph>DCMI Definition: </emph>The nature or genre of the resource."
-msgstr ""
+msgstr "<emph>DCMI-Definition:</emph> Die Art oder Gattung der Ressource."
#. hCVdH
#: 01100100.xhp
@@ -3389,7 +3389,7 @@ msgctxt ""
"hd_id3148620\n"
"help.text"
msgid "<variable id=\"comments_h3\">Comments</variable>"
-msgstr ""
+msgstr "<variable id=\"comments_h3\">Kommentare</variable>"
#. ZmWzL
#: 01100100.xhp
@@ -3407,7 +3407,7 @@ msgctxt ""
"hd_id621714663020660\n"
"help.text"
msgid "Help"
-msgstr ""
+msgstr "Hilfe"
#. GZhGz
#: 01100100.xhp
@@ -3416,7 +3416,7 @@ msgctxt ""
"hd_id681714663041980\n"
"help.text"
msgid "Reset"
-msgstr ""
+msgstr "Zurücksetzen"
#. sQD8r
#: 01100100.xhp
@@ -3425,7 +3425,7 @@ msgctxt ""
"hd_id21714663049092\n"
"help.text"
msgid "OK"
-msgstr ""
+msgstr "OK"
#. HYSCn
#: 01100100.xhp
@@ -3434,7 +3434,7 @@ msgctxt ""
"hd_id71714663031713\n"
"help.text"
msgid "Cancel"
-msgstr ""
+msgstr "Abbrechen"
#. Q7CCy
#: 01100100.xhp
@@ -3443,7 +3443,7 @@ msgctxt ""
"par_id621714749828805\n"
"help.text"
msgid "<link href=\"https://www.dublincore.org/specifications/dublin-core/dces/\">DCES Page on the DCMI Website</link>"
-msgstr ""
+msgstr "<link href=\"https://www.dublincore.org/specifications/dublin-core/dces/\">Seite DCES auf der Webseite DCMI</link>"
#. 63szi
#: 01100200.xhp
@@ -12542,7 +12542,7 @@ msgctxt ""
"hd_id3152952\n"
"help.text"
msgid "<variable id=\"track_changes_h1\"><link href=\"text/shared/01/02230000.xhp\">Track Changes</link></variable>"
-msgstr ""
+msgstr "<variable id=\"track_changes_h1\"><link href=\"text/shared/01/02230000.xhp\">Änderungen verfolgen</link></variable>"
#. vZ58F
#: 02230000.xhp
@@ -12587,7 +12587,7 @@ msgctxt ""
"hd_id3150758\n"
"help.text"
msgid "<variable id=\"record_changes_h1\"><link href=\"text/shared/01/02230100.xhp\">Record Changes</link></variable>"
-msgstr ""
+msgstr "<variable id=\"record_changes_h1\"><link href=\"text/shared/01/02230100.xhp\">Änderungen aufzeichnen</link></variable>"
#. FeZzp
#: 02230100.xhp
@@ -12929,7 +12929,7 @@ msgctxt ""
"par_id581668110199198\n"
"help.text"
msgid "The default. Insertions and deletions are displayed in the content according to the settings in <link href=\"text/shared/optionen/01060600.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <menuitem>%PRODUCTNAME Writer - Changes</menuitem></link>."
-msgstr ""
+msgstr "Standard. Einfügungen und Löschungen werden im Inhalt entsprechend den Einstellungen unter <link href=\"text/shared/optionen/01060600.xhp\"><switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline> – <menuitem>%PRODUCTNAME Writer – Änderungen</menuitem></link> angezeigt."
#. ARQV7
#: 02230200.xhp
@@ -12947,7 +12947,7 @@ msgctxt ""
"par_id351668110205116\n"
"help.text"
msgid "Show the deleted content in the margin. Insertions are displayed in the content."
-msgstr ""
+msgstr "Zeigt die gelöschten Inhalte am Rand an. Einfügungen werden im Inhalt angezeigt."
#. v49KG
#: 02230200.xhp
@@ -12965,7 +12965,7 @@ msgctxt ""
"par_id751668110211057\n"
"help.text"
msgid "Show the inserted content in the margin. Deletions are displayed in the content."
-msgstr ""
+msgstr "Zeigt den eingefügten Inhalt am Rand an. Löschungen werden im Inhalt angezeigt."
#. nXYPN
#: 02230300.xhp
@@ -14423,7 +14423,7 @@ msgctxt ""
"hd_id3150467\n"
"help.text"
msgid "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Standard Bar</link></variable>"
-msgstr ""
+msgstr "<variable id=\"standard_bar_h1\"><link href=\"text/shared/01/03020000.xhp\">Symbolleiste „Standard“</link></variable>"
#. iyNTo
#: 03020000.xhp
@@ -16547,7 +16547,7 @@ msgctxt ""
"par_id531711633095294\n"
"help.text"
msgid "Choose <menuitem>Home</menuitem> then click the <menuitem>Home</menuitem> dropdown on the right-hand side of the tab and choose <menuitem>Character</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Start</menuitem>, klicken Sie dann auf das Dropdown-Menü <menuitem>Start</menuitem> auf der rechten Seite des Registers und wählen Sie <menuitem>Zeichen…</menuitem>"
#. LXs3D
#: 05020200.xhp
@@ -16556,7 +16556,7 @@ msgctxt ""
"par_id891711633731822\n"
"help.text"
msgid "Choose <menuitem>Character - Character</menuitem>"
-msgstr ""
+msgstr "Wählen Sie <menuitem>Zeichen – Zeichen…</menuitem>"
#. AYN9L
#: 05020200.xhp
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Stellt die Originalgröße der ausgewählten Grafik wieder her.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Verwaltung"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>Verwalten; Formatvorlagen</bookmark_value><bookmark_value>Formatvorlagen; verwalten</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Verwalten</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index 8bcc01efcf6..24338cf0fa2 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/de/>\n"
"Language: de\n"
@@ -13595,7 +13595,7 @@ msgctxt ""
"bm_id3145136\n"
"help.text"
msgid "<bookmark_value>Gallery; inserting pictures from</bookmark_value> <bookmark_value>pictures; inserting from Gallery</bookmark_value> <bookmark_value>inserting; from Gallery into text</bookmark_value> <bookmark_value>objects; inserting from Gallery</bookmark_value> <bookmark_value>textures;inserting from Gallery</bookmark_value> <bookmark_value>backgrounds;inserting from Gallery</bookmark_value> <bookmark_value>inserting;objects from Gallery</bookmark_value> <bookmark_value>copying;from Gallery</bookmark_value> <bookmark_value>replacing;objects from Gallery</bookmark_value> <bookmark_value>Gallery;dragging pictures to draw objects</bookmark_value> <bookmark_value>draw objects;dropping Gallery pictures</bookmark_value> <bookmark_value>drag and drop;from Gallery to draw objects</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Galerie; Bilder einfügen aus</bookmark_value><bookmark_value>Bilder; Einfügen aus Galerie</bookmark_value><bookmark_value>Einfügen; aus Galerie in Text</bookmark_value><bookmark_value>Objekte; Einfügen aus Galerie</bookmark_value><bookmark_value>Texturen; Einfügen aus Galerie</bookmark_value><bookmark_value>Hintergrund; Einfügen aus Galerie</bookmark_value><bookmark_value>Einfügen; Objekte aus Galerie</bookmark_value><bookmark_value>Kopieren; aus Galerie</bookmark_value><bookmark_value>Ersetzen; Objekte aus Galerie</bookmark_value><bookmark_value>Galerie; Bilder auf Zeichnungsobjekten ziehen</bookmark_value><bookmark_value>Zeichnungsobjekte; Bilder aus Galerie ziehen</bookmark_value><bookmark_value>Ziehen-und-Ablegen; aus Galerie auf Zeichnungsobjekte</bookmark_value>"
#. 2ZbhA
#: gallery_insert.xhp
@@ -21857,7 +21857,7 @@ msgctxt ""
"bm_id380260\n"
"help.text"
msgid "<bookmark_value>Format Paintbrush</bookmark_value> <bookmark_value>clone formatting</bookmark_value> <bookmark_value>formatting;copying</bookmark_value> <bookmark_value>copying;formatting</bookmark_value> <bookmark_value>Paintbrush</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Formatierungspinsel</bookmark_value><bookmark_value>Formatierung klonen</bookmark_value><bookmark_value>Formatierung; Kopieren</bookmark_value><bookmark_value>Kopieren; Formatierung</bookmark_value><bookmark_value>Pinsel</bookmark_value>"
#. 7BBrB
#: paintbrush.xhp
@@ -21875,7 +21875,7 @@ msgctxt ""
"par_idN10655\n"
"help.text"
msgid "Use the <link href=\"text/shared/02/paintbrush.xhp\"><emph>Clone Formatting</emph></link> tool to copy formatting from a text selection or from an object and apply the formatting to another text selection or object."
-msgstr ""
+msgstr "Verwenden Sie das Werkzeug <link href=\"text/shared/02/paintbrush.xhp\"><emph>Formatierung übertragen</emph></link>, um die Formatierung einer Textauswahl oder eines Objekts zu kopieren und auf eine andere Textauswahl oder ein anderes Objekt anzuwenden."
#. F7Fcd
#: paintbrush.xhp
@@ -21893,7 +21893,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "On the <link href=\"text/shared/main0201.xhp\"><emph>Standard Bar</emph></link>, click the <emph>Clone Formatting</emph> icon. The mouse cursor will change to a paint bucket."
-msgstr ""
+msgstr "Klicken Sie in der <link href=\"text/shared/main0201.xhp\"><emph>Standard-Symbolleiste</emph></link> auf das Symbol <emph>Formatierung übertragen</emph>. Der Mauszeiger verwandelt sich in einen Farbeimer."
#. AZjCv
#: paintbrush.xhp
@@ -22082,7 +22082,7 @@ msgctxt ""
"par_idN106EC\n"
"help.text"
msgid "Text within Calc cells is selected"
-msgstr "Text in Calc-Zellen markiert"
+msgstr "Text in Calc-Zellen ist markiert"
#. r8BGq
#: paintbrush.xhp
@@ -22118,7 +22118,7 @@ msgctxt ""
"par_idN10706\n"
"help.text"
msgid "Calc table or cells are selected"
-msgstr "Calc Tabelle oder Zellen sind markiert"
+msgstr "Calc-Tabelle oder -zellen sind markiert"
#. kuPwA
#: paintbrush.xhp
@@ -22136,7 +22136,7 @@ msgctxt ""
"par_id791717184075742\n"
"help.text"
msgid "Text within Impress table is selected"
-msgstr ""
+msgstr "Text in Impress-Tabelle ist markiert"
#. 44VEa
#: paintbrush.xhp
@@ -22145,7 +22145,7 @@ msgctxt ""
"par_id211717184260731\n"
"help.text"
msgid "Copies formatting attributes that apply to all characters in the cell. Formatting can only be copied within the same table."
-msgstr ""
+msgstr "Kopiert alle Formatierungsattribute, die auf alle Zeichen in der Zelle angewandt worden. Die Formatierung kann nur innerhalb der selben Tabelle kopiert werden."
#. G7z8F
#: paintbrush.xhp
@@ -22154,7 +22154,7 @@ msgctxt ""
"par_id10821388499239\n"
"help.text"
msgid "Impress table or cells are selected"
-msgstr ""
+msgstr "Impress-Tabelle oder -zellen sind markiert"
#. xXcmM
#: paintbrush.xhp
@@ -22163,7 +22163,7 @@ msgctxt ""
"par_id23538680114944\n"
"help.text"
msgid "Not supported"
-msgstr ""
+msgstr "Nicht unterstützt"
#. Sigiv
#: palette_files.xhp
@@ -27140,7 +27140,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<emph>--show[=slide_number]</emph>"
-msgstr ""
+msgstr "<emph>--show[=Foliennummer]</emph>"
#. M9EKN
#: start_parameters.xhp
@@ -27149,7 +27149,7 @@ msgctxt ""
"par_id3153838\n"
"help.text"
msgid "Opens and starts the slideshow of the following presentation documents immediately. Files are closed after the showing. If a <literal>slide_number</literal> is provided, they start at that slide."
-msgstr ""
+msgstr "Öffnet und startet die Bildschirmpräsentation der folgenden Präsentation sofort. Dateien werden nach der Bildschirmpräsentation geschlossen. Wenn <literal>Foliennummer</literal> angegeben ist, beginnt die Bildschirmpräsentation mit dieser Folie."
#. 5R6iA
#: start_parameters.xhp
diff --git a/source/de/helpcontent2/source/text/shared/help.po b/source/de/helpcontent2/source/text/shared/help.po
index ab0451f8173..faf4b91d74f 100644
--- a/source/de/helpcontent2/source/text/shared/help.po
+++ b/source/de/helpcontent2/source/text/shared/help.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-24 09:45+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
+"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1561694687.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">LibreOffice-Bücher</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index 0102954a087..06757e39818 100644
--- a/source/de/helpcontent2/source/text/shared/optionen.po
+++ b/source/de/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-19 09:45+0000\n"
-"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -932,15 +932,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Stattdessen das Dokument automatisch speichern"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9509,7 +9509,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Zellen; Anzeigen Rasterlinien (Calc)</bookmark_value><bookmark_value>Umrandung; Zellen am Bildschirm (Calc)</bookmark_value><bookmark_value>Raster; Anzeigen Linien (Calc)</bookmark_value><bookmark_value>Farben; Rasterlinien und Zellen (Calc)</bookmark_value><bookmark_value>Seitenumbruch; Anzeigen (Calc)</bookmark_value><bookmark_value>Hilfslinien; Anzeigen (Calc)</bookmark_value><bookmark_value>Anzeigen; Nullwerte (Calc)</bookmark_value><bookmark_value>Nullwerte; Anzeigen (Calc)</bookmark_value><bookmark_value>Tabellen in Tabellendokumenten; Werte hervorheben</bookmark_value><bookmark_value>Zellen; Formatierung ohne Auswirkung (Calc)</bookmark_value><bookmark_value>Zellen; Einfärbung (Calc)</bookmark_value><bookmark_value>Anker; Anzeigen (Calc)</bookmark_value><bookmark_value>Farben; Einschränkungen (Calc)</bookmark_value><bookmark_value>Textüberlauf in Zellen von Tabellen</bookmark_value><bookmark_value>Bezüge; Farbig anzeigen (Calc)</bookmark_value><bookmark_value>Objekte; Anzeigen in Tabellendokumenten</bookmark_value><bookmark_value>Bilder; Anzeigen in Calc</bookmark_value><bookmark_value>Diagramme; Anzeigen (Calc)</bookmark_value><bookmark_value>Zeichnungsobjekte; Anzeigen (Calc)</bookmark_value><bookmark_value>Zeilenbeschriftungen; Anzeigen (Calc)</bookmark_value><bookmark_value>Spaltenbeschriftungen; Anzeigen (Calc)</bookmark_value><bookmark_value>Bildlaufleisten; Anzeigen (Calc)</bookmark_value><bookmark_value>Tabellenregister; Anzeigen</bookmark_value><bookmark_value>Register; Anzeigen Tabellenregister</bookmark_value><bookmark_value>Gliederung; Gliederungssymbole</bookmark_value><bookmark_value>Zellen; Formelanzeiger in Zelle</bookmark_value><bookmark_value>Zellen; Formelanzeiger</bookmark_value><bookmark_value>Anzeigen; Autorschaft Kommentar</bookmark_value><bookmark_value>Mauszeiger; Thema</bookmark_value><bookmark_value>Mauszeiger; System</bookmark_value> <bookmark_value>Alle suchen; Anzeigen Zusammenfassung Suche</bookmark_value><bookmark_value>Zellen; Hervorhebung</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Symbol für Kommentaranzeiger</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Wenn dieses Markierfeld aktiviert ist, werden der Autor des Kommentars sowie das Datum und die Uhrzeit der Kommentarerstellung im Fenster „Kommentar“ angezeigt, wenn Sie mit der Maus über einen Kommentar fahren."
#. tYLiN
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Symbol für Formelanzeiger</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9752,7 +9752,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Symbol für Spalten/Zeilen hervorheben</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9779,7 +9779,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Symbol für Zeilenbearbeitung hervorheben</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Symbol für Anker</alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9833,7 +9833,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Symbol für Bezüge farbig anzeigen</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9914,7 +9914,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Symbol für Mauszeiger im Stil des Themas</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Symbol für Mauszeiger im Stil des Systems</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objekte/Bilder"
#. DMhEf
#: 01060100.xhp
@@ -16196,7 +16196,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Einstellungen</menuitem></caseinline><defaultinline><menuitem>Extras – Optionen…</menuitem></defaultinline></switchinline><menuitem> – %PRODUCTNAME – Erweitert – Experteneinstellungen…</menuitem>"
#. eEkqQ
#: expertconfig.xhp
@@ -16205,7 +16205,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Klicken Sie im Register <menuitem>Extras</menuitem> auf die Schaltfläche <menuitem>Optionen…</menuitem> und dann auf <menuitem>%PRODUCTNAME – Erweitert – Experteneinstellungen…</menuitem>"
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index 0bc243b5d47..6975528efcf 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-03 09:45+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565593584.000000\n"
#. mu9aV
@@ -860,7 +860,7 @@ msgctxt ""
"hd_id3148577\n"
"help.text"
msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Überblenden</link></variable>"
#. aCYnB
#: 02150000.xhp
@@ -1283,7 +1283,7 @@ msgctxt ""
"hd_id3149664\n"
"help.text"
msgid "<variable id=\"outline_h1\"><link href=\"text/simpress/01/03090000.xhp\">Outline</link></variable>"
-msgstr ""
+msgstr "<variable id=\"outline_h1\"><link href=\"text/simpress/01/03090000.xhp\">Gliederung</link></variable>"
#. MF87J
#: 03090000.xhp
@@ -2867,7 +2867,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<variable id=\"expand_slide_h1\"><link href=\"text/simpress/01/04130000.xhp\">Expand Slide</link></variable>"
-msgstr ""
+msgstr "<variable id=\"expand_slide_h1\"><link href=\"text/simpress/01/04130000.xhp\">Folie erweitern</link></variable>"
#. 3hw2c
#: 04130000.xhp
@@ -2921,7 +2921,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<variable id=\"summary_slide_h1\"><link href=\"text/simpress/01/04140000.xhp\">Summary Slide</link></variable>"
-msgstr ""
+msgstr "<variable id=\"summary_slide_h1\"><link href=\"text/simpress/01/04140000.xhp\">Übersichtsfolie</link></variable>"
#. sYR47
#: 04140000.xhp
@@ -6278,7 +6278,7 @@ msgctxt ""
"bm_id3153818\n"
"help.text"
msgid "<bookmark_value>presentations; settings for</bookmark_value> <bookmark_value>slide shows; settings for</bookmark_value> <bookmark_value>presentations; window / full screen</bookmark_value> <bookmark_value>multiple displays</bookmark_value> <bookmark_value>presentations; enable remote control</bookmark_value> <bookmark_value>presentations; enable insecure connections</bookmark_value> <bookmark_value>presentations; enable unencrypted connections</bookmark_value> <bookmark_value>slide shows; enable remote control</bookmark_value> <bookmark_value>slide shows; enable insecure connections</bookmark_value> <bookmark_value>slide shows; enable unencrypted connections</bookmark_value> <bookmark_value>slide shows; navigation bar settings</bookmark_value> <bookmark_value>presentation; navigation bar settings</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Präsentationen; Einstellungen für</bookmark_value><bookmark_value>Bildschirmpräsentationen; Einstellungen für</bookmark_value><bookmark_value>Präsentationen; Fenster / Vollbild</bookmark_value><bookmark_value>Mehrere Anzeigen</bookmark_value><bookmark_value>Präsentationen; Fernsteuerung aktivieren</bookmark_value><bookmark_value>Präsentationen; unsichere Verbindungen aktivieren</bookmark_value><bookmark_value>Präsentationen; unverschlüsselte Verbindungen aktivieren</bookmark_value><bookmark_value>Bildschirmpräsentationen; Fernsteuerung aktivieren</bookmark_value><bookmark_value>Bildschirmpräsentationen; unsichere Verbindungen aktivieren</bookmark_value><bookmark_value>Bildschirmpräsentationen; unverschlüsselte Verbindungen aktivieren</bookmark_value><bookmark_value>Bildschirmpräsentationen; Einstellungen für Navigationsleiste</bookmark_value><bookmark_value>Präsentation; Einstellungen für Navigationsleiste</bookmark_value>"
#. KBJev
#: 06080000.xhp
@@ -6611,7 +6611,7 @@ msgctxt ""
"hd_id851716226303008\n"
"help.text"
msgid "Live-mode slideshow editing"
-msgstr ""
+msgstr "Präsentation im Präsentationsmodus bearbeiten"
#. xoann
#: 06080000.xhp
@@ -6620,7 +6620,7 @@ msgctxt ""
"par_id511716226331936\n"
"help.text"
msgid "When this box is checked the Impress main document window remains active during the presentation. Users can continue to edit slide content. Changes will be reflected in the running slideshow."
-msgstr ""
+msgstr "Wenn dieses Markierfeld aktiviert ist, bleibt das Impress-Hauptdokumentfenster während der Präsentation aktiv. Benutzer können den Folieninhalt weiterhin bearbeiten. Änderungen werden in der laufenden Diashow angezeigt."
#. dnXCx
#: 06080000.xhp
@@ -6719,7 +6719,7 @@ msgctxt ""
"hd_id221716227647562\n"
"help.text"
msgid "Button size"
-msgstr ""
+msgstr "Schaltflächengröße"
#. 55gkP
#: 06080000.xhp
@@ -6728,7 +6728,7 @@ msgctxt ""
"par_id851716227648861\n"
"help.text"
msgid "Select the size of the buttons in the navigation bar from the dropdown."
-msgstr ""
+msgstr "Wählen Sie aus der Dropdown-Liste die Größe der Schaltflächen in der Navigationsleiste aus."
#. VfvEF
#: 06080000.xhp
@@ -6764,7 +6764,7 @@ msgctxt ""
"hd_id241716224473837\n"
"help.text"
msgid "Download app"
-msgstr ""
+msgstr "App herunterladen"
#. 2tZxn
#: 06080000.xhp
@@ -6782,7 +6782,7 @@ msgctxt ""
"hd_id471716213316781\n"
"help.text"
msgid "Enable insecure WiFi connections"
-msgstr ""
+msgstr "Unsichere WLAN-Verbindungen aktivieren"
#. K9xgv
#: 06080000.xhp
@@ -6791,7 +6791,7 @@ msgctxt ""
"par_id741716213318479\n"
"help.text"
msgid "If this box is checked, %PRODUCTNAME Impress enables insecure and unencrypted connections via IP on all interfaces."
-msgstr ""
+msgstr "Wenn dieses Markierfeld aktiviert ist, ermöglicht %PRODUCTNAME Impress unsichere und unverschlüsselte Verbindungen über IP auf allen Schnittstellen."
#. SVwum
#: 06080000.xhp
@@ -6800,7 +6800,7 @@ msgctxt ""
"par_id741716213318480\n"
"help.text"
msgid "You can only enable insecure WiFi connections if remote control is enabled."
-msgstr ""
+msgstr "Sie können unsichere WLAN-Verbindungen nur aktivieren, wenn die Fernsteuerung aktiviert ist."
#. 9CBTY
#: 06080000.xhp
@@ -6809,7 +6809,7 @@ msgctxt ""
"par_id171716213320419\n"
"help.text"
msgid "Enabling insecure WiFi connections is not recommended in public settings."
-msgstr ""
+msgstr "Das Aktivieren unsicherer WLAN-Verbindungen in öffentlichen Umgebungen wird nicht empfohlen."
#. w2iqM
#: 06100000.xhp
@@ -7952,7 +7952,7 @@ msgctxt ""
"par_id571692539528746\n"
"help.text"
msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
-msgstr ""
+msgstr "Klicken Sie im Register <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Start</menuitem></caseinline></switchinline> lange auf die Liste <menuitem>Sortiert</menuitem> oder <menuitem>Unsortiert</menuitem> und wählen Sie <menuitem>Anpassen</menuitem>."
#. 8ABFW
#: bulletandposition.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index 1da6fcdc517..8b63bafc2b0 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565411718.000000\n"
#. sZfWF
@@ -16250,7 +16250,7 @@ msgctxt ""
"hd_id3153921\n"
"help.text"
msgid "Hyphenate words in CAPS"
-msgstr ""
+msgstr "Wörter in GROẞBUCHSTABEN trennen"
#. 7A5V4
#: 05030200.xhp
@@ -16259,7 +16259,7 @@ msgctxt ""
"par_id3154648\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Hyphenate words written entirely in capital letters, such as initialisms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Trennt Wörter, die vollständig in Großbuchstaben geschrieben sind, wie beispielsweise Initialen.</ahelp>"
#. 5FoUE
#: 05030200.xhp
@@ -16268,7 +16268,7 @@ msgctxt ""
"hd_id3153926\n"
"help.text"
msgid "Hyphenate last word"
-msgstr ""
+msgstr "Letztes Wort trennen"
#. 9shSg
#: 05030200.xhp
@@ -16277,7 +16277,7 @@ msgctxt ""
"par_id3154655\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Hyphenate the last word of paragraphs. Disabling this feature prevents the creation of almost empty lines containing only half a word.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Trennt das letzte Wort in Absätzen. Durch Deaktivieren dieser Funktion wird die Erstellung fast leerer Zeilen verhindert, die nur ein halbes Wort enthalten.</ahelp>"
#. pdCQw
#: 05030200.xhp
@@ -16286,7 +16286,7 @@ msgctxt ""
"hd_id3153667\n"
"help.text"
msgid "Hyphenation across"
-msgstr ""
+msgstr "Seitenübergreifende Silbentrennungen"
#. puChR
#: 05030200.xhp
@@ -16295,7 +16295,7 @@ msgctxt ""
"par_id3154669\n"
"help.text"
msgid "Control hyphenation in the last line of a column, page or spread, and last full line of a paragraph, according to certain typographical rules to improve readability."
-msgstr ""
+msgstr "Kontrolliert die Silbentrennung in der letzten Zeile einer Spalte, Seite oder Doppelseite und in der letzten vollständigen Zeile eines Absatzes gemäß bestimmter typografischer Regeln, um die Lesbarkeit zu verbessern."
#. YP4Kd
#: 05030200.xhp
@@ -16304,7 +16304,7 @@ msgctxt ""
"hd_id3158928\n"
"help.text"
msgid "Last full line of paragraph"
-msgstr ""
+msgstr "Letzte vollständige Zeile eines Absatzes"
#. ytHzx
#: 05030200.xhp
@@ -16313,7 +16313,7 @@ msgctxt ""
"par_id3184662\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossParagraph\">Deselect this check box to prevent last full line of a paragraph from being hyphenated. The hyphenated word is moved to the next line if there is enough space for it. As a result, the last line of the paragraph becomes longer, reducing the blank space between paragraphs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossParagraph\">Deaktivieren Sie dieses Markierfeld, um zu verhindern, dass die letzte vollständige Zeile eines Absatzes getrennt wird. Das getrennte Wort wird in die nächste Zeile verschoben, wenn genügend Platz dafür vorhanden ist. Dadurch wird die letzte Zeile des Absatzes länger und der Leerraum zwischen den Absätzen wird verringert.</ahelp>"
#. wDS2K
#: 05030200.xhp
@@ -16322,7 +16322,7 @@ msgctxt ""
"hd_id3153928\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Spalte"
#. BG7Ek
#: 05030200.xhp
@@ -16331,7 +16331,7 @@ msgctxt ""
"par_id3154662\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossColumn\">Deselect this check box to prevent words from being hyphenated across a column, linked frame or page. The hyphenated line is moved to the next column, frame or page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossColumn\">Deaktivieren Sie dieses Markierfeld, um zu verhindern, dass Wörter über eine Spalte, einen verknüpften Rahmen oder eine Seite hinweg getrennt werden. Die getrennte Zeile wird in die nächste Spalte, den nächsten Rahmen oder auf die nächste Seite verschoben.</ahelp>"
#. UvaFd
#: 05030200.xhp
@@ -16340,7 +16340,7 @@ msgctxt ""
"hd_id3153929\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Seite"
#. dGbdQ
#: 05030200.xhp
@@ -16349,7 +16349,7 @@ msgctxt ""
"par_id3154665\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossPage\">Deselect this check box to prevent words from being hyphenated across a page. The hyphenated line is moved to the next page. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossPage\">Deaktivieren Sie dieses Markierfeld, um zu verhindern, dass Wörter auf einer Seite getrennt werden. Die getrennte Zeile wird auf die nächste Seite verschoben.</ahelp>"
#. BWaTs
#: 05030200.xhp
@@ -16358,7 +16358,7 @@ msgctxt ""
"hd_id3153930\n"
"help.text"
msgid "Spread"
-msgstr ""
+msgstr "Doppelseite"
#. 6ZKYo
#: 05030200.xhp
@@ -16367,7 +16367,7 @@ msgctxt ""
"par_id3154666\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossSpread\">Deselect this check box to prevent words from being hyphenated across a spread. (A spread is a set of two pages that are visible to the reader at the same time.) The hyphenated line is moved to the next spread.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossSpread\">Deaktivieren Sie dieses Markierfeld, um zu verhindern, dass Wörter über eine Doppelseite hinweg getrennt werden. (Eine Doppelseite besteht aus zwei Seiten, die für den Leser gleichzeitig sichtbar sind.) Die getrennte Zeile wird auf die nächste Doppelseite verschoben.</ahelp>"
#. RQLep
#: 05030200.xhp
@@ -18770,7 +18770,7 @@ msgctxt ""
"par_id981629211796563\n"
"help.text"
msgid "<emph>Page text area:</emph> from the inner edge of the left page padding to the inner edge of the right page padding."
-msgstr ""
+msgstr "<emph>Seitentextbereich:</emph> Reicht vom inneren Rand des linken Seitenabstands bis zum inneren Rand des rechten Seitenabstands."
#. JuoS4
#: 05060100.xhp
@@ -18968,7 +18968,7 @@ msgctxt ""
"par_id481629212019833\n"
"help.text"
msgid "<emph>Paragraph text area:</emph> the object is positioned considering the beginning of the paragraph where the anchor is placed."
-msgstr ""
+msgstr "<emph>Absatztextbereich:</emph> Das Objekt wird unter Berücksichtigung des Absatzanfangs positioniert, an dem der Anker platziert ist."
#. 2i9ic
#: 05060100.xhp
@@ -22757,7 +22757,7 @@ msgctxt ""
"hd_id3148489\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05120400.xhp\">Insert Columns/Rows</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/05120400.xhp\">Spalten/Zeilen einfügen</link></variable>"
#. mB89i
#: 05120400.xhp
@@ -22766,7 +22766,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "<variable id=\"einfuegentext\">Inserts a row or column into the table. This command is only available when the cursor is in a table. </variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegentext\">Fügt eine Zeile oder Spalte in die Tabelle ein. Dieser Befehl ist nur verfügbar, wenn sich der Cursor in einer Tabelle befindet.</variable>"
#. Bphk7
#: 05120400.xhp
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Die direkte Formatierung überschreibt alle Formatierungen, die von einer Zeichenvorlage stammen. Um die direkte Formatierung von einer Auswahl zu entfernen, wählen Sie <menuitem>Format – Direkte Formatierung löschen</menuitem> (alternativ: <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>[Befehl</keycode></caseinline><defaultinline><keycode>[Strg</keycode></defaultinline></switchinline><keycode>+M]</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Beachten Sie den Bereich <emph>Enthält</emph> im Register »Verwalten«, um die Eigenschaften der Zeichenvorlage zu sehen."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
@@ -27671,7 +27671,7 @@ msgctxt ""
"par_id921693534308719\n"
"help.text"
msgid "<link href=\"text/shared/menu/style_menu.xhp\">Styles menu</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/menu/style_menu.xhp\">Menü „Formatvorlagen“</link>"
#. PDPrT
#: HeadingRowsRepeat.xhp
@@ -29174,7 +29174,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the New dialog to select a template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Öffnet den Dialog „Neu“, um eine Dokumentvorlage auszuwählen.</ahelp>"
#. gX5EY
#: mailmerge01.xhp
@@ -32360,7 +32360,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paragraph Signature"
-msgstr ""
+msgstr "Absatzsignatur"
#. gRHvt
#: paragraph_signature.xhp
@@ -32369,7 +32369,7 @@ msgctxt ""
"bm_id121713380761462\n"
"help.text"
msgid "<bookmark_value>paragraph signature</bookmark_value> <bookmark_value>insert;paragraph signature</bookmark_value> <bookmark_value>paragraph signature;inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Absatzsignatur</bookmark_value><bookmark_value>Einfügen; Absatzsignatur</bookmark_value><bookmark_value>Absatzsignatur; Einfügen</bookmark_value>"
#. qctbD
#: paragraph_signature.xhp
@@ -32378,7 +32378,7 @@ msgctxt ""
"hd_id881713200146819\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Paragraph Signature</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Absatzsignatur</link></variable>"
#. tkAgS
#: paragraph_signature.xhp
@@ -32387,7 +32387,7 @@ msgctxt ""
"par_id921713200146822\n"
"help.text"
msgid "Adds a digital signature to the end of any paragraph. You must have a digital certificate to sign a paragraph."
-msgstr ""
+msgstr "Fügt am Ende eines Absatzes eine digitale Signatur hinzu. Zum Signieren eines Absatzes benötigen Sie ein digitales Zertifikat."
#. 7ECor
#: paragraph_signature.xhp
@@ -32396,7 +32396,7 @@ msgctxt ""
"par_id131713363687715\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Einfügen – Feldbefehl – Weitere Feldbefehle… – Register: Dokument</menuitem>, wählen Sie <menuitem>Absatzsignatur</menuitem> im Feld <menuitem>Typ</menuitem> und klicken Sie auf <menuitem>Einfügen</menuitem>."
#. zNy5w
#: paragraph_signature.xhp
@@ -32405,7 +32405,7 @@ msgctxt ""
"par_id11713367261401\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Einfügen – Feldbefehl – Weitere Feldbefehle… – Register: Dokument</menuitem>, wählen Sie <menuitem>Absatzsignatur</menuitem> im Feld <menuitem>Typ</menuitem> und klicken Sie auf <menuitem>Einfügen</menuitem>."
#. 7HoLm
#: paragraph_signature.xhp
@@ -32414,7 +32414,7 @@ msgctxt ""
"par_id271713381238721\n"
"help.text"
msgid "Choose <menuitem>Home - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Wählen Sie <menuitem>Start – Feldbefehl – Weitere Feldbefehle… – Register: Dokument</menuitem>, wählen Sie <menuitem>Absatzsignatur</menuitem> im Feld <menuitem>Typ</menuitem> und klicken Sie auf <menuitem>Einfügen</menuitem>."
#. dwYB5
#: paragraph_signature.xhp
@@ -32423,7 +32423,7 @@ msgctxt ""
"par_id81713381120150\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode> and choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>[Befehl</keycode></caseinline><defaultinline><keycode>[Strg</keycode></defaultinline></switchinline><keycode>+F2]</keycode>, wählen Sie <menuitem>Absatzsignatur</menuitem> im Feld <menuitem>Typ</menuitem> und klicken Sie auf <menuitem>Einfügen</menuitem>."
#. hzye6
#: paragraph_signature.xhp
@@ -32432,7 +32432,7 @@ msgctxt ""
"par_id781713200328847\n"
"help.text"
msgid "A paragraph signature includes meta-data for the user who created the signature and the date the signature was created. Either <emph>Valid</emph> or <emph>Invalid</emph> is displayed as text at the end of a paragraph signature. By default, it displays <emph>Valid</emph>. If the paragraph is modified in any way after the paragraph signature is added, the signature changes to <emph>Invalid</emph>."
-msgstr ""
+msgstr "Eine Absatzsignatur enthält Metadaten über den Benutzer, der die Signatur erstellt hat, und das Datum, an dem die Signatur erstellt wurde. Am Ende einer Absatzsignatur wird entweder <emph>Gültig</emph> oder <emph>Ungültig</emph> als Text angezeigt. Standardmäßig wird <emph>Gültig</emph> angezeigt. Wenn der Absatz nach dem Hinzufügen der Absatzsignatur in irgendeiner Weise geändert wird, ändert sich die Signatur in <emph>Ungültig</emph>."
#. M8sFC
#: paragraph_signature.xhp
@@ -32441,7 +32441,7 @@ msgctxt ""
"par_id11713381369787\n"
"help.text"
msgid "Upon saving a document, any <emph>Invalid</emph> paragraph signatures are automatically deleted."
-msgstr ""
+msgstr "Beim Speichern eines Dokuments werden alle <emph>ungültigen</emph> Absatzsignaturen automatisch gelöscht."
#. YuhXV
#: paragraph_signature.xhp
@@ -32450,7 +32450,7 @@ msgctxt ""
"par_id721713200319243\n"
"help.text"
msgid "A paragraph signature will indicate whether or not a particular paragraph has been modified at any time after the signature was inserted. Multiple paragraph signatures can be added, and each signature is independent from each other."
-msgstr ""
+msgstr "Eine Absatzsignatur gibt an, ob ein bestimmter Absatz nach dem Einfügen der Signatur geändert wurde oder nicht. Es können mehrere Absatzsignaturen hinzugefügt werden und jede Signatur ist unabhängig von den anderen."
#. pY7M5
#: paragraph_signature.xhp
@@ -32459,7 +32459,7 @@ msgctxt ""
"hd_id351713200369156\n"
"help.text"
msgid "To Insert a Paragraph Signature"
-msgstr ""
+msgstr "Um eine Absatzsignatur einzufügen"
#. QooWx
#: paragraph_signature.xhp
@@ -32468,7 +32468,7 @@ msgctxt ""
"par_id271713363489589\n"
"help.text"
msgid "After navigating to Paragraph Signature in the More Fields dialog, click Insert to open the Select Certificate dialog."
-msgstr ""
+msgstr "Navigieren Sie im Dialog „Feldbefehle“ zu „Absatzsignatur“ und klicken Sie auf „Einfügen“, um den Dialog „Zertifikat auswählen“ zu öffnen."
#. AnEqV
#: paragraph_signature.xhp
@@ -32477,7 +32477,7 @@ msgctxt ""
"par_id81713200406731\n"
"help.text"
msgid "A paragraph signature will always be inserted at the end of the currently selected paragraph. If the text cursor is not currently located within a paragraph of text, the Select Certificate dialog will not open."
-msgstr ""
+msgstr "Eine Absatzsignatur wird immer am Ende des aktuell ausgewählten Absatzes eingefügt. Wenn sich der Textcursor nicht in einem Textabsatz befindet, wird der Dialog „Zertifikat auswählen“ nicht geöffnet."
#. SnJga
#: paragraph_signature.xhp
@@ -32486,7 +32486,7 @@ msgctxt ""
"par_id471713368898713\n"
"help.text"
msgid "The Select Certificate dialog lists any of your digital certificates that are available for use. Choose the desired certificate and select <emph>Sign</emph> to insert a paragraph signature using the chosen digital certificate."
-msgstr ""
+msgstr "Im Dialog „Zertifikat auswählen“ werden alle zur Verwendung verfügbaren digitalen Zertifikate aufgelistet. Wählen Sie das gewünschte Zertifikat aus und klicken Sie auf <emph>Signieren</emph>, um eine Absatzsignatur mit dem ausgewählten digitalen Zertifikat einzufügen."
#. UXCCL
#: paragraph_signature.xhp
@@ -32495,7 +32495,7 @@ msgctxt ""
"par_id581713367684220\n"
"help.text"
msgid "You must have a digital certificate in order to begin <link href=\"text/shared/guide/digitalsign_send.xhp\">Applying Digital Signatures</link>."
-msgstr ""
+msgstr "Sie müssen über ein digitales Zertifikat verfügen, um mit dem <link href=\"text/shared/guide/digitalsign_send.xhp\">Anwenden digitaler Signaturen</link> beginnen zu können."
#. o5ZPq
#: protectdocument.xhp
diff --git a/source/de/helpcontent2/source/text/swriter/guide.po b/source/de/helpcontent2/source/text/swriter/guide.po
index ac3c38fc8b3..8d4dab1489b 100644
--- a/source/de/helpcontent2/source/text/swriter/guide.po
+++ b/source/de/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-09 09:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/de/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565411835.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Klicken Sie in der Liste der Seitenvorlagen mit rechts auf \"Linke Seite\" und wählen Sie <emph>Ändern</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klicken Sie auf das Register <emph>Verwalten</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Sie können in Ihrem Dokument auf unterschiedlichen Seiten unterschiedliche Kopf- und Fußzeilen verwenden, vorausgesetzt die Seiten verwenden unterschiedliche Seitenvorlagen. $[officename] beinhaltet mehrere vordefinierte Seitenvorlagen wie beispielsweise <emph>Erste Seite</emph>, <emph>Linke Seite</emph> und <emph>Rechte Seite</emph>; Sie können aber auch eigene Seitenvorlagen erstellen."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Sie können das gespiegelte Seitenlayout auch verwenden, wenn Sie einer Seitenvorlage mit unterschiedlichen inneren und äußeren Seitenrändern eine Kopfzeile hinzufügen möchten. Um diese Option auf eine Seitenvorlage anzuwenden, wählen Sie <item type=\"menuitem\">Format – Seitenvorlage…</item> – Register: <item type=\"menuitem\">Seite</item> – Bereich: <item type=\"menuitem\">Layout-Einstellungen</item> und wählen im Feld <item type=\"menuitem\">Seitenlayout</item> \"Gespiegelt\" aus."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klicken Sie mit rechts in der Liste der Seitenvorlagen auf \"Rechte Seite\" und wählen Sie <emph>Ändern…</emph>"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Im Dialog <item type=\"menuitem\">Seitenvorlagen</item> klicken Sie auf das Register <item type=\"menuitem\">Kopfzeile</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Wählen Sie <item type=\"menuitem\">Kopfzeile einschalten</item> und klicken Sie auf das Register <item type=\"menuitem\">Verwalten</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Wählen Sie aus der Auswahlliste <item type=\"menuitem\">Folgevorlage</item> \"Linke Seite\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klicken Sie mit rechts in den <emph>Formatvorlagen</emph> in der Liste der Seitenvorlagen auf \"Linke Seite\" und wählen Sie <emph>Ändern…</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Im Dialog <item type=\"menuitem\">Seitenvorlagen</item> klicken Sie auf das Register <item type=\"menuitem\">Kopfzeile</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Wählen Sie <item type=\"menuitem\">Kopfzeile einschalten</item> und klicken Sie auf das Register <item type=\"menuitem\">Verwalten</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Wählen Sie aus der Auswahlliste <item type=\"menuitem\">Folgevorlage</item> \"Rechte Seite\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Klicken Sie auf <emph>Neu</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Geben Sie auf dem Register <emph>Verwalten</emph> für die Seitenvorlage einen Namen in das Feld <emph>Name</emph> ein."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Wählen Sie <emph>Seitenumbruch</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Im Feld <item type=\"menuitem\">Vorlagen</item> wählen Sie eine Seitenvorlage mit dem gewünschten Seitenhintergrund."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,14 +11860,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Ein <emph>automatischer Seitenumbruch</emph> befindet sich am Ende einer Seite, wenn die Seitenvorlagen eine andere \"Folgevorlage\" aufweist."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Beispielsweise verfügt die Seitenvorlage „Erste Seite“ über die Seitenvorlage „Standard“ als Folgevorlage. Um dies anzuzeigen, drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>[Befehl+T]</keycode></caseinline><defaultinline><keycode>[F11]</keycode></defaultinline></switchinline>, um den Bereich <menuitem>Formatvorlagen</menuitem> der Seitenleiste zu öffnen. Klicken Sie auf das Symbol <menuitem>Seitenvorlagen</menuitem> und anschließend mit der rechten Maustaste auf den Eintrag „Erste Seite“. Wählen Sie im Kontextmenü <menuitem>Vorlage bearbeiten…</menuitem>. Auf dem Register <menuitem>Verwaltung</menuitem> können Sie die „Folgevorlage“ sehen."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Klicken Sie mit der rechten Maustaste auf eine Seitenvorlage und wählen Sie <emph>Neu</emph>. Die neue Seitenvorlage übernimmt die Einstellungen der ursprünglichen."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Geben Sie auf dem Register <emph>Verwalten</emph> einen Namen für die Seitenvorlage in das Feld <emph>Name</emph> ein; beispielsweise \"Meine Querformatvorlage\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Seitenvorlagen für eine einzelne Seite"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Eine Seitenvorlage kann so definiert werden, dass sie nur eine Seite umfasst. Die Seitenvorlage „Erste Seite“ ist ein Beispiel. Sie legen diese Eigenschaft fest, indem Sie unter <menuitem>Format – Seitenvorlage… – Register: Verwalten</menuitem> eine andere Seitenvorlage als „Folgevorlage“ definieren."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Den Geltungsbereich für eine Seitenvorlage festlegen"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Die Seitenvorlage \"Standard\" hat keine andere \"Folgevorlage\" im Register unter <menuitem>Format – Seitenvorlage… – Register: Verwalten</menuitem> festgelegt. Stattdessen ist die \"Folgevorlage\" auch auf \"Standard\" gesetzt. Alle Seitenvorlagen, denen dieselbe Folgevorlage folgt, können mehrere Seiten umfassen. Die vordere und hintere Abgrenzung des Seitenvorlagenbereichs wird durch \"Seitenumbrüche mit Vorlagen\" definiert. Alle Seiten zwischen zwei beliebigen \"Seitenumbrüchen mit Vorlagen\" verwenden dieselbe Seitenvorlage."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Klicken Sie auf <emph>Neu</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Geben Sie auf dem Register <emph>Verwalten</emph> einen Namen in das Feld <emph>Name</emph> ein."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
index bb259ea932a..a048b937803 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-06 06:40+0000\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565256511.000000\n"
#. W5ukN
@@ -35616,7 +35616,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No Break"
-msgstr ""
+msgstr "Kein Umbruch"
#. ngTBv
#: WriterCommands.xcu
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index c0079982f33..88cd02a990a 100644
--- a/source/de/sc/messages.po
+++ b/source/de/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 14:28+0000\n"
"Last-Translator: Annabelle Wübbelsmann <translowl@web.de>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/de/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565592942.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Übereinstimmungsmodus"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Genaue Übereinstimmung. Gibt #N/A zurück, wenn keine Übereinstimmung vorliegt. (Standard)\n"
-"-1 – Genaue Übereinstimmung oder das nächstkleinere Element.\n"
-"1 – Genaue Übereinstimmung oder das nächstgrößere Element.\n"
-"2 – Übereinstimmung mit Platzhalter oder regulärem Ausdruck."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Übereinstimmungsmodus"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Genaue Übereinstimmung. Gibt #N/A zurück, wenn keine Übereinstimmung vorliegt. (Standard)\n"
-"-1 – Genaue Übereinstimmung oder das nächstkleinere Element.\n"
-"1 – Genaue Übereinstimmung oder das nächstgrößere Element.\n"
-"2 – Übereinstimmung mit Platzhalter oder regulärem Ausdruck."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Allgemein"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linie"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Fläche"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Schatten"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparenz"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Schriftart"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Einzüge und Abstände"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Text"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Lauftext"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Bemaßung"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Ausrichtung"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatische Typografie"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatoren"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Hervorhebung"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Löschen"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Keine Umrandung"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle Umrandungen"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Äußere Umrandungen"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Dicke äußere Umrandung"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Dicke untere Umrandung"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Doppelte untere Umrandung"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Obere und doppelte untere Umrandung"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Obere und doppelte untere Umrandung"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Linke Umrandung"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Rechte Umrandung"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Obere Umrandung"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Untere Umrandung"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal nach oben laufende Umrandung"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal nach unten laufende Umrandung"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Obere und untere Umrandung"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Linke und rechte Umrandung"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Zellen formatieren"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Zahlen"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Schrift"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Ausrichtung"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatische Typografie"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Umrandung"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Hintergrund"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Zellschutz"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Seitenvorlage"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Allgemein"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Seite"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Umrandung"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Hintergrund"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Kopfzeile"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Fußzeile"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Tabelle"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Zellvorlage"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Allgemein"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Zahlen"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Schrift"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Ausrichtung"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatische Typografie"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Umrandung"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Hintergrund"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Zellschutz"
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index bd25acf7dd0..a8ebee30049 100644
--- a/source/de/sd/messages.po
+++ b/source/de/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/de/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Allgemein"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linie"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Fläche"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Schatten"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparenz"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Schriftart"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Einzüge und Abstände"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Lauftext"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Bemaßung"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Verbinder"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Ausrichtung"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatische Typografie"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatoren"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Hervorhebung"
diff --git a/source/de/sfx2/messages.po b/source/de/sfx2/messages.po
index e0a9c348b34..dd5ac2d3403 100644
--- a/source/de/sfx2/messages.po
+++ b/source/de/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: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-06 06:40+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/de/>\n"
"Language: de\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560714585.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makros sind aufgrund der Makrosicherheitseinstellungen deaktiviert."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makros sind signiert, aber das Dokument (das Dokumentereignisse enthält) ist nicht signiert."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Makros anzeigen"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Sicherheitsoptionen anzeigen"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Ereignisse anzeigen"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grau elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bienenkorb"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauer Verlauf"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaupausenpläne"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gelbe Idee"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Wald"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frisch"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lichter"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Wachsende Freiheit"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblau"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Stift"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavier"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fortschritt"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sonnenuntergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Traditionell"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Lebendig"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resümee"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderner Geschäftsbrief, serifenlos"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderner Geschäftsbrief, mit Serifen"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitenkarte, mit Logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Einfach"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Vereinfachtes Chinesisch, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japanisch, normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Entfernen"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alle löschen"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Kennwortlänge"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Das Kennwort, das Sie eingegeben haben, verursacht Kompatibilitätsprobleme. Bitte geben Sie ein Kennwort ein, dass kürzer als 52 Bytes oder länger als 55 Bytes ist."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "[%{key}+Klick], um folgenden Hyperlink zu öffnen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klicken, um den Hyperlink zu öffnen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(verwendet von: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Textdokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Tabellendokument"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Präsentation"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Zeichnung"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Zuletzt verwendet"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Keine zuletzt verwendeteten Zeichen"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Alle Dokumentvorlagen auf Standard zurücksetzen"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Textdokumentvorlage auf Standard zurücksetzen"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Tabellendokumentvorlage auf Standard zurücksetzen"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Präsentationsdokumentvorlage auf Standard zurücksetzen"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Zeichnungsdokumentvorlage auf Standard zurücksetzen"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importieren…"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Erweiterungen…"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Umbenennen"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategorie umbenennen"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Neue Kategorie…"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-Objektinspektor"
@@ -3081,19 +3087,19 @@ msgstr "Mitwirkende(r)"
#: sfx2/uiconfig/ui/descriptioninfopage.ui:171
msgctxt "descriptioninfopage|type_coverage"
msgid "Coverage"
-msgstr "Berichterstattung"
+msgstr "Eingrenzung"
#. FDnBu
#: sfx2/uiconfig/ui/descriptioninfopage.ui:172
msgctxt "descriptioninfopage|type_identifier"
msgid "Identifier"
-msgstr "Bezeichner"
+msgstr "Kennung"
#. iTZFA
#: sfx2/uiconfig/ui/descriptioninfopage.ui:173
msgctxt "descriptioninfopage|type_publisher"
msgid "Publisher"
-msgstr "Herausgeber"
+msgstr "Herausgeber(in)"
#. c5fHP
#: sfx2/uiconfig/ui/descriptioninfopage.ui:174
diff --git a/source/de/svtools/messages.po b/source/de/svtools/messages.po
index 24a44e8090d..3fbf43591fd 100644
--- a/source/de/svtools/messages.po
+++ b/source/de/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-22 01:45+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/de/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559619492.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Die Netzwerkverbindung zu $(ARG1) konnte nicht hergestellt werden."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Serverfehlermeldung: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Serverfehlermeldung: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Ein allgemeiner Internet-Fehler ist aufgetreten."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Die angeforderten Internetdaten liegen nicht im Zwischenspeicher und können nicht übertragen werden, da der Onlinemodus nicht aktiv ist."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Der Inhalt konnte nicht erzeugt werden."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Der Dateiname ist für das Ziel-Dateisystem zu lang."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Die Eingabesyntax ist ungültig."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Bitte speichern Sie das Dokument in einem %PRODUCTNAME %PRODUCTVERSION Dateiformat."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Die maximale Anzahl von Dokumenten, die gleichzeitig geöffnet sein können, ist erreicht. Sie müssen ein oder mehrere Dokumente schließen, bevor Sie ein neues Dokument öffnen können."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Sicherungskopie konnte nicht erstellt werden."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ungültige Datenlänge."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funktion unmöglich: Pfad enthält aktuelles Verzeichnis."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funktion unmöglich: Nicht dasselbe Gerät (Laufwerk)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Gerät (Laufwerk) nicht bereit."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Falsche Prüfsumme."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funktion unmöglich: schreibgeschützt."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Heben Sie die Freigabe zunächst auf."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Dateiformatfehler an Position $(ARG1)(Zeile,Spalte) entdeckt."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Der Filter für dieses Dateiformat ist in der Konfiguration deaktiviert. Bitte kontaktieren Sie Ihren Systemadministrator."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Allgemeiner OLE-Fehler."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Die Aktion kann im momentanen Objekt-Zustand nicht ausgeführt werden."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Das Objekt unterstützt keine Aktionen."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Das Objekt unterstützt diese Aktion nicht."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) beim Aktivieren des Objekts"
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index c5efab2cea6..5d17e9bfe89 100644
--- a/source/de/svx/messages.po
+++ b/source/de/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-10 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/de/>\n"
"Language: de\n"
@@ -8113,7 +8113,7 @@ msgstr "Lateinisch"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Lateinisch-1, Ergänzung"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8149,7 +8149,7 @@ msgstr "Kombinierende diakritische Zeichen"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Griechisch und Koptisch"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8749,7 +8749,7 @@ msgstr "Cherokee-Sprache"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9151,7 +9151,7 @@ msgstr "Samaritanisch"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner, erweitert"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10003,7 +10003,7 @@ msgstr "Toto"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Vereinheitlichte Silbenzeichen kanadischer Ureinwohner, Erweiterung A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Keine Umrandung"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Nur äußere Umrandung"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Äußere Umrandung und horizontale Linien"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Äußere Umrandung und alle inneren Linien"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Äußere Umrandung und vertikale Linien"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Äußere Umrandung, ohne innere Linien zu ändern"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Nur diagonale Linien"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonal abwärts-gerichtete Linien"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonal aufwärts-gerichtete Linien"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Gekreuzte Linien"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Alle vier Ränder"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Nur linken und rechten Rand"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Nur oberen und unteren Rand"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Oberen und unteren Rand sowie alle horizontalen Linien"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Nur linker Rand"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Nur rechter Rand"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Nur oberer Rand"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Nur unterer Rand"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Oberen und unteren Rand sowie alle inneren Linien"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Linken und rechten Rand sowie alle inneren Linien"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Aus Favoriten entfernen"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Fehlendes Zeichen"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Zu Favoriten hinzufügen"
@@ -10281,19 +10331,19 @@ msgstr "Zu Favoriten hinzufügen"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Prüfung der Grafikgröße"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bild \"%NAME%\" hat zu wenig Pixel für die aktuelle Größe (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bild \"%NAME%\" hat zu viele Pixel für die aktuelle Größe (%DPIX% x %DPIY% DPI)"
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 50432163f43..94af37e015a 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-10 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: German <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/de/>\n"
"Language: de\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Aufzählung 5 Fortsetzung"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Kopf- und Fußzeile"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,41 +10604,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabelle"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatierung"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Pseudobeschriftung"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nummerierung"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Weitere"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Klicken zum Aktualisieren…"
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Rahmen"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Position und Größe"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Optionen"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Umlauf"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Umrandung"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Fläche"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Spalten"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Setzt alle Änderungen, die im angezeigten Register vorgenommen wurden, auf die Einstellungen zurück, die beim Öffnen dieses Dialogs vorhanden waren."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Allgemein"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Schrift"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Position"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisches Layout"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Hervorhebung"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Umrandung"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Listenvorlage"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Benutzerdefinierte Vorlagen benennen und ausblenden"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Allgemein"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Wählen Sie einen vordefinierten Aufzählungstyp"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Ungeordnet"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Wählen Sie eine vordefinierte geordnete Liste"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Geordnet"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Wählen Sie ein vordefiniertes Gliederungsformat"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Gliederung"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Wählen Sie ein vordefiniertes grafisches Aufzählungszeichen"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Bild"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Ändern Sie Einzug, Abstand und Ausrichtung für Zeilennummern oder Symbole"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Position"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Gestalten Sie Ihr eigenes Listen- oder Gliederungsformat"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Anpassen"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Absatzvorlage"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Allgemein"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Einzüge und Abstände"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Ausrichtung"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Textfluss"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatische Typografie"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Schrift"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Schrifteffekte"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Position"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisches Layout"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Hervorhebung"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatoren"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Initialen"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Fläche"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Umrandung"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Bedingung"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Gliederungsebene, Listenvorlage und Zeilennummerierung für Absatzvorlage einstellen."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Gliederung & Liste"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Rahmenvorlage"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Allgemein"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Typ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Optionen"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Umlauf"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Fläche"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Umrandung"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Spalten"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Allgemein"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Seite"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Hintergrund"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Kopfzeile"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Fußzeile"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Umrandung"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Spalten"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fußnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Textraster"
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index c8cbc11e7f0..832dd99555f 100644
--- a/source/dgo/cui/messages.po
+++ b/source/dgo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2579,10 +2579,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index 47770114e08..f1603cf5562 100644
--- a/source/dgo/sc/messages.po
+++ b/source/dgo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14581,14 +14581,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14815,14 +14816,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23803,91 +23805,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24506,103 +24508,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "कोई बाडर नेईं"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24644,53 +24549,53 @@ msgid "Format Cells"
msgstr "सैल्ल दी रूप-रचना करो"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "संख्या"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फांट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "समायोजन"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "बाडर "
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
#, fuzzy
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "पछैकड़"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28943,46 +28848,46 @@ msgid "Page Style"
msgstr "सफा शैली "
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "सफे"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "बाडर "
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
#, fuzzy
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "पछैकड़"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "सिरालेख "
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "पैरलेख "
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "शीट "
@@ -29027,59 +28932,59 @@ msgid "Cell Style"
msgstr "सैल्ल शैलियां "
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "संख्या"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फांट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "समायोजन"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "बाडर "
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
#, fuzzy
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "पछैकड़"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index 8b6d558e68b..d99a9c91cf6 100644
--- a/source/dgo/sd/messages.po
+++ b/source/dgo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9846,98 +9846,98 @@ msgid "_Standard"
msgstr "मानक"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "लाइन"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "खेतर"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "गूढ़ा- फिक्काकरण"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पारदर्शिता"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फांट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "इंडैंट ते अंतरण"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "इबारत"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "इबारत सजीवीकरण"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "आयामीकरण"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "जोड़क"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "समायोजन"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "टैब"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/dgo/sfx2/messages.po b/source/dgo/sfx2/messages.po
index 6e77aad192a..28bbef26291 100644
--- a/source/dgo/sfx2/messages.po
+++ b/source/dgo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1618,376 +1618,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाओ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/dgo/svtools/messages.po b/source/dgo/svtools/messages.po
index ab78b436cb1..9a92fa9e252 100644
--- a/source/dgo/svtools/messages.po
+++ b/source/dgo/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2396,16 +2396,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2413,37 +2421,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "विशे-सूची नेईं सरजोई सकी. "
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "लक्ष्य फाइल सिस्टम फाइल नांऽ बड़ा मता लम्मा ऐ."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "इनपुट वाक्य-विन्यास अमान्य ऐ. "
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2451,19 +2459,19 @@ msgid ""
msgstr "इस दस्तावेज च खासियतां होंदियां न,जेह्‌ड़ियां चुनी दी रूप-रचना च नेईं बची सकदियां. किरपा करियै दस्तावेज गी %PRODUCTNAME %PRODUCTVERSION फाइल रूप-रचना च बचाओ. "
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr " इक समें पर खु'ल्ली सकने आह्‌ले दस्तावेजें दी बद्धोबद्ध संख्या होई गेई ऐ.इक नमां दस्तावेज खोह्‌ल्ली सकने शा पैह्‌लें तुसें इक जां मते दस्तावेज बंद करने दी लोड़ ऐ."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "बैक-अप कापी नेईं बनाई जाई सकी."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2476,43 +2484,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "अमान्य डेटा लम्माई "
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "फंक्शन मुमकन नेईं: रस्ते च चालू डरैक्टरी ऐ. "
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "फंक्शन मुमकन नेईं : डिवाइस (ड्राइव) इक जनेही नेईं. "
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "डिवाइस (ड्राइव) त्यार नेईं "
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "फंक्शन मुमकन नेईं- लखाई संरक्षत "
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2520,47 +2528,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सधारण OLE गल्ती "
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "चीजा दी चालू स्थिति च अमल पर अमल नेईं होई सकदा . "
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "चीज कुसै बी अमल दा समर्थन नेईं करदी. "
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "चीज इस अमल दा समर्थन नेईं करदी. "
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/dgo/svx/messages.po b/source/dgo/svx/messages.po
index 926f8ab3987..ee4d4503ce7 100644
--- a/source/dgo/svx/messages.po
+++ b/source/dgo/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: dgo (generated) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dgo/>\n"
@@ -10307,134 +10307,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10443,19 +10493,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 04c57324e8f..8f5a88acc9f 100644
--- a/source/dgo/sw/messages.po
+++ b/source/dgo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3067,9 +3067,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10851,38 +10851,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16890,59 +16896,59 @@ msgid "Frame"
msgstr "चगाठ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "विकल्प(बहु.) "
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "लपेट (~k)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरलिंक "
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "बाडर (बहु.)किनारा"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
#, fuzzy
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "स्तंभ "
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मैक्रो"
@@ -29807,44 +29813,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फांट "
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "स्थिति "
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एशियन खाका"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "उजागरीकरण "
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "बाडर (बहु.)"
@@ -29856,85 +29862,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "आउट-लाइन"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "बिंब"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "स्थिति "
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Customise"
@@ -29946,113 +29952,113 @@ msgid "Paragraph Style"
msgstr "पैह्‌रा शैली"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "इंडैंट ते अंतरण"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "सेधीकरण"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "पाठ बहाव"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फांट "
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "स्थिति "
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एशियन खाका"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "उजागरीकरण "
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टैब(बहु.) "
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "पैह्‌रे दे शुरुआती बड्डे अक्खर"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "बाडर (बहु.)"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "हालत"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30064,59 +30070,59 @@ msgid "Frame Style"
msgstr "चगाठ शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "किस्म "
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "विकल्प(बहु.) "
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "लपेट (~k)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "बाडर (बहु.)"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
#, fuzzy
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "स्तंभ "
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मैक्रो"
@@ -30134,65 +30140,65 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
#, fuzzy
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पेजर "
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "सिरालेख"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "पैरालेख"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "बाडर (बहु.)"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
#, fuzzy
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "स्तंभ "
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "फुटनोट"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "इबारत ग्रिड"
diff --git a/source/dsb/cui/messages.po b/source/dsb/cui/messages.po
index c8222a003a1..1c805872c60 100644
--- a/source/dsb/cui/messages.po
+++ b/source/dsb/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-25 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-22 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/dsb/>\n"
"Language: dsb\n"
@@ -2562,11 +2562,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Wócyńśo w CALC CSV-dataju ako nowu tabelu w aktualnej tabelowej kalkulaciji pśez „Tabela ▸ Tabelu z dataje zasajźiś“."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Móžośo ze standardnymi formatěrowańskimi atributami dalej pisaś, za tym až sćo nałožył tucne, kursiwny abo pódšmarnjone formatěrowanje, gaž %MOD1+Umsch+X tłocyśo."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16460,13 +16460,13 @@ msgstr "minuty"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Město togo dokument awtomatiski składowaś"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Pódawa, až běrowy paket změnjony dokument sam składujo město togo, aby nachylnu wersiju awtomatiskego wótnowjenja napórał. Wužywa samski casowy interwal ako awtomatiske wótnowjenje."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/dsb/helpcontent2/source/text/shared/00.po b/source/dsb/helpcontent2/source/text/shared/00.po
index b12efb2431c..58433e973ec 100644
--- a/source/dsb/helpcontent2/source/text/shared/00.po
+++ b/source/dsb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/dsb/>\n"
"Language: dsb\n"
@@ -609,14 +609,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Na nadrědowanu pśedłogu slědk stajiś"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Gódnoty za toś ten rejtarik se na wótpowědne gódnoty pśedłogi stajaju, kótaraž jo w rejtariku „Zastojaś“ pód „Zakład“ pódane. We wšymi padami, teke jolic jo w „Zakład “ zapisk „- Žeden -“ wubrany, se aktualne gódnoty rejtarikow we „Wopśimujo“ wótwónoźuju."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11479,7 +11479,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Klikniśo w rejtariku <menuitem>Rědy</menuitem> na tłocašk <menuitem>Nastajenja…</menuitem> a wócyńśo pón <menuitem>Zacytaś/Składowaś – Powšykne</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13740,68 +13740,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Wubjeŕśo <emph>Format – Cele… – rejtarik: Slězyna</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Format – Pśedłoga boka… – rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Pśedłogi – Pśedłogu wobźěłaś… – rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Pśedłogi – Pśedłogi zastojaś</menuitem> – wócyńśo kontekstowy meni zapiska a wubjeŕśo <menuitem>Nowy… /Pśedłogu wobźěłaś…– rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Wubjeŕśo <menuitem>Format – Pśedłoga boka… – rejtarik: Zastojaś</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Pśedłogi – Pśedłogi zastojaś</menuitem> – wócyńśo kontekstowy meni zapiska a wubjeŕśo <menuitem>Nowy…/Pśedłogu wobźěłaś… – rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Wubjeŕśo <menuitem>Format – Pśedłogi – Pśedłogu wobźěłaś… – rejtarik: Zastojaś</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Format – Pśedłogi – Pśedłogi zastojaś</menuitem> – wócyńśo kontekstowy meni zapiska a wubjeŕśo <menuitem>Nowy… /Pśedłogu wobźěłaś… – rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13812,14 +13812,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Wubjeŕśo <menuitem>Folija – Kakosći folije… – rejtarik: Bok</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjeŕśo <menuitem>Naglěd – Formatowe pśedłogi</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(cmd ⌘+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> – wócyńśo kontekstowy meni zapiska <menuitem>Nowy…/Pśedłogu wobźěłaś… – rejtarik: Zastojaś</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/dsb/helpcontent2/source/text/shared/01.po b/source/dsb/helpcontent2/source/text/shared/01.po
index 361720a1357..fb83a0bf2c5 100644
--- a/source/dsb/helpcontent2/source/text/shared/01.po
+++ b/source/dsb/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23449,13 +23449,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23467,13 +23467,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/dsb/helpcontent2/source/text/shared/help.po b/source/dsb/helpcontent2/source/text/shared/help.po
index 62afc70fe12..11153e78e55 100644
--- a/source/dsb/helpcontent2/source/text/shared/help.po
+++ b/source/dsb/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-22 09:45+0000\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/dsb/>\n"
"Language: dsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
#. jdDhb
#: browserhelp.xhp
@@ -31,7 +31,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Knigły LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/dsb/helpcontent2/source/text/shared/optionen.po b/source/dsb/helpcontent2/source/text/shared/optionen.po
index 6a3334c977f..67f61d4f61a 100644
--- a/source/dsb/helpcontent2/source/text/shared/optionen.po
+++ b/source/dsb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/dsb/>\n"
"Language: dsb\n"
@@ -931,15 +931,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Město togo dokument awtomatiski składowaś"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9508,7 +9508,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>cele; linije kśidna pokazaś (Calc)</bookmark_value><bookmark_value>ramiki; cele na wobrazowce (Calc)</bookmark_value><bookmark_value>kśidna; linije pokazaś (Calc)</bookmark_value><bookmark_value>barwy; linije kśidna a cele (Calc)</bookmark_value><bookmark_value>łamanja boka; pokazaś (Calc)</bookmark_value><bookmark_value>pomocne linije; pokazaś (Calc)</bookmark_value><bookmark_value>pokazaś; nulowe gódnoty (Calc)</bookmark_value><bookmark_value>nulowe gódnoty; pokazaś (Calc)</bookmark_value><bookmark_value>tabele w tabelowych dokumentach; gódnoty wuzwignuś</bookmark_value><bookmark_value>cele; bźez efekta formatěrowaś (Calc)</bookmark_value><bookmark_value>cele; barwiś (Calc)</bookmark_value><bookmark_value>kokulki; pokazaś (Calc)</bookmark_value><bookmark_value>barwy; wobgranicowanje (Calc)</bookmark_value><bookmark_value>tekstowy woběžk w celach tabelowych dokumentow</bookmark_value><bookmark_value>póśěgi; w barwje pokazaś (Calc)</bookmark_value><bookmark_value>objekty; w tabelowych dokumentach pokazaś</bookmark_value><bookmark_value>wobraze; w Calc pokazaś</bookmark_value><bookmark_value>diagramy; pokazaś (Calc)</bookmark_value><bookmark_value>kresleńske objekty; pokazaś (Calc)</bookmark_value><bookmark_value>smužkowe głowy; pokazaś (Calc)</bookmark_value><bookmark_value>słupowe głowy; pokazaś (Calc)</bookmark_value><bookmark_value>suwańske rědki; pokazaś (Calc)</bookmark_value><bookmark_value>tabelowe rejtariki; pokazaś</bookmark_value><bookmark_value>rejtariki; tabelowe rejtariki pokazaś</bookmark_value><bookmark_value>rozrědowanja; rozrědowańske symbole</bookmark_value><bookmark_value>cele; formulowy indikator w celi</bookmark_value><bookmark_value>cele; formulowy pokaz</bookmark_value><bookmark_value>pokazaś; komentarowe awtorstwo</bookmark_value><bookmark_value>pokazowak; drastwa</bookmark_value><bookmark_value>pokazowak; system</bookmark_value><bookmark_value>wšykne pytaś; pytańske zespominanje pokazaś</bookmark_value><bookmark_value>cele; wuzwignuś</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9625,7 +9625,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Komentarowy indikator</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9661,7 +9661,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Jolic toś ten kontrolny kašćik jo markěrowany, se awtor komentara a datum a cas, gaž jo se komentar napisał, w komentarowem woknje zjawiju, gaž myšku nad komentarom gibjośo."
#. tYLiN
#: 01060100.xhp
@@ -9697,7 +9697,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formulowy indikator</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9751,7 +9751,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Wuzwignjenje słupow/smužkow</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9778,7 +9778,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Celowe wuzwignjenje wobźěłaś</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9805,7 +9805,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Wobrazowa kokulka</alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9832,7 +9832,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Reference w barwje</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9913,7 +9913,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Temowy kursor</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9940,7 +9940,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Systemowy kursor</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10003,7 +10003,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objekty/wobraze"
#. DMhEf
#: 01060100.xhp
@@ -16195,7 +16195,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Wubjeŕśo <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Nastajenja</menuitem></caseinline><defaultinline><menuitem>Rědy – Nastajenja…</menuitem></defaultinline></switchinline><menuitem>– %PRODUCTNAME – Rozšyrjone – Ekspertowu konfiguraciju wócyniś</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16204,7 +16204,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Klikniśo w rejtariku <menuitem>Rědy</menuitem> na tłocašk <menuitem>Nastajenja…</menuitem> a wubjeŕśo pón <menuitem>%PRODUCTNAME – Rozšyrjone – Ekspertowu konfiguraciju wócyniś</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/dsb/helpcontent2/source/text/swriter/01.po b/source/dsb/helpcontent2/source/text/swriter/01.po
index 2c2ee7e91b3..5e335d213df 100644
--- a/source/dsb/helpcontent2/source/text/swriter/01.po
+++ b/source/dsb/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23359,13 +23359,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/dsb/helpcontent2/source/text/swriter/guide.po b/source/dsb/helpcontent2/source/text/swriter/guide.po
index ec39eb99b31..59428de1d5f 100644
--- a/source/dsb/helpcontent2/source/text/swriter/guide.po
+++ b/source/dsb/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4279,13 +4279,13 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
msgstr ""
#. fYHA2
@@ -7087,13 +7087,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7132,31 +7132,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7177,31 +7177,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11425,13 +11425,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11578,13 +11578,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11857,13 +11857,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12181,13 +12181,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12325,13 +12325,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12361,13 +12361,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12496,13 +12496,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/dsb/sc/messages.po b/source/dsb/sc/messages.po
index 8f1ebaa9215..59e6cca0edd 100644
--- a/source/dsb/sc/messages.po
+++ b/source/dsb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565009164.000000\n"
#. kBovX
@@ -14294,19 +14294,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Modus makanja"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Eksaktne wótpowědowanje. Wrośijo #N/A, jolic njedajo wótpowědowanje. (standard).\n"
-"-1 – Eksaktne wótpowědowanje abo pśiducy mjeńšy zapisk.\n"
-"1 – Eksaktne wótpowědowanje abo pśiducy wětšy zapisk.\n"
-"2 – Wótpowědowanje zastupujucego symbola abo regularnego wuraza."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14532,19 +14529,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Modus makanja"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Eksaktne wótpowědowanje. Wrośijo #N/A, jolic njedajo wótpowědowanje. (standard).\n"
-"-1 – Eksaktne wótpowědowanje abo pśiducy mjeńšy zapisk.\n"
-"1 – Eksaktne wótpowědowanje abo pśiducy wětšy zapisk.\n"
-"2 – Wótpowědowanje zastupujucego symbola abo regularnego wuraza."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23259,91 +23253,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Powšykne"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linija"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Wobceŕk"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Wósenjenje"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparenca"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Pismo"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wótkłony"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstowa animacija"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Wótměrjenje"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Wuzwignjenje"
@@ -23942,102 +23936,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Lašowaś"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Žeden ramik"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Wšykne ramiki"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Wenkowne ramiki"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Tłusty wenkowny ramik"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tłusty dolny ramik"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dwójny dolny ramik"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Górny a tłusty dolny ramik"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Górny a dwójny dolny ramik"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Lěwy ramik"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Pšawy ramik"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Górny ramik"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Dolny ramik"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Ramik diagonalnje górjej"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Ramik diagonalnje dołoj"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Górny a dolny ramik"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Lěwy a pšawy ramik"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24075,49 +23973,49 @@ msgid "Format Cells"
msgstr "Cele formatěrowaś"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Licby"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Pismo"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Slězyna"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Celowy šćit"
@@ -28206,43 +28104,43 @@ msgid "Page Style"
msgstr "Pśedłoga boka"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Powšykne"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Bok"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Slězyna"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Głowowa smužka"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Nogowa smužka"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Tabela"
@@ -28284,55 +28182,55 @@ msgid "Cell Style"
msgstr "Celowa pśedłoga"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Powšykne"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Licby"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Pismo"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Slězyna"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Celowy šćit"
diff --git a/source/dsb/sd/messages.po b/source/dsb/sd/messages.po
index 598d8b3c15c..abec83fcd2c 100644
--- a/source/dsb/sd/messages.po
+++ b/source/dsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 15:26+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/dsb/>\n"
@@ -9560,97 +9560,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Powšykne"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Płonina"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Wósenjenje"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparenca"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Pismo"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wótkłony"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstowa animacija"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Wótměrjenje"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Zwězowak"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Wuzwignjenje"
diff --git a/source/dsb/sfx2/messages.po b/source/dsb/sfx2/messages.po
index 9deda54f815..975b39b04bc 100644
--- a/source/dsb/sfx2/messages.po
+++ b/source/dsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-03 15:26+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559597232.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makra su pśez nastajenja makroweje wěstoty znjemóžnjone."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makra su signěrowane, ale dokument (kótaryž dokumentowe tšojenja wopśimujo) njejo signěrowany."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Makra pokazaś"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Wěstotne nastajenja pokazaś"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Tšojenja pokazaś"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Šery elegantny"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Pcołkowy kóš"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Módra kśiwanka"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bomse"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Žołta ideja"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Gólny ptašk"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Fryšnosć"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Rosćeca wólnosć"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnocna módrina"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Pśirodna ilustracija"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Póstup"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Schowanje słyńca"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žywy"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žywjenjoběg"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žywjenjoběg"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodowy list bźez serifow"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodowy list ze serifami"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitna kórtka z logom"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jadnory"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Zjadnorjone chinske normalne"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japańšćina, normalna"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wótwónoźeś"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšykno lašowaś"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dłujkosć gronidła"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Gronidło, kótarež sćo zapódał, problemy za zgromadne źěło zawinujo. Pšosym zapódajśo gronidło, kótarež jo krotše ako 52 bajtow abo dlejše ako 55 bajtow."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-kliknjenje, aby hyperwótkaz wócynił: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikniśo, aby hyperwótkaz wócynił: %(link)"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(wužyty pśez: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Prezentacija"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Kreslanka"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Njedawno wužyty"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Žeden nejnowše znamuška"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Wšykne standardne pśedłogi wótnowiś"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "S~tandardny tekstowy dokument wótnowiś"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Stan~dardnu tabelu wótnowiś"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Standar~dnu prezentaciju wótnowiś"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Standardnu ~kreslanku wótnowiś"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importěrowaś"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Ro~zšyrjenja"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Pśemjeniś"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategoriju pśemjeniś"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nowa kategorija"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Objektowy inspektor UNO"
diff --git a/source/dsb/svtools/messages.po b/source/dsb/svtools/messages.po
index 6284703bf21..057fd85b4c7 100644
--- a/source/dsb/svtools/messages.po
+++ b/source/dsb/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-16 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559381574.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Internetny zwisk z $(ARG1) njedajo se nawězaś."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Serwerowa zmólkowa powěźeńka: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Serwerowa zmólkowa powěźeńka: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Powšykna internetna zmólka jo nastała."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Pominane internetne daty njejsu w pufrowaku k dispoziciji a njedaju se pśenosowaś, dokulaž modus online njejo aktiwěrowany."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Wopśimjeśe njedajo se napóraś."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Datajowe mě jo pśedłujke za celowy datajowy system."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Zapódawańska syntaksa jo njepłaśiwa."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Pšosym składujśo dokument w datajowem formaśe %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Maksimalna licba dokumentow, kótaraž dajo se naraz wócyniś, jo dojśpiła. Musyśo jaden dokument abo někotare dokumenty zacyniś, nježli až móžośo nowy dokument wócyniś."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Wěstotna kopija njedajo se napóraś."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Njepłaśiwa datowa dłujkosć."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija njemóžna: sćažka aktualny zapis njewopśimujo."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija njemóžna: rěd (běgadło) njejo identiski."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Rěd (běgadło) njejo pśigótowany."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Wopacna kontrolna suma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija njemóžna: pśeśiwo pisanjeju šćitany."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Znjemóžniśo nejpjerwjej źěleński modus."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Zmólka datajowego formata na poziciji $(ARG1)(smuža,słup) namakana."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filter za toś ten datajowy format jo znjemóžnjony w konfiguraciji. Pšosym stajśo se ze swójim systemowym administratorom do zwiska."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Powšykna OLE-zmólka."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Akcija njedajo se w aktualnem stawje objekta wuwjasć."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekt akcije njepódpěra."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekt toś tu akciju njepódpěra."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) pśi aktiwěrowanju objekta"
diff --git a/source/dsb/svx/messages.po b/source/dsb/svx/messages.po
index 339d743875d..511cf8884dd 100644
--- a/source/dsb/svx/messages.po
+++ b/source/dsb/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-18 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/dsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559381585.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Žedne ramiki"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Jano wenkowny ramik"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Wenkowny ramik a horiconalne linije"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Wenkowny ramik a wšykne nutśikowne linje"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Wenkowny ramik a wertikalne linije"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Wenkowny ramik bźez změny nutśikownych linijow"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Jano diagonalne linije"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Ramik diagonalnje dołoj"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Ramik diagonalnje górjej"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Pśekśicnjony ramik"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Wšykne styri ramiki"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Jano lěwa a pšawa kšoma"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Jano górny a dolny ramik"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Górna a dolna kšoma a wšykne horicontalne linije"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Jano lěwy ramik"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Jano pšawy ramik"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Jano górny ramik"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Jano dolny ramik"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Górna a dolna kšoma a wšykne nutśikowne linije"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Lěwa a pšawa kšoma a wšykne nutśikowne linije"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Z faworitow wótwónoźeś"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Felujuce znamuško"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Faworitam pśidaś"
@@ -10281,19 +10331,19 @@ msgstr "Faworitam pśidaś"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafikowu wjelikosć pśeglědowaś"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Wobraz „%NAME%“ ma pśemało pikselow za aktualnu wjelikosć (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Wobraz „%NAME%“ ma pśewjele pikselow za aktualnu wjelikosć (%DPIX% x %DPIY% DPI)"
diff --git a/source/dsb/sw/messages.po b/source/dsb/sw/messages.po
index e0d6a5911fb..2180cd4b852 100644
--- a/source/dsb/sw/messages.po
+++ b/source/dsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-18 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Lower Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/dsb/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lisćina 5 pókš."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Głowowa a nogowa smužka"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10618,38 +10618,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabela"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatěrowanje"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperwótkaz"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulěrowane pópisanja"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numerěrowanje"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Dalšne"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Klikniśo, aby aktualizěrował…"
@@ -16450,55 +16456,55 @@ msgid "Frame"
msgstr "Wobłuk"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Pozicija a wjelikosć"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Nastajenja"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Woběg"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperwótkaz"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Płonina"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Słupy"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28895,43 +28901,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Stajśo změny, kótarež sćo pśewjadł how w rejtariku, na nastajenja slědk, kótarež su eksistěrowali, gaž jo se wócynił toś ten dialog."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Powšykne"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Pismo"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Pozicija"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aziske wugótowanje"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Wuzwignjenje"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Ramiki"
@@ -28943,85 +28949,85 @@ msgid "List Style"
msgstr "Lisćinowa pśedłoga"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Swójske pśedłogi pómjeniś a schowaś"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Powšykne"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Wubjeŕśo pśeddefiněrowany naliceński typ"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Nalicenje"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Wubjeŕśo pśeddefiněrowanu numerěrowanu lisćinu"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Numerěrowany"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Wubjeŕśo pśeddefiněrowany rozrědowański format"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Wobceŕ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Wubjeŕśo pśeddefiněrowany grafiski naliceński symbol"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Wobraz"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Změńśo zasunjenje, wótkłon a wusměrjenje za lisćinowe numery abo symbole"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Pozicija"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Wugótujśo swójski lisćinowy abo rozrědowański format"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Pśiměriś"
@@ -29033,109 +29039,109 @@ msgid "Paragraph Style"
msgstr "Wótstawkowa pśedłoga"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Powšykne"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wótkłony"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstowy běg"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Pismo"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Pozicija"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aziske wugótowanje"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Wuzwignjenje"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Iniciale"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Płonina"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Ramiki"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Wuměnjenje"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Nastajśo rozrědowańsku rowninu, lisćinowu pśedłogu a smužkowe numerěrowanje za wótstawkowu pśedłogu."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Rozrědowanje a lisćina"
@@ -29147,55 +29153,55 @@ msgid "Frame Style"
msgstr "Wobłukowa pśedłoga"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Powšykne"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Typ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Nastajenja"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Woběg"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Płonina"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Ramiki"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Słupy"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29213,61 +29219,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Powšykne"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Bok"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Płonina"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Głowowa smužka"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Nogowa smužka"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Ramiki"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Słupy"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nožka"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstowe kśidno"
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index dbb5ae3fcc1..6d3638b3f36 100644
--- a/source/dz/cui/messages.po
+++ b/source/dz/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2581,10 +2581,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 3817dd5dcaf..a94e390d933 100644
--- a/source/dz/helpcontent2/source/text/shared/00.po
+++ b/source/dz/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index 12c2a7087cb..04e39008b39 100644
--- a/source/dz/helpcontent2/source/text/shared/01.po
+++ b/source/dz/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-30 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Dzongkha <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/dz/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">དེ་གི་ཚད་ངོ་མ་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་ཚད་རིས་འདི་ སླར་ལོག་འབདཝ་ཨིན།</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "འགོ་འདྲེན་པ།"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">འགོ་འདྲེན་འཐབ།</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index 01774f356e1..9a1dbec6ad7 100644
--- a/source/dz/helpcontent2/source/text/shared/optionen.po
+++ b/source/dz/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/dz/helpcontent2/source/text/swriter/01.po b/source/dz/helpcontent2/source/text/swriter/01.po
index 9ed3706d64f..b698139732b 100644
--- a/source/dz/helpcontent2/source/text/swriter/01.po
+++ b/source/dz/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/dz/helpcontent2/source/text/swriter/guide.po b/source/dz/helpcontent2/source/text/swriter/guide.po
index 2a95eab0bb1..3c84940e6bf 100644
--- a/source/dz/helpcontent2/source/text/swriter/guide.po
+++ b/source/dz/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་གྱི་ཐོ་ཡིག་དེ་ནང་ལུ་ \"Left Page\" གཡས་-ཨེབ་གཏང་འབད་ དེ་ལས་ <emph>ལེགས་བཅོས་</emph>གདམ་ཁ་རྐྱབས།"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>འགོ་འདྲེན་འཐབ་མི་</emph> མཆོང་ལྡེ་འདི་ཨེབ་གཏང་།"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "ཁྱོད་ཀྱིས་ཁྱོད་རའི་ཡིག་ཆ་ནང་ ཤོག་ལེབ་སོ་སོ་ལུ་ མགོ་ཡིག་དང་མཇུག་ཡིག་སོ་སོ་ཚུ་ ཤོག་ལེབ་ཚུ་གིས་ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་སོ་སོ་ལག་ལེན་འཐབ་པའི་རིང་ལུ་ ལག་ལེན་འཐབ་བཏུབ། $[officename] གིས་ སྔོ་གོང་ངེས་འཛིན་འབད་ཡོད་པའི་ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་ལེ་ཤ་ཅིག་ དཔེར་ན་ <emph>ཤོག་ལེབ་དང་པ་</emph> <emph>གཡོན་གྱི་ཤོག་ལེབ་</emph> དང་ <emph>གཡས་ཀྱི་ཤོག་ལེབ་</emph> བྱིནམ་ཨིན་ ཡང་ན་ཁྱོད་ཀྱིས་སྲོལ་སྒྲིག་ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་ཅིག་གསར་བསྐྲུན་འབད་བཏུབ།"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་ཚུ་གི་ཐོ་ཡིག་འདི་ནང་ \"Right Page\" གཡས་ཨེབ་གཏང་འབད་ དེ་ལས་ <emph>ལེགས་བཅོས་</emph>གདམ་ཁ་རྐྱབས།"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་གྱི་ཐོ་ཡིག་ནང་ལུ་ རྣམ་གྲངས་ཅིག་གཡས་-ཨེབ་གཏང་འབད་ དེ་ལས་ <emph>གསརཔ་</emph>གདམ་ཁ་རྐྱབས།"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>འགོ་འདྲེན་པ་</emph> མཆོང་ལྡེ་ཤོག་ལེབ་འདི་གུ་ ཤོག་ལེབ་བཟོ་རྣམ་དོན་ལུ་ <emph>སྒྲོམ་</emph> མིང་འདི་ནང་མིང་ཅིག་ཡིག་དཔར་རྐྱབས།"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>ཤོག་ལེབ་བར་མཚམས་</emph>སེལ་འཐུ་འབད།"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>རང་བཞིན་ཤོག་ལེབ་མཚམས་ཅིག་</emph> ཤོག་ལེབ་བཟོ་རྣམ་འདི་སོ་སོ་ཡོདཔ་ད་ཤོག་ལེབ་ཀྱི་མཇུག་ལུ་འབྱུངམ་ཨིན \"next style\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "འགོ་འདྲེན་པ་ <emph>མཆོང་ལྡེ་ཤོག་ལེབ་འདི་གུ་</emph> ཤོག་ལེབ་བཟོ་རྣམ་འདིའི་དོན་ལུ་ <emph>མིང་་་</emph> སྒྲོམ་ཅིག་ནང་མིང་ཡིག་དཔར་རྐྱབས་ དཔེར་ན་ \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ཤོག་ལེབ་བཟོ་རྣམ་གྱི་ཐོ་ཡིག་ནང་ལུ་ རྣམ་གྲངས་ཅིག་གཡས་-ཨེབ་གཏང་འབད་ དེ་ལས་ <emph>གསརཔ་</emph>གདམ་ཁ་རྐྱབས།"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>འགོ་འདྲེན་པ་</emph> མཆོང་ལྡེ་གུ་ལུ་ <emph>མིང་</emph> སྒྲོམ་ནང་ལུ་མིང་ཅིག་ཡིག་དཔར་རྐྱབས།"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index 83a29abe932..9d4234590f7 100644
--- a/source/dz/sc/messages.po
+++ b/source/dz/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14653,14 +14653,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14887,14 +14888,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23876,91 +23878,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24581,103 +24583,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "མཐའ་མཚམས་མེད།"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24717,51 +24622,51 @@ msgid "Format Cells"
msgstr "ནང་ཐིག་ཚུ་ རྩ་སྒྲིག་འབད་་་་(~C)"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ཨང་གྲངས།"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ།"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28994,45 +28899,45 @@ msgid "Page Style"
msgstr "ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ།"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ཤོག་ལེབ་ཚུ།"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "མགོ་ཡིག"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "མཇུག་ཡིག"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -29077,57 +28982,57 @@ msgid "Cell Style"
msgstr "ནང་ཐིག་གི་བཟོ་རྣམ།(~C)"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ཨང་གྲངས།"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ།"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index a4ccaa41ef4..3e454b33018 100644
--- a/source/dz/sd/messages.po
+++ b/source/dz/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9845,103 +9845,103 @@ msgid "_Standard"
msgstr "ཚད་ལྡན།"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "གྲལ་ཐིག"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ནག་གྲིབ་བཀོད་དོ།"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ།"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
#, fuzzy
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ཚིག་ཡིག"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ཚིག་ཡིག་ བསྒུལ་བཟོ།"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "རྒྱ་འཁྱོན་གྲལ་ཐིག"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "མཐུད་བྱེད།"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/dz/sfx2/messages.po b/source/dz/sfx2/messages.po
index e24da717fe9..ddad9155492 100644
--- a/source/dz/sfx2/messages.po
+++ b/source/dz/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1613,376 +1613,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "རྩ་བསྐྲད་གཏང་།"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/dz/svtools/messages.po b/source/dz/svtools/messages.po
index d59ea15315d..906933b8e9d 100644
--- a/source/dz/svtools/messages.po
+++ b/source/dz/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2401,16 +2401,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2418,37 +2426,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ནང་དོན་ཚུ་གསར་བསྐྲུན་འབད་མ་ཚུགས།"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ཡིག་སྣོད་མིག་འདི་དམིགས་གཏད་ཀྱི་ཡིག་སྣོད་རིམ་ལུགས་དོན་ལུ་རིངམ་ཨིན་པས།"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ཨིན་པུཊི་ཚིག་སྦྱོར་འདི་ནུས་མེད་ཨིན་པས།"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2458,19 +2466,19 @@ msgstr ""
" ཡིག་ཆ་འདི་%PRODUCTNAME %PRODUCTVERSION ཡིག་སྣོད་ཀྱི་རྩ་སྒྲིག་ནང་ལུ་སྲུང་བཞག་འབད་གནང་།"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ཡིག་ཆ་ཚུ་གི་མང་མཐའ་ཨང་འདི་ཁ་ཕྱེ་བཏུབ་དང་གཅིག་ཁར་བདའ་འཛིན་ཡོདཔ་ཨིན། ཁྱོད་ཀྱིས་ཡིག་ཆ་གསརཔ་ཅིག་ཁ་ཕྱེ་བའི་ཧེ་མ་ཡིག་ཆ་གཅིག་འབད་རུང་ཡང་ན་མངམ་ཁ་བསྡམས་དགོ་པས།"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2483,43 +2491,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ནུས་མེད་གནད་སྡུད་ཀྱི་རིང་ཚད།"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ལས་འགན་མི་སྲིད་པ: འགྲུལ་ལམ་ནང་ན་ད་ལྟོའི་སྣོད་ཐོ་འདུག"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ལས་འགན་མི་སྲིད་པ: ཐབས་འཕྲུལ་(འདྲེན་འཕྲུལ་)དབྱེར་མེད་མིན་པ།"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ཐབས་འཕྲུལ་(འདྲེན་འཕྲུལ་)གྲ་སྒྲིག་མེདཔ།"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ལས་འགན་མི་སྲིད་པ: འབྲི་མ་བཏུབ།"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2527,47 +2535,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ཡོངས་ཁྱབ་ཨོ་ཨེལ་ཨི་འཛོལ་བ།"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "བྱ་བ་འདི་གིས་ དངོས་པོ་ ད་ལྟོའི་ གནས་ལུགས་ནང་ལུ་ ལག་ལེན་འཐབ་མི་བཏུབ།"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "དངོས་པོ་འདི་གིས་བྱ་བ་གང་རུང་རྒྱབ་སྐྱོར་མི་འབད།"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "དངོས་པོ་འདི་གིས་བྱ་བ་འདི་རྒྱབ་སྐྱོར་མི་འབད།"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/dz/svx/messages.po b/source/dz/svx/messages.po
index ddad34a70bf..3c83c9f3cbd 100644
--- a/source/dz/svx/messages.po
+++ b/source/dz/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Dzongkha <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/dz/>\n"
@@ -10287,134 +10287,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10423,19 +10473,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index 89f558666ae..3c0e8b3a655 100644
--- a/source/dz/sw/messages.po
+++ b/source/dz/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3085,9 +3085,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10891,38 +10891,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16958,59 +16964,59 @@ msgid "Frame"
msgstr "གཞི་ཁྲམ།"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "ལོག་མཚམས་བཟོ།(~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ཧའི་པར་ལིངཀ"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29862,45 +29868,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ།"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "གནས་ས།"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ཨེ་ཤི་ཡཱན་སྒྲིག་བཀོད།"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "གཙོ་དམིགས་འབད་དོ།"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
@@ -29912,85 +29918,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "མཐའ་ཐིག"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "གཟུགས་བརྙན།"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "གནས་ས།"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -30003,115 +30009,115 @@ msgid "Paragraph Style"
msgstr "(དོན་མཚམས་བཟོ་རྣམ: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ཡིག་གཟུགས།"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ཡིག་གཟུགས་ཀྱི་ནུས་པ་ཚུ།"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "གནས་ས།"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ཨེ་ཤི་ཡཱན་སྒྲིག་བཀོད།"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "གཙོ་དམིགས་འབད་དོ།"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "མཆོང་ལྡེ་ཚུ།"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ཚུགས་ལྡེ་ བཀོག་བཞག"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "གནས་སྟངས།(~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30124,59 +30130,59 @@ msgid "Frame Style"
msgstr "གཞི་ཁྲམ་གྱི་བཟོ་རྣམ།"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "དབྱེ་བ།"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "གདམ་ཁ་ཚུ།"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "ལོག་མཚམས་བཟོ།(~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -30196,63 +30202,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ཤོག་ལེབ།"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ས་ཁོངས།"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "དྭངས་གསལ།"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "མགོ་ཡིག"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "མཇུག་ཡིག"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "མཐའ་མཚམས་ཚུ།"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ཀེར་ཐིག་ཚུ།"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "མཇུག་གི་དྲན་ཐོ།"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index 6c6e7ac54c0..bda2975eed1 100644
--- a/source/el/cui/messages.po
+++ b/source/el/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/el/>\n"
"Language: el\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Ανοίξτε αρχείο CSV ως νέο φύλλο στο τρέχον υπολογιστικό φύλλο μέσω Φύλλο ▸ Φύλλο από αρχείο."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Μπορείτε να συνεχίσετε να γράφετε με τα προεπιλεγμένα χαρακτηριστικά μορφοποίησης αφού εφαρμόσετε με μη αυτόματο τρόπο έντονη γραφή, πλάγια ή υπογράμμιση πατώντας %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "λεπτά"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Αντ' αυτού, αποθηκεύστε αυτόματα το έγγραφο"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Καθορίζει ότι το πακέτο γραφείου αποθηκεύει το ίδιο το τροποποιημένο έγγραφο, αντί να δημιουργεί μια προσωρινή έκδοση αυτόματης ανάκτησης. Χρησιμοποιεί το ίδιο χρονικό διάστημα με την αυτόματη ανάκτηση."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
@@ -21530,7 +21530,7 @@ msgstr "Τελευταία πλήρης γραμμή της παραγράφου
#: cui/uiconfig/ui/textflowpage.ui:403
msgctxt "textflowpage|extended_tip|checkAcrossParagraph"
msgid "Deselect this check box, if you don't want to hyphenate across the last full line of paragraph, column, page and spread."
-msgstr ""
+msgstr "Αποεπιλέξτε αυτό το πλαίσιο ελέγχου, εάν δεν θέλετε να βάλετε συλλαβίσετε την τελευταία πλήρη γραμμή της παραγράφου, της στήλης, της σελίδας και των αντικριστών σελίδων (spread)."
#. zVw8o
#: cui/uiconfig/ui/textflowpage.ui:414
@@ -21542,7 +21542,7 @@ msgstr "Στήλη"
#: cui/uiconfig/ui/textflowpage.ui:423
msgctxt "textflowpage|extended_tip|checkAcrossColumn"
msgid "Deselect this check box, if you don't want to hyphenate across column, page and spread."
-msgstr ""
+msgstr "Αποεπιλέξτε αυτό το πλαίσιο ελέγχου, εάν δεν θέλετε να συλλαβίσετε σε στήλη, σελίδα και αντικριστές σελίδες."
#. fxcFY
#: cui/uiconfig/ui/textflowpage.ui:434
@@ -21554,19 +21554,19 @@ msgstr "Σελίδα"
#: cui/uiconfig/ui/textflowpage.ui:443
msgctxt "textflowpage|extended_tip|checkAcrossPage"
msgid "Deselect this check box, if you don't want to hyphenate across page and spread."
-msgstr ""
+msgstr "Αποεπιλέξτε αυτό το πλαίσιο ελέγχου, εάν δεν θέλετε να συλλαβίσετε σε ολόκληρη τη σελίδα και τις αντικριστές σελίδες."
#. abccC
#: cui/uiconfig/ui/textflowpage.ui:454
msgctxt "textflowpage|checkAcrossSpread"
msgid "Spread"
-msgstr ""
+msgstr "Αντικριστές σελίδες (Spread)"
#. jmTXZ
#: cui/uiconfig/ui/textflowpage.ui:463
msgctxt "textflowpage|extended_tip|checkAcrossSpread"
msgid "Deselect this check box, if you don't want to hyphenate across spread."
-msgstr ""
+msgstr "Αποεπιλέξτε αυτό το πλαίσιο ελέγχου, εάν δεν θέλετε να συλλαβίσετε σε όλες τις αντικριστές σελίδες."
#. stYh3
#: cui/uiconfig/ui/textflowpage.ui:485
diff --git a/source/el/formula/messages.po b/source/el/formula/messages.po
index c8bf35c8b35..32205c5fdd6 100644
--- a/source/el/formula/messages.po
+++ b/source/el/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-07 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1555681749.000000\n"
#. YfKFn
@@ -2852,7 +2852,7 @@ msgstr "Επιλογή"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Περιεχόμενο:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/el/fpicker/messages.po b/source/el/fpicker/messages.po
index 6d5fe02fa87..37860603a5b 100644
--- a/source/el/fpicker/messages.po
+++ b/source/el/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2023-12-05 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1538496961.000000\n"
#. SJGCw
@@ -560,70 +560,70 @@ msgstr "Αποθήκευση"
#: include/fpicker/strings.hrc:41
msgctxt "STR_FILESAVE_AUTOEXTENSION"
msgid "Automatically adds the file extension to the end of the file name that corresponds to the selected file type."
-msgstr ""
+msgstr "Προσθέτει αυτόματα την επέκταση αρχείου στο τέλος του ονόματος αρχείου που αντιστοιχεί στον επιλεγμένο τύπο αρχείου."
#. 4qPci
#: include/fpicker/strings.hrc:42
msgctxt "STR_FILESAVE_SAVEWITHPASSWORD"
msgid "Protects the file with a password that must be entered before a user can open the file."
-msgstr ""
+msgstr "Προστατεύει το αρχείο με έναν κωδικό πρόσβασης που πρέπει να εισαγάγετε για να μπορέσει ο χρήστης να ανοίξει το αρχείο."
#. dFCgT
#: include/fpicker/strings.hrc:43
msgctxt "STR_FILESAVE_CUSTOMIZEFILTER"
msgid "Allows you to set the spreadsheet saving options for some types of data files."
-msgstr ""
+msgstr "Σας επιτρέπει να ορίσετε τις επιλογές αποθήκευσης υπολογιστικού φύλλου για ορισμένους τύπους αρχείων δεδομένων."
#. fJtCZ
#: include/fpicker/strings.hrc:44
msgctxt "STR_FILEOPEN_READONLY"
msgid "Opens the file in read-only mode."
-msgstr ""
+msgstr "Ανοίγει το αρχείο σε λειτουργία μόνο για ανάγνωση."
#. BMEgo
#: include/fpicker/strings.hrc:45
msgctxt "STR_FILEDLG_LINK_CB"
msgid "Inserts the selected graphic file as a link."
-msgstr ""
+msgstr "Εισάγει το επιλεγμένο αρχείο γραφικών ως σύνδεσμο."
#. jHPYN
#: include/fpicker/strings.hrc:46
msgctxt "STR_FILEDLG_PREVIEW_CB"
msgid "Displays a preview of the selected graphic file."
-msgstr ""
+msgstr "Εμφανίζει μια προεπισκόπηση του επιλεγμένου αρχείου γραφικών."
#. xWLX2
#: include/fpicker/strings.hrc:47
msgctxt "STR_FILESAVE_DOPLAY"
msgid "Plays the selected sound file. Click again to stop playing the sound file."
-msgstr ""
+msgstr "Αναπαράγει το επιλεγμένο αρχείο ήχου. Ξαναπατήστε για να σταματήσετε την αναπαραγωγή του αρχείου ήχου."
#. 27ayC
#: include/fpicker/strings.hrc:48
msgctxt "STR_FILEOPEN_VERSION"
msgid "If there are multiple versions of the selected file, select the version that you want to open."
-msgstr ""
+msgstr "Εάν υπάρχουν πολλές εκδόσεις του επιλεγμένου αρχείου, επιλέξτε την έκδοση που θέλετε να ανοίξετε."
#. K6RjJ
#: include/fpicker/strings.hrc:49
msgctxt "STR_FILESAVE_TEMPLATE"
msgid "Select the paragraph style or outline level that you want to use to separate the source document into sub-documents."
-msgstr ""
+msgstr "Επιλέξτε την τεχνοτροπία παραγράφου, ή το επίπεδο διάρθρωσης που θέλετε να χρησιμοποιήσετε για να διαχωρίσετε το έγγραφο προέλευσης σε δευτερεύοντα έγγραφα."
#. 7GLrR
#: include/fpicker/strings.hrc:50
msgctxt "STR_FILEOPEN_IMAGE_TEMPLATE"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Επιλέξτε την τεχνοτροπία πλαισίου για το γραφικό."
#. Lfiaj
#: include/fpicker/strings.hrc:51
msgctxt "STR_FILEOPEN_IMAGE_ANCHOR"
msgid "Select the frame style for the graphic."
-msgstr ""
+msgstr "Επιλέξτε την τεχνοτροπία πλαισίου για το γραφικό."
#. d6DG8
#: include/fpicker/strings.hrc:52
msgctxt "STR_FILESAVE_SELECTION"
msgid "Exports only the selected graphic objects in %PRODUCTNAME Draw and Impress to another format. If this box is not checked, the entire document is exported."
-msgstr ""
+msgstr "Εξάγει μόνο τα επιλεγμένα αντικείμενα γραφικών στο %PRODUCTNAME Draw and Impress σε άλλη μορφή. Εάν αυτό το πλαίσιο δεν είναι επιλεγμένο, εξάγεται ολόκληρο το έγγραφο."
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index 2d3b52521a3..268d4853a11 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-27 22:33+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/el/>\n"
@@ -611,14 +611,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Επαναφορά στο γονικό"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Οι τιμές για την τρέχουσα καρτέλα ορίζονται σε αυτές που βρέθηκαν στην αντίστοιχη καρτέλα της τεχνοτροπίας που καθορίστηκε στο \"Μεταβίβαση από\" στον Οργανωτή. Σε όλες τις περιπτώσεις, κι όταν το \"Μεταβίβαση από\" είναι \"-Καμία-\", οι τρέχουσες τιμές της καρτέλας που ορίστηκαν στο \"Περιέχει\" αφαιρούνται."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13742,68 +13742,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Επιλέξτε την καρτέλα <emph>Μορφή - Κελιά - Παρασκήνιο</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε την καρτέλα <menuitem>Μορφή - Τεχνοτροπία σελίδας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε την καρτέλα <menuitem>Τεχνοτροπίες - Επεξεργασία τεχνοτροπίας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε <menuitem>Τεχνοτροπίες - Διαχείριση τεχνοτροπιών</menuitem> - ανοίξτε το μενού περιβάλλοντος μιας καταχώρισης και επιλέξτε την καρτέλα <menuitem>Νέα/Επεξεργασία τεχνοτροπίας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Επιλέξτε την καρτέλα <menuitem>Μορφή - Τεχνοτροπία σελίδας - Οργανωτής</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε <menuitem>Τεχνοτροπίες - Διαχείριση τεχνοτροπιών</menuitem> - ανοίξτε το μενού περιβάλλοντος μιας καταχώρισης και επιλέξτε την καρτέλα <menuitem>Νέα/Επεξεργασία τεχνοτροπίας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Επιλέξτε την καρτέλα <menuitem>Μορφή - Τεχνοτροπίες - Επεξεργασία τεχνοτροπίας- Οργανωτής</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε <menuitem>Μορφή - Τεχνοτροπίες - Διαχείριση τεχνοτροπιών</menuitem> - ανοίξτε το μενού περιβάλλοντος μιας καταχώρισης και επιλέξτε την καρτέλα <menuitem>Νέα/Επεξεργασία τεχνοτροπίας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13814,14 +13814,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Επιλέξτε την καρτέλα <menuitem>διαφάνεια - Ιδιότητες - Σελίδα</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Επιλέξτε <menuitem>Προβολή - Τεχνοτροπίες</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>( F11)</keycode></defaultinline></switchinline> - ανοίξτε το μενού περιβάλλοντος μιας καταχώρισης και επιλέξτε την καρτέλα <menuitem>Νέα/Επεξεργασία τεχνοτροπίας - Οργανωτής</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index 2d82d2b1a9d..8a573358729 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/el/>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Επαναφέρει το επιλεγμένο γραφικό στο αρχικό του μέγεθος.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Διαχείριση"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>οργάνωση; τεχνοτροπίες</bookmark_value><bookmark_value>τεχνοτροπίες; οργάνωση</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Διαχείριση</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/el/helpcontent2/source/text/shared/menu.po b/source/el/helpcontent2/source/text/shared/menu.po
index 8785473fb66..c8ee27217f5 100644
--- a/source/el/helpcontent2/source/text/shared/menu.po
+++ b/source/el/helpcontent2/source/text/shared/menu.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2023-12-21 09:45+0000\n"
+"PO-Revision-Date: 2024-06-26 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsharedmenu/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1464593729.000000\n"
#. 4dDYy
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "File Menu"
-msgstr ""
+msgstr "Μενού Αρχείο"
#. 6W8BF
#: PickList.xhp
@@ -32,7 +32,7 @@ msgctxt ""
"hd_id881705934083852\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/shared/menu/PickList.xhp\">File</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/shared/menu/PickList.xhp\">Αρχείο</link></variable>"
#. WAmKT
#: PickList.xhp
@@ -41,7 +41,7 @@ msgctxt ""
"par_id231705934083854\n"
"help.text"
msgid "Opens the File menu."
-msgstr ""
+msgstr "Ανοίγει το μενού Αρχείο."
#. CCTq8
#: PickList.xhp
@@ -50,7 +50,7 @@ msgctxt ""
"par_id3147352\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current document, create a document, open an existing document, or close the application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Αυτές οι εντολές εφαρμόζονται στο τρέχον έγγραφο, δημιουργούν ένα έγγραφο, ανοίγουν ένα υπάρχον έγγραφο ή κλείνουν την εφαρμογή.</ahelp>"
#. 9EvAu
#: PickList.xhp
@@ -59,7 +59,7 @@ msgctxt ""
"par_id3151112\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current spreadsheet, create a spreadsheet, open an existing spreadsheet, or close the application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Αυτές οι εντολές εφαρμόζονται στο τρέχον υπολογιστικό φύλλο, δημιουργούν ένα υπολογιστικό φύλλο, ανοίγουν ένα υπάρχον υπολογιστικό φύλλο ή κλείνουν την εφαρμογή.</ahelp>"
#. C5giA
#: PickList.xhp
@@ -68,7 +68,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "<ahelp hid=\".\">These commands apply to the current presentation, create a presentation, open an existing presentation, or close the application.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Αυτές οι εντολές ισχύουν για την τρέχουσα παρουσίαση, δημιουργούν μια παρουσίαση, ανοίγουν μια υπάρχουσα παρουσίαση ή κλείνουν την εφαρμογή.</ahelp>"
#. fpugy
#: PickList.xhp
@@ -77,7 +77,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "This menu contains general commands for working with Draw documents, such as create, open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
-msgstr ""
+msgstr "Αυτό το μενού περιέχει γενικές εντολές για εργασία με έγγραφα Draw, όπως δημιουργία, άνοιγμα, κλείσιμο και εκτύπωση. Για να κλείσετε το $[officename] Draw, πατήστε <emph>Έξοδος</emph>."
#. BoATR
#: PickList.xhp
@@ -86,7 +86,7 @@ msgctxt ""
"par_id681705934190383\n"
"help.text"
msgid "Choose <menuitem>File</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχείο</menuitem>."
#. kAYUQ
#: comment_menu.xhp
@@ -374,7 +374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Shape"
-msgstr ""
+msgstr "Εισαγωγή σχήματος"
#. PvcFc
#: insert_shape.xhp
@@ -383,7 +383,7 @@ msgctxt ""
"hd_id07684081706272\n"
"help.text"
msgid "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Insert</link></variable>"
-msgstr ""
+msgstr "<variable id=\"insert_h1\"><link href=\"text/shared/menu/insert_shape.xhp\">Εισαγωγή</link></variable>"
#. MHwAt
#: insert_shape.xhp
@@ -410,7 +410,7 @@ msgctxt ""
"par_id261716922857055\n"
"help.text"
msgid "Choose <menuitem>Shape - Insert</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Σχήμα - Εισαγωγή</menuitem>."
#. vcXma
#: insert_shape.xhp
@@ -761,7 +761,7 @@ msgctxt ""
"par_id191713460859953\n"
"help.text"
msgid "Contains commands to create, edit, update, and manage styles in a presentation document."
-msgstr ""
+msgstr "Περιέχει εντολές για τη δημιουργία, επεξεργασία, ενημέρωση και διαχείριση τεχνοτροπιών σε ένα έγγραφο παρουσίασης."
#. Enc6m
#: style_menu.xhp
@@ -770,7 +770,7 @@ msgctxt ""
"par_id991713461213944\n"
"help.text"
msgid "Choose <menuitem>Format - Styles</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Τεχνοτροπίες</menuitem>."
#. y8Gxg
#: style_menu.xhp
@@ -779,7 +779,7 @@ msgctxt ""
"par_id811713461480734\n"
"help.text"
msgid "Choose <menuitem>Format - Styles</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Τεχνοτροπίες</menuitem>."
#. BssPU
#: style_menu.xhp
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index 9c805ceed9e..a44cab82c61 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-19 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/el/>\n"
@@ -935,13 +935,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/el/helpcontent2/source/text/simpress/00.po b/source/el/helpcontent2/source/text/simpress/00.po
index c0a37a2a4be..a40ae98909d 100644
--- a/source/el/helpcontent2/source/text/simpress/00.po
+++ b/source/el/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2023-10-09 11:38+0000\n"
+"PO-Revision-Date: 2024-06-26 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1558008671.000000\n"
#. sqmGT
@@ -545,7 +545,7 @@ msgctxt ""
"par_id3155376\n"
"help.text"
msgid "Choose <menuitem>Insert - Snap Guide</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εισαγωγή - Οδηγός προσκόλλησης</menuitem>."
#. xA4G5
#: 00000404.xhp
@@ -554,7 +554,7 @@ msgctxt ""
"par_id411704744854615\n"
"help.text"
msgid "Choose <menuitem>Insert Snap Guide</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εισαγωγή οδηγού προσκόλλησης</menuitem>."
#. aEgWV
#: 00000404.xhp
@@ -563,7 +563,7 @@ msgctxt ""
"par_id531704744415530\n"
"help.text"
msgid "Choose <menuitem>Home - Insert Snap Guide</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Αρχική σελίδα - Εισαγωγή οδηγού προσκόλλησης</menuitem>."
#. KpuzQ
#: 00000404.xhp
@@ -572,7 +572,7 @@ msgctxt ""
"par_id101704744774825\n"
"help.text"
msgid "On the <menuitem>Insert</menuitem> menu of the <menuitem>Insert</menuitem> tab, choose <menuitem>Insert Snap Guide</menuitem>."
-msgstr ""
+msgstr "Στο μενού <menuitem>Εισαγωγή</menuitem> της καρτέλας <menuitem>Εισαγωγή</menuitem>, επιλέξτε <menuitem>Εισαγωγή οδηγού προσκόλλησης</menuitem>."
#. KgF2B
#: 00000404.xhp
@@ -581,7 +581,7 @@ msgctxt ""
"par_id471704744466990\n"
"help.text"
msgid "<image src=\"cmd/lc_capturepoint.svg\" id=\"img_id781704744466991\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861704744466992\">Icon Insert Snap Guide</alt></image>"
-msgstr ""
+msgstr "<image src=\"cmd/lc_capturepoint.svg\" id=\"img_id781704744466991\" width=\"1cm\" height=\"1cm\"><alt id=\"alt_id861704744466992\">Εικονίδιο Εισαγωγή Οδηγού προσκόλλησης</alt></image>"
#. Q6Bzv
#: 00000404.xhp
@@ -590,7 +590,7 @@ msgctxt ""
"par_id281704744466994\n"
"help.text"
msgid "Insert Snap Guide"
-msgstr ""
+msgstr "Εισαγάγετε τον οδηγό προσκόλλησης"
#. zUpYX
#: 00000404.xhp
@@ -918,12 +918,13 @@ msgstr "Μενού Παρουσίαση οθόνης"
#. cxy88
#: 00000407.xhp
+#, fuzzy
msgctxt ""
"00000407.xhp\n"
"par_id731703172914150\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + 6</keycode>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Option</keycode></caseinline><defaultinline><keycode>Alt</keycode></defaultinline></switchinline><keycode> + 6</keycode>"
#. ZuAmp
#: 00000407.xhp
@@ -932,7 +933,7 @@ msgctxt ""
"par_id3158394\n"
"help.text"
msgid "Choose <menuitem>View - Slide Transition</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Προβολή - Μετάβαση διαφανειών</menuitem>."
#. SfEq5
#: 00000407.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/01.po b/source/el/helpcontent2/source/text/simpress/01.po
index 0577c19468a..3aeaecc1684 100644
--- a/source/el/helpcontent2/source/text/simpress/01.po
+++ b/source/el/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2023-12-07 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1559036480.000000\n"
@@ -861,7 +861,7 @@ msgctxt ""
"hd_id3148577\n"
"help.text"
msgid "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Cross-fading</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cross-fading_h1\"><link href=\"text/simpress/01/02150000.xhp\">Σταδιακή μετάβαση</link></variable>"
#. aCYnB
#: 02150000.xhp
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3150715\n"
"help.text"
msgid "The <menuitem>Text Formatting</menuitem> bar contains the following icons for slide titles:"
-msgstr ""
+msgstr "Η γραμμή <menuitem>Μορφοποίηση κειμένου</menuitem> περιέχει τα ακόλουθα εικονίδια για τίτλους διαφανειών:"
#. sjgs3
#: 03090000.xhp
@@ -1311,7 +1311,7 @@ msgctxt ""
"S700002\n"
"help.text"
msgid "<link href=\"text/shared/02/06060000.xhp\">Promote</link>,"
-msgstr ""
+msgstr "<link href=\"text/shared/02/06060000.xhp\">Προώθηση</link>,"
#. Ezvdm
#: 03090000.xhp
@@ -1320,7 +1320,7 @@ msgctxt ""
"S700003\n"
"help.text"
msgid "<link href=\"text/shared/02/06050000.xhp\">Demote</link>,"
-msgstr ""
+msgstr "<link href=\"text/shared/02/06050000.xhp\">Υποβιβασμός</link>,"
#. pc4MC
#: 03090000.xhp
@@ -1329,7 +1329,7 @@ msgctxt ""
"S700004\n"
"help.text"
msgid "<link href=\"text/shared/02/06100000.xhp\">Move Up</link> and"
-msgstr ""
+msgstr "<link href=\"text/shared/02/06100000.xhp\">Μετακίνηση προς τα επάνω</link> και"
#. WDddc
#: 03090000.xhp
@@ -1338,7 +1338,7 @@ msgctxt ""
"S700005\n"
"help.text"
msgid "<link href=\"text/shared/02/06110000.xhp\">Move Down</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/02/06110000.xhp\">Μετακίνηση προς τα κάτω</link>."
#. 4Ekzh
#: 03090000.xhp
@@ -1347,7 +1347,7 @@ msgctxt ""
"S700006\n"
"help.text"
msgid "If you want to reorder slide titles with the keyboard, ensure that the cursor is at the beginning of a title and press <keycode>Tab</keycode> to move the title one level lower in the hierarchy."
-msgstr ""
+msgstr "Εάν θέλετε να αναδιατάξετε τους τίτλους των διαφανειών με το πληκτρολόγιο, βεβαιωθείτε ότι ο δρομέας βρίσκεται στην αρχή ενός τίτλου και πατήστε <keycode>Tab</keycode> για να μετακινήσετε τον τίτλο ένα επίπεδο χαμηλότερα στην ιεραρχία."
#. 3mnk9
#: 03090000.xhp
@@ -1356,7 +1356,7 @@ msgctxt ""
"S700007\n"
"help.text"
msgid "To move the title up one level, press <keycode>Shift+Tab</keycode>."
-msgstr ""
+msgstr "Για να μετακινήσετε τον τίτλο ένα επίπεδο προς τα πάνω, πατήστε <keycode>Shift+Tab</keycode>."
#. ADcC3
#: 03090000.xhp
@@ -1464,7 +1464,7 @@ msgctxt ""
"par_id110120150547279702\n"
"help.text"
msgid "To modify the number of slides you can print on a page, open the <menuitem>Properties</menuitem> sidebar deck and double-click a layout on the <menuitem>Layout</menuitem> content panel."
-msgstr ""
+msgstr "Για να τροποποιήσετε τον αριθμό των διαφανειών που μπορείτε να εκτυπώσετε σε μια σελίδα, ανοίξτε την πλευρική στήλη <menuitem>Ιδιότητες</menuitem> και διπλοπατήστε σε μια διάταξη στον πίνακα περιεχομένου <menuitem>Διάταξη</menuitem>."
#. Tbjmu
#: 03130000.xhp
@@ -1500,7 +1500,7 @@ msgctxt ""
"par_id3155066\n"
"help.text"
msgid "You can specify settings for running a slide show in <link href=\"text/simpress/01/06080000.xhp\"><menuitem>Slide Show - Slide Show Settings</menuitem></link>."
-msgstr ""
+msgstr "Μπορείτε να καθορίσετε ρυθμίσεις για την εκτέλεση μιας παρουσίασης στο <link href=\"text/simpress/01/06080000.xhp\"><menuitem>Προβολή παρουσίασης - Ρυθμίσεις προβολής παρουσίασης</menuitem></link>."
#. E5Lov
#: 03130000.xhp
@@ -1509,7 +1509,7 @@ msgctxt ""
"par_idN106CF\n"
"help.text"
msgid "Specify whether a slide show starts with the current slide or with the first slide on <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline> </switchinline><menuitem> - %PRODUCTNAME Impress - General</menuitem>."
-msgstr ""
+msgstr "Καθορίστε εάν μια προβολή διαφανειών ξεκινά με την τρέχουσα διαφάνεια, ή με την πρώτη διαφάνεια στο <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline> <menuitem>Εργαλεία - Επιλογές</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME Impress - Γενικά</menuitem>."
#. vCuCK
#: 03130000.xhp
@@ -1536,7 +1536,7 @@ msgctxt ""
"par_id3150343\n"
"help.text"
msgid "Right-click a slide in <emph>Normal</emph> view and choose <emph>Slide Show.</emph>."
-msgstr ""
+msgstr "Δεξιοπατήστε σε μια διαφάνεια στην προβολή <emph>Κανονική</emph> και επιλέξτε <emph>Προβολή παρουσίασης.</emph>."
#. 6pDP2
#: 03130000.xhp
@@ -1545,7 +1545,7 @@ msgctxt ""
"par_id3156445\n"
"help.text"
msgid "Press <keycode>F5</keycode>."
-msgstr ""
+msgstr "Πατήστε <keycode>F5</keycode>."
#. tPMHA
#: 03130000.xhp
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id3150011\n"
"help.text"
msgid "<ahelp hid=\".\">Switches to one of several master views, where you can add elements that you want to appear on all the slides in your show.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Μετάβαση σε μία από τις πολλές κύριες προβολές, όπου μπορείτε να προσθέσετε στοιχεία που θέλετε να εμφανίζονται σε όλες τις διαφάνειες της εκπομπής σας.</ahelp>"
#. h4RwT
#: 03150100.xhp
@@ -1608,7 +1608,7 @@ msgctxt ""
"bm_id3154013\n"
"help.text"
msgid "<bookmark_value>normal view; backgrounds</bookmark_value><bookmark_value>backgrounds; normal view</bookmark_value><bookmark_value>views;master slide view</bookmark_value><bookmark_value>master slide view</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>κανονική προβολή; παρασκήνια</bookmark_value><bookmark_value>παρασκήνια; κανονική προβολή</bookmark_value><bookmark_value>προβολές; προβολή κύριας διαφάνειας</bookmark_value><bookmark_value>κύρια προβολή διαφάνειας</bookmark_value>"
#. DM3WL
#: 03150100.xhp
@@ -1968,7 +1968,7 @@ msgctxt ""
"par_idN106FC\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_cb\">Adds the text that you enter in the <menuitem>Header text</menuitem> box to the top of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/header_cb\">Προσθέτει το κείμενο που εισάγετε στο πλαίσιο <menuitem>Κείμενο κεφαλίδας</menuitem> στο επάνω μέρος της διαφάνειας.</ahelp>"
#. mfnCH
#: 03152000.xhp
@@ -2076,7 +2076,7 @@ msgctxt ""
"par_idN106C8\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_cb\">Adds the text that you enter in the <menuitem>Footer text</menuitem> box to the bottom of the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/headerfootertab/footer_cb\">Προσθέτει το κείμενο που εισάγετε στο πλαίσιο <menuitem>Κείμενο υποσέλιδου</menuitem> στο κάτω μέρος της διαφάνειας.</ahelp>"
#. HfkEu
#: 03152000.xhp
@@ -2868,7 +2868,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<variable id=\"expand_slide_h1\"><link href=\"text/simpress/01/04130000.xhp\">Expand Slide</link></variable>"
-msgstr ""
+msgstr "<variable id=\"expand_slide_h1\"><link href=\"text/simpress/01/04130000.xhp\">Επέκταση διαφάνειας</link></variable>"
#. 3hw2c
#: 04130000.xhp
@@ -2922,7 +2922,7 @@ msgctxt ""
"hd_id3154013\n"
"help.text"
msgid "<variable id=\"summary_slide_h1\"><link href=\"text/simpress/01/04140000.xhp\">Summary Slide</link></variable>"
-msgstr ""
+msgstr "<variable id=\"summary_slide_h1\"><link href=\"text/simpress/01/04140000.xhp\">Σύνοψη διαφάνειας</link></variable>"
#. sYR47
#: 04140000.xhp
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "Show styles for formatting graphical elements, including text objects."
-msgstr ""
+msgstr "Εμφάνιση τεχνοτροπιών για τη μορφοποίηση γραφικών στοιχείων, συμπεριλαμβανομένων των αντικειμένων κειμένου."
#. KGFbD
#: 05100000.xhp
@@ -5613,7 +5613,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Properties: Direction, Spokes, Amount, Color, First color, Fill color, Size, Line color, Font, Font size, Typeface, Zoom"
-msgstr ""
+msgstr "Ιδιότητες: Κατεύθυνση, Ακτίνες, Ποσότητα, Χρώμα, Πρώτο χρώμα, Χρώμα γεμίσματος, Μέγεθος, Χρώμα γραμμής, Γραμματοσειρά, Μέγεθος γραμματοσειράς, Οικογένεια γραμματοσειρών, Εστίαση"
#. MKkBo
#: 06060000.xhp
@@ -6279,7 +6279,7 @@ msgctxt ""
"bm_id3153818\n"
"help.text"
msgid "<bookmark_value>presentations; settings for</bookmark_value> <bookmark_value>slide shows; settings for</bookmark_value> <bookmark_value>presentations; window / full screen</bookmark_value> <bookmark_value>multiple displays</bookmark_value> <bookmark_value>presentations; enable remote control</bookmark_value> <bookmark_value>presentations; enable insecure connections</bookmark_value> <bookmark_value>presentations; enable unencrypted connections</bookmark_value> <bookmark_value>slide shows; enable remote control</bookmark_value> <bookmark_value>slide shows; enable insecure connections</bookmark_value> <bookmark_value>slide shows; enable unencrypted connections</bookmark_value> <bookmark_value>slide shows; navigation bar settings</bookmark_value> <bookmark_value>presentation; navigation bar settings</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>παρουσιάσεις; ρυθμίσεις</bookmark_value> <bookmark_value>προβολές διαφανειών; ρυθμίσεις</bookmark_value> <bookmark_value>παρουσιάσεις; παράθυρο / πλήρης οθόνη</bookmark_value> <bookmark_value>πολλαπλές οθόνες</bookmark_value> <bookmark_value>παρουσιάσεις; ενεργοποίηση απομακρυσμένου ελέγχου</bookmark_value> <bookmark_value>παρουσιάσεις; ενεργοποίηση ανασφαλών συνδέσεων</bookmark_value> <bookmark_value>παρουσιάσεις; ενεργοποίηση μη κρυπτογραφημένων συνδέσεων</bookmark_value> <bookmark_value>προβολές διαφανειών; ενεργοποίηση απομακρυσμένου ελέγχου</bookmark_value> <bookmark_value>προβολές διαφανειών; ενεργοποίηση επισφαλών συνδέσεων</bookmark_value> <bookmark_value>προβολές διαφανειών; ενεργοποίηση μη κρυπτογραφημένων συνδέσεων</bookmark_value> <bookmark_value>προβολές διαφανειών; ρυθμίσεις γραμμής πλοήγησης</bookmark_value> <bookmark_value>παρουσίαση; ρυθμίσεις γραμμής πλοήγησης</bookmark_value>"
#. KBJev
#: 06080000.xhp
@@ -6612,7 +6612,7 @@ msgctxt ""
"hd_id851716226303008\n"
"help.text"
msgid "Live-mode slideshow editing"
-msgstr ""
+msgstr "Επεξεργασία παρουσίασης σε ζωντανή λειτουργία"
#. xoann
#: 06080000.xhp
@@ -6621,7 +6621,7 @@ msgctxt ""
"par_id511716226331936\n"
"help.text"
msgid "When this box is checked the Impress main document window remains active during the presentation. Users can continue to edit slide content. Changes will be reflected in the running slideshow."
-msgstr ""
+msgstr "Όταν είναι επιλεγμένο αυτό το πλαίσιο, το παράθυρο του κύριου εγγράφου Impress παραμένει ενεργό κατά τη διάρκεια της παρουσίασης. Οι χρήστες μπορούν να συνεχίσουν να επεξεργάζονται το περιεχόμενο της διαφάνειας. Οι αλλαγές θα αντικατοπτρίζονται στην εκτελούμενη παρουσίαση."
#. dnXCx
#: 06080000.xhp
@@ -6720,7 +6720,7 @@ msgctxt ""
"hd_id221716227647562\n"
"help.text"
msgid "Button size"
-msgstr ""
+msgstr "Μέγεθος πλήκτρου"
#. 55gkP
#: 06080000.xhp
@@ -6729,7 +6729,7 @@ msgctxt ""
"par_id851716227648861\n"
"help.text"
msgid "Select the size of the buttons in the navigation bar from the dropdown."
-msgstr ""
+msgstr "Επιλέξτε το μέγεθος των πλήκτρων στη γραμμή πλοήγησης από το αναπτυσσόμενο μενού."
#. VfvEF
#: 06080000.xhp
@@ -6765,7 +6765,7 @@ msgctxt ""
"hd_id241716224473837\n"
"help.text"
msgid "Download app"
-msgstr ""
+msgstr "Μεταφόρτωση εφαρμογής"
#. 2tZxn
#: 06080000.xhp
@@ -6783,7 +6783,7 @@ msgctxt ""
"hd_id471716213316781\n"
"help.text"
msgid "Enable insecure WiFi connections"
-msgstr ""
+msgstr "Ενεργοποίηση μη ασφαλών συνδέσεων WiFi"
#. K9xgv
#: 06080000.xhp
@@ -6792,7 +6792,7 @@ msgctxt ""
"par_id741716213318479\n"
"help.text"
msgid "If this box is checked, %PRODUCTNAME Impress enables insecure and unencrypted connections via IP on all interfaces."
-msgstr ""
+msgstr "Εάν είναι επιλεγμένο αυτό το πλαίσιο, το %PRODUCTNAME Impress ενεργοποιεί ανασφαλείς και μη κρυπτογραφημένες συνδέσεις μέσω IP σε όλες τις διεπαφές."
#. SVwum
#: 06080000.xhp
@@ -6801,7 +6801,7 @@ msgctxt ""
"par_id741716213318480\n"
"help.text"
msgid "You can only enable insecure WiFi connections if remote control is enabled."
-msgstr ""
+msgstr "Μπορείτε να ενεργοποιήσετε τις μη ασφαλείς συνδέσεις WiFi μόνο εάν είναι ενεργοποιημένος ο απομακρυσμένος έλεγχος."
#. 9CBTY
#: 06080000.xhp
@@ -6810,7 +6810,7 @@ msgctxt ""
"par_id171716213320419\n"
"help.text"
msgid "Enabling insecure WiFi connections is not recommended in public settings."
-msgstr ""
+msgstr "Η ενεργοποίηση μη ασφαλών συνδέσεων WiFi δεν συνιστάται σε δημόσιες ρυθμίσεις."
#. w2iqM
#: 06100000.xhp
@@ -7953,7 +7953,7 @@ msgctxt ""
"par_id571692539528746\n"
"help.text"
msgid "On the <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Text</menuitem></caseinline><caseinline select=\"IMPRESS\"><menuitem>Home</menuitem></caseinline></switchinline> tab, long click on <menuitem>Ordered</menuitem> or <menuitem>Unordered</menuitem> list, select <menuitem>Customize</menuitem>."
-msgstr ""
+msgstr "Στην καρτέλα <switchinline select=\"appl\"><caseinline select=\"DRAW\"><menuitem>Κείμενο</menuitem> της </caseinline><caseinline select=\"IMPRESS\"><menuitem>Αρχικής σελίδας</menuitem></caseinline> </switchinline>, παρατεταμένο πάτημα στον κατάλογο <menuitem>Διαταγμένο</menuitem> ή <menuitem>Μη διαταγμένο</menuitem>, επιλέξτε <menuitem>Προσαρμογή</menuitem>."
#. 8ABFW
#: bulletandposition.xhp
diff --git a/source/el/helpcontent2/source/text/simpress/02.po b/source/el/helpcontent2/source/text/simpress/02.po
index 36bd5958267..765a5b91f16 100644
--- a/source/el/helpcontent2/source/text/simpress/02.po
+++ b/source/el/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: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2023-11-28 07:42+0000\n"
+"PO-Revision-Date: 2024-06-26 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress02/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1558008947.000000\n"
#. AiACn
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id3151311\n"
"help.text"
msgid "To display the <menuitem>Color Bar</menuitem>, choose <menuitem>View - Color Bar</menuitem>."
-msgstr ""
+msgstr "Για να εμφανίσετε τη <menuitem>Γραμμή χρωμάτων</menuitem>, επιλέξτε <menuitem>Προβολή - Γραμμή χρωμάτων</menuitem>."
#. HMYUP
#: 10030000.xhp
@@ -2660,7 +2660,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Curves and Polygons"
-msgstr ""
+msgstr "Καμπύλες και πολύγωνα"
#. XjpFZ
#: 10080000.xhp
@@ -2678,7 +2678,7 @@ msgctxt ""
"hd_id3149875\n"
"help.text"
msgid "<variable id=\"curves_and_polygons_h1\"><link href=\"text/simpress/02/10080000.xhp\">Curves and Polygons</link></variable>"
-msgstr ""
+msgstr "<variable id=\"curves_and_polygons_h1\"><link href=\"text/simpress/02/10080000.xhp\">Καμπύλες και πολύγωνα</link></variable>"
#. dxPJK
#: 10080000.xhp
@@ -2687,7 +2687,7 @@ msgctxt ""
"par_id3147301\n"
"help.text"
msgid "<ahelp hid=\".uno:LineToolbox\">The <menuitem>Curves and Polygons</menuitem> icon on the Drawing bar opens the <emph>Lines</emph> toolbar, where you can add lines and shapes to the current slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:LineToolbox\">Το εικονίδιο <menuitem>Καμπύλες και πολύγωνα</menuitem> στη γραμμή σχεδίασης ανοίγει τη γραμμή εργαλείων <emph>Γραμμές</emph>, όπου μπορείτε να προσθέσετε γραμμές και σχήματα στην τρέχουσα διαφάνεια .</ahelp>"
#. aNBx6
#: 10080000.xhp
@@ -2921,7 +2921,7 @@ msgctxt ""
"par_id3150354\n"
"help.text"
msgid "<ahelp hid=\".uno:Polygon_Diagonal_Unfilled\">Draws a line composed of a series of straight line segments, that are constrained by angles of 45 degree. Drag to draw a line segment, click to define the endpoint of the line segment, and then drag to draw a new line segment. Double-click to finish drawing the line. To create a closed shape, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and double-click.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:Polygon_Diagonal_Unfilled\">Σχεδιάζει μια γραμμή που αποτελείται από μια σειρά ευθύγραμμων τμημάτων, τα οποία περιορίζονται από γωνίες 45 μοιρών. Σύρετε για να σχεδιάσετε ένα τμήμα γραμμής, πατήστε για να ορίσετε το τελικό σημείο του τμήματος της γραμμής και, στη συνέχεια, σύρετε για να σχεδιάσετε ένα νέο τμήμα γραμμής. Διπλοπατήστε για να ολοκληρώσετε τη χάραξη της γραμμής. Για να δημιουργήσετε ένα κλειστό σχήμα, κρατήστε πατημένο το <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> και διπλοπατήστε.</ahelp>."
#. MkLvc
#: 10080000.xhp
@@ -4550,7 +4550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Lines and Arrows"
-msgstr ""
+msgstr "Γραμμές και βέλη"
#. MYZ6p
#: 10120000.xhp
@@ -4568,7 +4568,7 @@ msgctxt ""
"hd_id3145799\n"
"help.text"
msgid "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Lines and Arrows</link></variable>"
-msgstr ""
+msgstr "<variable id=\"lines_and_arrows_h1\"><link href=\"text/simpress/02/10120000.xhp\">Γραμμές και βέλη</link></variable>"
#. 4zGbe
#: 10120000.xhp
@@ -4577,7 +4577,7 @@ msgctxt ""
"par_id3145790\n"
"help.text"
msgid "<ahelp hid=\".uno:ArrowsToolbox\">Open the <variable id=\"lines_and_arrows_menu\"><menuitem>Lines and Arrows</menuitem></variable> toolbar, where you can add straight lines, lines with arrows, and dimension lines to the current slide or page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:ArrowsToolbox\">Ανοίξτε τη γραμμή εργαλείων <variable id=\"lines_and_arrows_menu\"><menuitem>Γραμμές και βέλη</menuitem></variable>, όπου μπορείτε να προσθέσετε ευθείες γραμμές, γραμμές με βέλη και γραμμές διαστάσεων στην τρέχουσα διαφάνεια ή σελίδα.</ahelp>"
#. dJyBN
#: 10120000.xhp
diff --git a/source/el/helpcontent2/source/text/swriter.po b/source/el/helpcontent2/source/text/swriter.po
index 451dba4e7c0..508670a6033 100644
--- a/source/el/helpcontent2/source/text/swriter.po
+++ b/source/el/helpcontent2/source/text/swriter.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-30 14:12+0200\n"
-"PO-Revision-Date: 2023-11-12 21:38+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1548756202.000000\n"
#. x2qZ6
@@ -500,7 +500,7 @@ msgctxt ""
"par_id751713467207034\n"
"help.text"
msgid "Choose <menuitem>Format - Table</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Πίνακας</menuitem>."
#. YtQGA
#: main0110.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/00.po b/source/el/helpcontent2/source/text/swriter/00.po
index 81bc6e0fd30..c82bddd7562 100644
--- a/source/el/helpcontent2/source/text/swriter/00.po
+++ b/source/el/helpcontent2/source/text/swriter/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-30 14:12+0200\n"
-"PO-Revision-Date: 2023-12-21 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter00/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1548755711.000000\n"
#. E9tti
@@ -464,7 +464,7 @@ msgctxt ""
"par_id3154505\n"
"help.text"
msgid "<variable id=\"fussnote\">Choose <emph>Edit - Reference - Footnote or Endnote</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fussnote\">Επιλέξτε <emph>Επεξεργασία - Αναφορά - Υποσημείωση ή Τελική Σημείωση</emph></variable>"
#. D4PcF
#: 00000402.xhp
@@ -1112,7 +1112,7 @@ msgctxt ""
"par_id3149053\n"
"help.text"
msgid "<variable id=\"feldbefehldatum\">Choose <menuitem>Insert - Field - Date (Fixed)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbefehldatum\">Επιλέξτε <menuitem>Εισαγωγή - Πεδίο - Ημερομηνία (Σταθερή)</menuitem></variable>"
#. 687nA
#: 00000404.xhp
@@ -1121,7 +1121,7 @@ msgctxt ""
"par_id791709600478217\n"
"help.text"
msgid "<variable id=\"field_command_date_variable\">Choose <menuitem>Insert - Field - Date (Variable)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"field_command_date_variable\">Επιλέξτε <menuitem>Εισαγωγή - Πεδίο - Ημερομηνία (Μεταβλητή)</menuitem></variable>"
#. DSgfF
#: 00000404.xhp
@@ -1130,7 +1130,7 @@ msgctxt ""
"par_id3151393\n"
"help.text"
msgid "<variable id=\"feldbefehluhrzeit\">Choose <menuitem>Insert - Field - Time (Fixed)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"feldbefehluhrzeit\">Επιλέξτε <menuitem>Εισαγωγή - Πεδίο - Χρόνος (Σταθερός)</menuitem></variable>"
#. QoBsr
#: 00000404.xhp
@@ -1139,7 +1139,7 @@ msgctxt ""
"par_id171709600782780\n"
"help.text"
msgid "<variable id=\"field_command_time_variable\">Choose <menuitem>Insert - Field - Time (Variable)</menuitem></variable>"
-msgstr ""
+msgstr "<variable id=\"field_command_time_variable\">Επιλέξτε <menuitem>Εισαγωγή - Πεδίο - Χρόνος (Μεταβλητή)</menuitem></variable>"
#. WHhqc
#: 00000404.xhp
@@ -1409,7 +1409,7 @@ msgctxt ""
"par_id3151322\n"
"help.text"
msgid "Choose <menuitem>Insert - Footnote and Endnote - Insert Special Footnote/Endnote</menuitem>"
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Εισαγωγή - Υποσημείωση και σημείωση τέλους - Εισαγωγή ειδικής υποσημείωσης/σημείωσης τέλους</menuitem>"
#. DGDoW
#: 00000404.xhp
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id91705505003097\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Οπτική επισήμανση</menuitem>."
#. Ap6v8
#: 00000405.xhp
@@ -2201,7 +2201,7 @@ msgctxt ""
"par_id751692650117734\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Direct Formatting</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Οπτική επισήμανση - Άμεση μορφοποίηση χαρακτήρων</menuitem>."
#. pe2jB
#: 00000405.xhp
@@ -2210,7 +2210,7 @@ msgctxt ""
"par_id991705508323227\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Paragraph Formatting</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Οπτική επισήμανση - Μορφοποίηση παραγράφου</menuitem>."
#. TG5F7
#: 00000405.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id361688480578471\n"
"help.text"
msgid "Open the <emph>Styles - Paragraph</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr ""
+msgstr "Ανοίξτε την προσάρτηση <emph>Τεχνοτροπίες - Παράγραφος</emph>, επιλέξτε το πλαίσιο ελέγχου <menuitem>Οπτική επισήμανση</menuitem>."
#. 95qcn
#: 00000405.xhp
@@ -2228,7 +2228,7 @@ msgctxt ""
"par_id121705508327920\n"
"help.text"
msgid "Choose <menuitem>Format - Spotlight - Character Formatting</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Οπτική επισήμανση - Μορφοποίηση χαρακτήρων</menuitem>."
#. t4bGN
#: 00000405.xhp
@@ -2237,7 +2237,7 @@ msgctxt ""
"par_id841705508304691\n"
"help.text"
msgid "Open the <emph>Styles - Character</emph> deck, mark <menuitem>Spotlight</menuitem> check box."
-msgstr ""
+msgstr "Ανοίξτε την προσάρτηση <emph>Τεχνοτροπίες - Χαρακτήρας</emph>, επιλέξτε το πλαίσιο ελέγχου <menuitem>Οπτική επισήμανση (Spotlight)</menuitem>."
#. GA9eA
#: 00000405.xhp
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id681693688270842\n"
"help.text"
msgid "Choose <menuitem>Delete - Columns</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Διαγραφή - Στήλες</menuitem>."
#. BRSwg
#: 00000405.xhp
@@ -3767,7 +3767,7 @@ msgctxt ""
"par_id401713819764756\n"
"help.text"
msgid "Choose <menuitem>Format - Table - Select</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Πίνακας - Επιλογή</menuitem>."
#. Puzip
#: 00000405.xhp
@@ -3875,7 +3875,7 @@ msgctxt ""
"par_id401713820421114\n"
"help.text"
msgid "Choose <menuitem>Format - Table - Delete Table</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε <menuitem>Μορφή - Πίνακας - Διαγραφή πίνακα</menuitem>."
#. DacRK
#: 00000405.xhp
@@ -4145,7 +4145,7 @@ msgctxt ""
"par_id3154477\n"
"help.text"
msgid "<variable id=\"fussnoteneinstellung\">Choose <emph>Tools - Footnote/Endnote Settings</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"fussnoteneinstellung\">Επιλέξτε <emph>Εργαλεία - Ρυθμίσεις υποσημείωσης/σημείωσης τέλους</emph></variable>"
#. nJCyB
#: 00000406.xhp
@@ -4154,7 +4154,7 @@ msgctxt ""
"par_id3153669\n"
"help.text"
msgid "<variable id=\"fussnoten\">Choose <emph>Tools - Footnote/Endnote Settings - Footnotes</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"fussnoten\">Επιλέξτε την καρτέλα <emph>Εργαλεία - Ρυθμίσεις υποσημείωσης/Σημειώσεις τέλους - Υποσημειώσεις</emph></variable>"
#. nMAbg
#: 00000406.xhp
@@ -4163,7 +4163,7 @@ msgctxt ""
"par_id3150972\n"
"help.text"
msgid "<variable id=\"endnoten\">Choose <emph>Tools - Footnote/Endnote Settings - Endnotes</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"endnoten\">Επιλέξτε την καρτέλα <emph>Εργαλεία - Ρυθμίσεις υποσημείωσης/Σημείωση τέλους - Σημειώσεις τέλους</emph></variable>"
#. LFvpA
#: 00000406.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index fb4b3c11b43..7e30f218e23 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
-"PO-Revision-Date: 2023-12-05 20:14+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/el/>\n"
"Language: el\n"
@@ -771,7 +771,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "To jump to the next or previous item in a document, use the <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigate By</emph></link> list to select the item category, and then click the <emph>Previous</emph> or <emph>Next</emph> arrows."
-msgstr ""
+msgstr "Για να μεταβείτε στο επόμενο ή στο προηγούμενο στοιχείο ενός εγγράφου, χρησιμοποιήστε τον κατάλογο <link href=\"text/swriter/01/02110100.xhp\"><emph>Πλοήγηση κατά</emph></link> για να επιλέξετε την κατηγορία στοιχείων, και μετά πατήστε στα βέλη <emph>Προηγούμενο</emph>, ή <emph>Επόμενο</emph>."
#. S4kDa
#: 02110000.xhp
@@ -1113,7 +1113,7 @@ msgctxt ""
"par_id3153011\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\">Navigate By</link> list, select <menuitem>Reminder</menuitem>, and then click <emph>Previous</emph> or <emph>Next</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Πατήστε εδώ για να ορίσετε μια υπενθύμιση στην τρέχουσα θέση του δρομέα. Μπορείτε να ορίσετε έως και πέντε υπενθυμίσεις. Για να μεταβείτε σε μια υπενθύμιση, πατήστε το εικονίδιο <link href=\"text/swriter/01/02110100.xhp\"><emph>Πλοήγηση</emph></link>, στο παράθυρο <emph>Πλοήγηση</emph>, πατήστε το εικονίδιο <emph>Υπενθύμιση</emph> και, στη συνέχεια, πατήστε το πλήκτρο <emph>Προηγούμενο</emph>, ή <emph>Επόμενο</emph>.</ahelp> Πατήστε εδώ για να ορίσετε μια υπενθύμιση στην τρέχουσα θέση του δρομέα. Μπορείτε να ορίσετε έως και πέντε υπενθυμίσεις. Για να μεταβείτε σε μια υπενθύμιση, πατήστε στον κατάλογο <link href=\"text/swriter/01/02110100.xhp\">Πλοήγηση κατά</link>, επιλέξτε <menuitem>Υπενθύμιση</menuitem> και, στη συνέχεια, πατήστε το <emph>Προηγούμενο</emph>, ή το <emph>Επόμενο</emph>."
#. j2jDL
#: 02110000.xhp
@@ -2265,7 +2265,7 @@ msgctxt ""
"hd_id3147745\n"
"help.text"
msgid "Navigate By"
-msgstr ""
+msgstr "Πλοήγηση κατά"
#. 9j8Yd
#: 02110100.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"par_id3149844\n"
"help.text"
msgid "<ahelp hid=\"HID_SCRL_NAVI\">The <emph>Navigate By</emph> selection box allows choosing a category to navigate the document by, including pages, headings, sections, objects, fields, comments, latest search results and recency of cursor position.</ahelp> You can then use the <emph>Previous</emph> and <emph>Next</emph> arrow icons to position the text cursor in the document on the previous or next target."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SCRL_NAVI\">Το πλαίσιο επιλογής <emph>Πλοήγηση κατά</emph> επιτρέπει την επιλογή κατηγορίας για πλοήγηση στο έγγραφο, συμπεριλαμβανομένων σελίδων, επικεφαλίδων, ενοτήτων, αντικειμένων, πεδίων, σχολίων, πιο πρόσφατων αποτελεσμάτων αναζήτησης και τη πρόσφατη θέση του δρομέα.</ahelp> Στη συνέχεια, μπορείτε να χρησιμοποιήσετε τα εικονίδια βέλους <emph>Προηγούμενο</emph> και <emph>Επόμενο</emph> για να τοποθετήσετε τον δρομέα κειμένου στο έγγραφο στον προηγούμενο ή τον επόμενο στόχο."
#. CANgP
#: 02110100.xhp
@@ -2283,7 +2283,7 @@ msgctxt ""
"hd_id3150031\n"
"help.text"
msgid "Working With Navigate By"
-msgstr ""
+msgstr "Εργασία με το πλοήγηση κατά"
#. kZEUc
#: 02110100.xhp
@@ -2292,7 +2292,7 @@ msgctxt ""
"par_id3155076\n"
"help.text"
msgid "By default, as long as you have not selected any other category, the Page category is selected, and the arrows are replaced by a number field that can be used to go to the previous or the next page, or jump to a specific one."
-msgstr ""
+msgstr "Από προεπιλογή, εφόσον δεν έχετε επιλέξει άλλη κατηγορία, επιλέγεται η κατηγορία Σελίδα και τα βέλη αντικαθίστανται από ένα αριθμητικό πεδίο που μπορεί να χρησιμοποιηθεί για μετάβαση στην προηγούμενη ή την επόμενη σελίδα ή για μετάβαση σε μια συγκεκριμένη."
#. EZoBG
#: 02110100.xhp
@@ -2301,7 +2301,7 @@ msgctxt ""
"par_id3153141\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_VS\">Once you select another category, you can use the \"Previous\" or \"Next\" arrow buttons. The labels of these buttons indicate the type of object you have selected. The text cursor is then placed on whichever object you have selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NAVI_VS\">Μόλις επιλέξετε άλλη κατηγορία, μπορείτε να χρησιμοποιήσετε τα πλήκτρα βέλους \"Προηγούμενο\" ή \"Επόμενο\". Οι ετικέτες αυτών των πλήκτρων υποδεικνύουν τον τύπο του αντικειμένου που έχετε επιλέξει. Στη συνέχεια, ο δρομέας κειμένου τοποθετείται σε όποιο αντικείμενο έχετε επιλέξει.</ahelp>"
#. eabbc
#: 02110100.xhp
@@ -2310,7 +2310,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose <link href=\"text/shared/01/06140000.xhp\"><emph>Tools - Customize</emph></link>. The various tables for adapting <link href=\"text/shared/01/06140100.xhp\">menus</link>, <link href=\"text/shared/01/06140200.xhp\">keyboard input</link> or toolbars contain various functions for navigation within the document under the \"Navigate\" category. For example, you can add buttons to a toolbar to jump to the index tags in the document with the \"Go to Next/Previous Index Entry\" commands."
-msgstr ""
+msgstr "Μπορείτε να διαμορφώσετε το $[officename] σύμφωνα με τις συγκεκριμένες προτιμήσεις σας για την πλοήγηση σε ένα έγγραφο. Για να το κάνετε αυτό, επιλέξτε <link href=\"text/shared/01/06140000.xhp\"><emph>Εργαλεία - Προσαρμογή</emph></link>. Οι διάφοροι πίνακες για την προσαρμογή των <link href=\"text/shared/01/06140100.xhp\">μενού</link>, της <link href=\"text/shared/01/06140200.xhp\">εισόδου πληκτρολογίου</link> ή των γραμμών εργαλείων περιέχουν διάφορες λειτουργίες για πλοήγηση εντός του εγγράφου στην κατηγορία \"Πλοήγηση\". Για παράδειγμα, μπορείτε να προσθέσετε πλήκτρα σε μια γραμμή εργαλείων για να μεταβείτε στις ετικέτες ευρετηρίου στο έγγραφο με τις εντολές \"Μετάβαση στην Επόμενη/Προηγούμενη Καταχώριση Ευρετηρίου\"."
#. ZPfz6
#: 02110100.xhp
@@ -2319,7 +2319,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "The available categories largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link> selection box. However, you can select other jump destinations that are not classic Navigator categories: for example, Reminders, Repeat Search or Recency."
-msgstr ""
+msgstr "Οι διαθέσιμες κατηγορίες αντιστοιχούν σε μεγάλο βαθμό με εκείνες στο πλαίσιο επιλογής <link href=\"text/swriter/01/02110000.xhp\">Πλοήγηση</link>. Ωστόσο, μπορείτε να επιλέξετε άλλους προορισμούς μετάβασης που δεν είναι κλασικές κατηγορίες πλοήγησης: για παράδειγμα, υπενθυμίσεις, επαναλαμβανόμενη αναζήτηση ή πρόσφατη εμφάνιση."
#. BN4E8
#: 02110100.xhp
@@ -2328,7 +2328,7 @@ msgctxt ""
"par_id561713406417133\n"
"help.text"
msgid "Select from one of the following options: Bookmarks, Comments, Controls, Drawing objects, Fields by type, Fields, Footnotes, Frames, Headings, Images, Indexes, OLE objects, Page, Recency, Reminder, Repeat search, Sections, Selection, Table formula, Tables, Wrong table formula."
-msgstr ""
+msgstr "Επιλέξτε μία από τις ακόλουθες επιλογές: Σελιδοδείκτες, Σχόλια, Χειριστήρια, Σχεδίαση αντικειμένων, Πεδία κατά τύπο, Πεδία, Υποσημειώσεις, Πλαίσια, Επικεφαλίδες, Εικόνες, Ευρετήρια, αντικείμενα OLE, Σελίδα, Πρόσφατα, Υπενθύμιση, Επανάληψη αναζήτησης, Ενότητες, Επιλογή, Πίνακας τύπος, Πίνακες, Λάθος τύπος πίνακα."
#. JW7rQ
#: 02110100.xhp
@@ -2337,7 +2337,7 @@ msgctxt ""
"hd_id1001713405229169\n"
"help.text"
msgid "Footnotes"
-msgstr ""
+msgstr "Υποσημειώσεις"
#. NAweY
#: 02110100.xhp
@@ -2346,7 +2346,7 @@ msgctxt ""
"par_id541713405238672\n"
"help.text"
msgid "Select the <emph>Footnotes</emph> category to jump between footnotes and endnotes. This can be used in conjunction with the <emph>Anchor ↔ Text</emph> button in the Navigator, to quickly jump between the text of the footnote/endnote and its anchor in the body."
-msgstr ""
+msgstr "Επιλέξτε την κατηγορία <emph>Υποσημειώσεις</emph> για μετάβαση μεταξύ υποσημειώσεων και σημειώσεων τέλους. Αυτό μπορεί να χρησιμοποιηθεί σε συνδυασμό με το πλήκτρο <emph>Αγκύρωση ↔ Κείμενο</emph> στην πλοήγηση, για γρήγορη μετάβαση μεταξύ του κειμένου της υποσημείωσης/σημείωσης τέλους και της άγκυράς της στο σώμα."
#. MkXfV
#: 02110100.xhp
@@ -2355,7 +2355,7 @@ msgctxt ""
"hd_id801713406561353\n"
"help.text"
msgid "Recency"
-msgstr ""
+msgstr "Πρόσφατα"
#. UCx3F
#: 02110100.xhp
@@ -2364,7 +2364,7 @@ msgctxt ""
"par_id141713406574059\n"
"help.text"
msgid "When selecting the <emph>Recency</emph> category, the <emph>Go back</emph> and <emph>Go forward</emph> buttons can be used to jump to recent cursor positions in the document."
-msgstr ""
+msgstr "Όταν επιλέγετε την κατηγορία <emph>Πρόσφατα</emph>, τα πλήκτρα <emph>Επιστροφή</emph> και <emph>Προώθηση</emph> μπορούν να χρησιμοποιηθούν για μετάβαση στις πρόσφατες θέσεις του δρομέα στο έγγραφο."
#. mCWvP
#: 02110100.xhp
@@ -2373,7 +2373,7 @@ msgctxt ""
"hd_id701713405928808\n"
"help.text"
msgid "Reminders"
-msgstr ""
+msgstr "Υπενθυμίσεις"
#. gYug3
#: 02110100.xhp
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id871713405938067\n"
"help.text"
msgid "Up to 5 <emph>Reminders</emph> (which are not saved when the document is closed) can be set at various locations in the document. Set a reminder with the <emph>Set Reminders</emph> button in the Navigator."
-msgstr ""
+msgstr "Μπορούν να οριστούν έως και 5 <emph>Υπενθυμίσεις</emph> (οι οποίες δεν αποθηκεύονται όταν το έγγραφο είναι κλειστό) σε διάφορες θέσεις του εγγράφου. Ορίστε μια υπενθύμιση με το πλήκτρο <emph>Ορισμός υπενθυμίσεων</emph> στον Πλοηγητή."
#. gh75t
#: 02110100.xhp
@@ -2409,7 +2409,7 @@ msgctxt ""
"par_id3155361\n"
"help.text"
msgid "With the <menuitem>Repeat search</menuitem> category, you can repeat a search you started with the <emph>Search and Replace</emph> dialog or the <emph>Find</emph> toolbar. If you now click one of the arrows, the search will be resumed for the term last searched."
-msgstr ""
+msgstr "Με την κατηγορία <menuitem>Επανάληψη αναζήτησης</menuitem>, μπορείτε να επαναλάβετε μια αναζήτηση που ξεκινήσατε με το παράθυρο διαλόγου <emph>Αναζήτηση και αντικατάσταση</emph>, ή τη γραμμή εργαλείων <emph>Εύρεση</emph>. Εάν τώρα πατήσετε σε ένα από τα βέλη, η αναζήτηση θα συνεχιστεί για τον όρο που αναζητήσατε τελευταία."
#. fkAFF
#: 02110100.xhp
@@ -2418,7 +2418,7 @@ msgctxt ""
"hd_id761713525529070\n"
"help.text"
msgid "Selection"
-msgstr ""
+msgstr "Επιλογή"
#. gfCQE
#: 02110100.xhp
@@ -2427,7 +2427,7 @@ msgctxt ""
"par_id961713525563573\n"
"help.text"
msgid "If a multiple selection is active (for example when using <keycode>Ctrl + click and drag</keycode> or the Adding <link href=\"text/shared/02/20050000.xhp\">selection mode</link>, or after a Find All search), <emph>Selection</emph> allows jumping from one to the other."
-msgstr ""
+msgstr "Εάν είναι ενεργή μια πολλαπλή επιλογή (για παράδειγμα όταν χρησιμοποιείτε το <keycode>Ctrl + πάτημα και σύρσιμο</keycode>, ή την προσθήκη <link href=\"text/shared/02/20050000.xhp\">λειτουργίας επιλογής</link>, ή μετά από αναζήτηση \"Εύρεση όλων\"), η <emph>Επιλογή</emph> επιτρέπει το άλμα από το ένα στο άλλο."
#. UHMam
#: 02110100.xhp
@@ -2436,7 +2436,7 @@ msgctxt ""
"hd_id731713403460395\n"
"help.text"
msgid "Table Formulas"
-msgstr ""
+msgstr "Τύποι πίνακα"
#. CCSab
#: 02110100.xhp
@@ -2445,7 +2445,7 @@ msgctxt ""
"par_id3148783\n"
"help.text"
msgid "For table formulas, you can either jump to all table formulas located within your document with <emph>Table formula</emph> or only to the incorrect ones with <emph>Wrong table formula</emph>. For incorrect formulas, you jump only to formulas that have resulted in errors. The program skips over formulas with resulting errors (those that reference incorrect formulas)."
-msgstr ""
+msgstr "Για τύπους πινάκων, μπορείτε είτε να μεταβείτε σε όλους τους τύπους πινάκων που βρίσκονται στο έγγραφό σας με <emph>Τύπος πίνακα</emph>, είτε μόνο στους λανθασμένους με <emph>Λάθος τύπος πίνακα</emph>. Για λανθασμένους τύπους, μεταπηδάτε μόνο σε τύπους που έχουν οδηγήσει σε σφάλματα. Το πρόγραμμα παρακάμπτει τύπους με προκύπτοντα σφάλματα (αυτά που αναφέρονται σε λανθασμένους τύπους)."
#. hEEu6
#: 02120000.xhp
@@ -3741,7 +3741,7 @@ msgctxt ""
"hd_id3150685\n"
"help.text"
msgid "Automatic"
-msgstr ""
+msgstr "Αυτόματα"
#. aJhD6
#: 02150000.xhp
@@ -5451,7 +5451,7 @@ msgctxt ""
"par_id3153670\n"
"help.text"
msgid "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Automatically assigns consecutive numbers to the footnotes or endnotes that you insert.</ahelp> To change the settings for automatic numbering, choose <link href=\"text/swriter/01/06080000.xhp\"><emph>Tools - Footnote/Endnote Settings</emph></link>.</variable>"
-msgstr ""
+msgstr "<variable id=\"bearbeitenautomatisch\"><ahelp hid=\"modules/swriter/ui/insertfootnote/automatic\">Αναθέτει αυτόματα διαδοχικούς αριθμούς στις υποσημειώσεις ή τις σημειώσεις τέλους που εισάγετε.</ahelp> Για να αλλάξετε τις ρυθμίσεις για αυτόματη αρίθμηση, επιλέξτε. <link href=\"text/swriter/01/06080000.xhp\"><emph>Εργαλεία - Ρυθμίσεις υποσημείωσης/σημείωσης τέλους</emph></link>.</variable>"
#. bRDn5
#: 04030000.xhp
@@ -5487,7 +5487,7 @@ msgctxt ""
"par_id3153526\n"
"help.text"
msgid "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Inserts a <link href=\"text/shared/01/04100000.xhp\">special character</link> as a footnote or endnote anchor.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"bearbeitensonderzeichen\"><ahelp hid=\"modules/swriter/ui/insertfootnote/choosecharacter\">Εισάγει έναν <link href=\"text/shared/01/04100000.xhp\">ειδικό χαρακτήρα</link> ως υποσημείωση, ή άγκυρα σημείωσης τέλους.</ahelp></variable>"
#. CqdLB
#: 04030000.xhp
@@ -8457,7 +8457,7 @@ msgctxt ""
"par_id3155912\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldfuncpage/macro\">Opens the <emph>Macro Selector</emph> dialog, where you can choose the macro that will run when you click the selected field in the document.</ahelp> This button is only available for the \"Execute macro\" function field."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/fldfuncpage/macro\">Ανοίγει το παράθυρο διαλόγου <emph>Επιλογέας μακροεντολών</emph>, όπου μπορείτε να επιλέξετε τη μακροεντολή που θα εκτελεστεί όταν πατήσετε το επιλεγμένο πεδίο στο έγγραφο.</ahelp> Αυτό το πλήκτρο είναι διαθέσιμο μόνο για το πεδίο λειτουργίας \"Εκτέλεση μακροεντολής\"."
#. CB3DA
#: 04090003.xhp
@@ -9744,7 +9744,7 @@ msgctxt ""
"par_idN10772\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddbpage/browse\">Opens the Open dialog where you can select a database file (*.odb). The selected file is added to the Databases Selection list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/flddbpage/browse\">Ανοίγει το παράθυρο διαλόγου Άνοιγμα, όπου μπορείτε να επιλέξετε ένα αρχείο βάσης δεδομένων (*.odb). Το επιλεγμένο αρχείο προστίθεται στον κατάλογο Επιλογή βάσεων δεδομένων.</ahelp>"
#. BZDCz
#: 04090006.xhp
@@ -15225,7 +15225,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Εισάγει έναν πίνακα στο έγγραφο. Μπορείτε επίσης να πατήσετε το βέλος, να σύρετε για να επιλέξετε τον αριθμό των γραμμών και στηλών που θα συμπεριληφθούν στον πίνακα και, στη συνέχεια, να πατήσετε το τελευταίο κελί.</ahelp></variable>"
#. m7tXV
#: 04150000.xhp
@@ -15576,7 +15576,7 @@ msgctxt ""
"par_idN106DF\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/exchangedatabases/browse\">Opens the Open dialog to select a database file (*.odb). The selected file is added to the Available Databases list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/exchangedatabases/browse\">Ανοίγει το παράθυρο διαλόγου Άνοιγμα για να επιλέξετε ένα αρχείο βάσης δεδομένων (*.odb). Το επιλεγμένο αρχείο προστίθεται στον κατάλογο Διαθέσιμες βάσεις δεδομένων.</ahelp>"
#. BBDeX
#: 04180400.xhp
@@ -16179,7 +16179,7 @@ msgctxt ""
"hd_id3145415\n"
"help.text"
msgid "Compound constituent characters at line end"
-msgstr ""
+msgstr "Σύνθετοι χαρακτήρες στο τέλος της γραμμής"
#. NfpHX
#: 05030200.xhp
@@ -16188,7 +16188,7 @@ msgctxt ""
"par_id3147518\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/spinCompoundLineEnd\">Set 3 (or more) characters to improve the hyphenation in Danish, Dutch, German, Hungarian, Norwegian and Swedish by preferring the hyphenation between constituents of a compound word instead of breaking the second (third etc.) constituent right after its first 2 characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/spinCompoundLineEnd\">Ορίστε 3 (ή περισσότερους) χαρακτήρες για να βελτιώσετε τον συλλαβισμό στα Δανικά, Ολλανδικά, Γερμανικά, Ουγγρικά, Νορβηγικά και Σουηδικά, προτιμώντας τον συλλαβισμό μεταξύ των συστατικών μιας σύνθετης λέξης αντί για σπάσιμο του δεύτερου (τρίτου κ.λπ.) συστατικού αμέσως μετά τους 2 πρώτους χαρακτήρες του.</ahelp>"
#. haMfk
#: 05030200.xhp
@@ -16251,7 +16251,7 @@ msgctxt ""
"hd_id3153921\n"
"help.text"
msgid "Hyphenate words in CAPS"
-msgstr ""
+msgstr "Συλλαβισμός λέξεων με ΚΕΦΑΛΑΙΑ"
#. 7A5V4
#: 05030200.xhp
@@ -16260,7 +16260,7 @@ msgctxt ""
"par_id3154648\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Hyphenate words written entirely in capital letters, such as initialisms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Συλλαβίστε τις λέξεις που είναι γραμμένες εξ ολοκλήρου με κεφαλαία γράμματα, όπως αρχικισμούς.</ahelp>"
#. 5FoUE
#: 05030200.xhp
@@ -16269,7 +16269,7 @@ msgctxt ""
"hd_id3153926\n"
"help.text"
msgid "Hyphenate last word"
-msgstr ""
+msgstr "Συλλαβισμός τελευταίας λέξης"
#. 9shSg
#: 05030200.xhp
@@ -16278,7 +16278,7 @@ msgctxt ""
"par_id3154655\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Hyphenate the last word of paragraphs. Disabling this feature prevents the creation of almost empty lines containing only half a word.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Συλλαβίστε την τελευταία λέξη των παραγράφων. Η απενεργοποίηση αυτής της δυνατότητας αποτρέπει τη δημιουργία σχεδόν άδειων γραμμών που περιέχουν μόνο μισή λέξη.</ahelp>"
#. pdCQw
#: 05030200.xhp
@@ -16287,7 +16287,7 @@ msgctxt ""
"hd_id3153667\n"
"help.text"
msgid "Hyphenation across"
-msgstr ""
+msgstr "Συλλαβισμός παντού"
#. puChR
#: 05030200.xhp
@@ -16296,7 +16296,7 @@ msgctxt ""
"par_id3154669\n"
"help.text"
msgid "Control hyphenation in the last line of a column, page or spread, and last full line of a paragraph, according to certain typographical rules to improve readability."
-msgstr ""
+msgstr "Ελέγξτε τον συλλαβισμό στην τελευταία γραμμή μιας στήλης, σελίδας ή αντικριστές σελίδες και την τελευταία πλήρη γραμμή μιας παραγράφου, σύμφωνα με ορισμένους τυπογραφικούς κανόνες για τη βελτίωση της αναγνωσιμότητας."
#. YP4Kd
#: 05030200.xhp
@@ -16305,7 +16305,7 @@ msgctxt ""
"hd_id3158928\n"
"help.text"
msgid "Last full line of paragraph"
-msgstr ""
+msgstr "Τελευταία πλήρης γραμμή της παραγράφου"
#. ytHzx
#: 05030200.xhp
@@ -16314,7 +16314,7 @@ msgctxt ""
"par_id3184662\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossParagraph\">Deselect this check box to prevent last full line of a paragraph from being hyphenated. The hyphenated word is moved to the next line if there is enough space for it. As a result, the last line of the paragraph becomes longer, reducing the blank space between paragraphs.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossParagraph\">Αποεπιλέξτε αυτό το πλαίσιο ελέγχου για να αποτρέψετε τον συλλαβισμό στην τελευταία πλήρη γραμμή μιας παραγράφου. Η λέξη με συλλαβισμό μετακινείται στην επόμενη γραμμή, εάν υπάρχει αρκετός χώρος για αυτήν. Ως αποτέλεσμα, η τελευταία γραμμή της παραγράφου γίνεται μεγαλύτερη, μειώνοντας το κενό διάστημα μεταξύ των παραγράφων.</ahelp>"
#. wDS2K
#: 05030200.xhp
@@ -16323,7 +16323,7 @@ msgctxt ""
"hd_id3153928\n"
"help.text"
msgid "Column"
-msgstr ""
+msgstr "Στήλη"
#. BG7Ek
#: 05030200.xhp
@@ -16332,7 +16332,7 @@ msgctxt ""
"par_id3154662\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossColumn\">Deselect this check box to prevent words from being hyphenated across a column, linked frame or page. The hyphenated line is moved to the next column, frame or page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossColumn\">Αποεπιλέξτε αυτό το πλαίσιο ελέγχου για να αποτρέψετε τον συλλαβισμό των λέξεων σε μια στήλη, συνδεδεμένο πλαίσιο ή σελίδα. Η συλλαβισμένη γραμμή μετακινείται στην επόμενη στήλη, πλαίσιο ή σελίδα.</ahelp>"
#. UvaFd
#: 05030200.xhp
@@ -16341,7 +16341,7 @@ msgctxt ""
"hd_id3153929\n"
"help.text"
msgid "Page"
-msgstr ""
+msgstr "Σελίδα"
#. dGbdQ
#: 05030200.xhp
@@ -16350,7 +16350,7 @@ msgctxt ""
"par_id3154665\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossPage\">Deselect this check box to prevent words from being hyphenated across a page. The hyphenated line is moved to the next page. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossPage\">Αποεπιλέξτε αυτό το πλαίσιο ελέγχου για να αποτρέψετε τον συλλαβισμό των λέξεων σε μια σελίδα. Η γραμμή με συλλαβισμό μετακινείται στην επόμενη σελίδα. </ahelp>"
#. BWaTs
#: 05030200.xhp
@@ -16359,7 +16359,7 @@ msgctxt ""
"hd_id3153930\n"
"help.text"
msgid "Spread"
-msgstr ""
+msgstr "Αντικριστές σελίδες"
#. 6ZKYo
#: 05030200.xhp
@@ -16368,7 +16368,7 @@ msgctxt ""
"par_id3154666\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkAcrossSpread\">Deselect this check box to prevent words from being hyphenated across a spread. (A spread is a set of two pages that are visible to the reader at the same time.) The hyphenated line is moved to the next spread.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkAcrossSpread\">Αποεπιλέξτε αυτό το πλαίσιο ελέγχου για να αποτρέψετε τον συλλαβισμό των λέξεων σε αντικριστές σελίδες. (Αντικριστές σελίδες (spread) είναι ένα σύνολο δύο σελίδων που είναι ορατές στον αναγνώστη ταυτόχρονα.) Η γραμμή με συλλαβισμό μετακινείται στις επόμενες αντικριστές σελίδες.</ahelp>"
#. RQLep
#: 05030200.xhp
@@ -18771,7 +18771,7 @@ msgctxt ""
"par_id981629211796563\n"
"help.text"
msgid "<emph>Page text area:</emph> from the inner edge of the left page padding to the inner edge of the right page padding."
-msgstr ""
+msgstr "<emph>Περιοχή κειμένου σελίδας:</emph> από την εσωτερική άκρη της αριστερής συμπλήρωσης σελίδας έως την εσωτερική άκρη της δεξιάς συμπλήρωσης σελίδας."
#. JuoS4
#: 05060100.xhp
@@ -18969,7 +18969,7 @@ msgctxt ""
"par_id481629212019833\n"
"help.text"
msgid "<emph>Paragraph text area:</emph> the object is positioned considering the beginning of the paragraph where the anchor is placed."
-msgstr ""
+msgstr "<emph>Περιοχή κειμένου παραγράφου:</emph> το αντικείμενο τοποθετείται λαμβάνοντας υπόψη την αρχή της παραγράφου όπου τοποθετείται η άγκυρα."
#. 2i9ic
#: 05060100.xhp
@@ -20967,7 +20967,7 @@ msgctxt ""
"par_id3149109\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Locate the file that you want the hyperlink to open, and then click <emph>Open</emph>.</ahelp> The target file can be on your machine or on the Internet."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/frmurlpage/search\">Εντοπίστε το αρχείο που θέλετε να ανοίξει ο υπερσύνδεσμος και, στη συνέχεια, πατήστε το <emph>Άνοιγμα</emph>.</ahelp> Το αρχείο προορισμού μπορεί να βρίσκεται στο μηχάνημά σας ή στο Διαδίκτυο."
#. dD4Y3
#: 05060800.xhp
@@ -22758,7 +22758,7 @@ msgctxt ""
"hd_id3148489\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/05120400.xhp\">Insert Columns/Rows</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/05120400.xhp\">Εισαγωγή στηλών/γραμμών</link></variable>"
#. mB89i
#: 05120400.xhp
@@ -22767,7 +22767,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "<variable id=\"einfuegentext\">Inserts a row or column into the table. This command is only available when the cursor is in a table. </variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegentext\">Εισάγει μια γραμμή ή στήλη στον πίνακα. Αυτή η εντολή είναι διαθέσιμη μόνο όταν ο δρομέας βρίσκεται σε έναν πίνακα. </variable>"
#. Bphk7
#: 05120400.xhp
@@ -23363,14 +23363,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Η άμεση μορφοποίηση υπερισχύει οποιασδήποτε παρεχόμενης μορφοποίησης από τεχνοτροπία χαρακτήρα. Για να αφαιρέσετε άμεση μορφοποίηση από επιλογή, χρησιμοποιήστε <menuitem>Μορφή - Καθαρισμός άμεσης μορφοποίησης</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Χρησιμοποιήστε την ενότητα <emph>Περιέχει</emph> στιν Οργανωτή για να δείτε τις ιδιότητες της τεχνοτροπίας χαρακτήρα."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
@@ -27672,7 +27672,7 @@ msgctxt ""
"par_id921693534308719\n"
"help.text"
msgid "<link href=\"text/shared/menu/style_menu.xhp\">Styles menu</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/menu/style_menu.xhp\">Μενού τεχνοτροπιών</link>"
#. PDPrT
#: HeadingRowsRepeat.xhp
@@ -27771,7 +27771,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Characters"
-msgstr ""
+msgstr "Χαρακτήρες οπτικής επισήμανσης (Spotlight)"
#. RPAjL
#: SpotlightCharStyles.xhp
@@ -27780,7 +27780,7 @@ msgctxt ""
"bm_id71705516048353\n"
"help.text"
msgid "<bookmark_value>style spotlight;character styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>τεχνοτροπία οπτικής επισήμανσης; τεχνοτροπίες χαρακτήρων</bookmark_value>"
#. MJkww
#: SpotlightCharStyles.xhp
@@ -27789,7 +27789,7 @@ msgctxt ""
"hd_id31705511866295\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightCharStyles.xhp\">Spotlight Character Styles</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightCharStyles.xhp\">Τεχνοτροπίες χαρακτήρων οπτικής επισήμανσης (Spotlight)</link></variable>"
#. 4LbDW
#: SpotlightCharStyles.xhp
@@ -27798,7 +27798,7 @@ msgctxt ""
"par_id481705511866297\n"
"help.text"
msgid "Activates spotlighting of character styles."
-msgstr ""
+msgstr "Ενεργοποιεί την οπτική επισήμανση των τεχνοτροπιών χαρακτήρων."
#. yiY4A
#: SpotlightCharStyles.xhp
@@ -27807,7 +27807,7 @@ msgctxt ""
"par_id881705514569887\n"
"help.text"
msgid "Spotlighting character styles allows a better control of the application of character styles in the document."
-msgstr ""
+msgstr "Οι τεχνοτροπίες χαρακτήρων οπτικής επισήμανσης (Spotlighting) επιτρέπουν καλύτερο έλεγχο της εφαρμογής των τεχνοτροπιών χαρακτήρων στο έγγραφο."
#. iYu9G
#: SpotlightCharStyles.xhp
@@ -27816,7 +27816,7 @@ msgctxt ""
"par_id171705512039793\n"
"help.text"
msgid "Character style spotlight displays the styled characters with a background color and a call-out with a unique number for each applied character style in the document. The background color and call-out number are also displayed in the corresponding character entry in the <menuitem>Styles</menuitem> deck on the sidebar."
-msgstr ""
+msgstr "Η οπτική επισήμανση τεχνοτροπιών χαρακτήρων εμφανίζει τους χαρακτήρες των τεχνοτροπιών με χρώμα παρασκηνίου και μια κλήση με έναν μοναδικό αριθμό για κάθε εφαρμοσμένη τεχνοτροπία χαρακτήρων στο έγγραφο. Το χρώμα παρασκηνίου και ο αριθμός κλήσης εμφανίζονται επίσης στην αντίστοιχη καταχώρηση χαρακτήρων στην προσάρτηση <menuitem>Τεχνοτροπίες</menuitem> της πλαϊνής γραμμής."
#. o7SqG
#: SpotlightCharStyles.xhp
@@ -27825,7 +27825,7 @@ msgctxt ""
"par_id371705509091105\n"
"help.text"
msgid "Character styles are not given a color and call-out number until they are applied in the document."
-msgstr ""
+msgstr "Στις τεχνοτροπίες χαρακτήρων δεν δίνεται χρώμα και αριθμός κλήσης μέχρι να εφαρμοστούν στο έγγραφο."
#. 2y7si
#: SpotlightCharStyles.xhp
@@ -27834,7 +27834,7 @@ msgctxt ""
"par_id21705518127906\n"
"help.text"
msgid "When the extended tips features is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools – Options</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – General</menuitem>, a tooltip shows the style name and many attributes of the style applied."
-msgstr ""
+msgstr "Όταν οι λειτουργίες εκτεταμένων συμβουλών είναι ενεργοποιημένες στις <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline><menuitem>Εργαλεία – Επιλογές</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – Γενικά</menuitem>, μια επεξήγηση εργαλείου δείχνει το όνομα της τεχνοτροπίας και πολλά χαρακτηριστικά της τεχνοτροπίας που εφαρμόζεται."
#. FHGBF
#: SpotlightCharStyles.xhp
@@ -27843,7 +27843,7 @@ msgctxt ""
"par_id811705512892082\n"
"help.text"
msgid "Character direct formatting attributes are <link href=\"text/shared/01/05020100.xhp\">Font</link>, <link href=\"text/shared/01/05020200.xhp\">Font Effects</link>, <link href=\"text/shared/01/05020500.xhp\">Position</link>, <link href=\"text/shared/01/05020600.xhp\">Asian Layout</link>, <link href=\"text/shared/01/05020400.xhp\">Hyperlink</link>, <link href=\"text/shared/01/05210100.xhp\">Highlighting</link> and <link href=\"text/shared/01/05030500.xhp\">Borders</link>."
-msgstr ""
+msgstr "Τα χαρακτηριστικά άμεσης μορφοποίησης χαρακτήρων είναι <link href=\"text/shared/01/05020100.xhp\">Γραμματοσειρά</link>, <link href=\"text/shared/01/05020200.xhp\">Εφέ γραμματοσειράς</link>, <link href=\"text/shared/01/05020500.xhp\">Θέση</link>, <link href=\"text/shared/01/05020600.xhp\">Ασιατική διάταξη</link>, <link href=\"text/shared/01/05020400.xhp\">Υπερσύνδεσμος</link>, <link href=\"text/shared/01/05210100.xhp\">Επισήμανση</link> και <link href=\"text/shared/01/05030500.xhp\">Όρια</link>."
#. deFpQ
#: SpotlightCharStyles.xhp
@@ -27852,7 +27852,7 @@ msgctxt ""
"par_id791705511272699\n"
"help.text"
msgid "Use the <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link> command to display character direct formatting."
-msgstr ""
+msgstr "Χρησιμοποιήστε την εντολή <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Άμεση μορφοποίηση χαρακτήρων οπτικής επισήμανσης (Spotlight)</link> για να εμφανίσετε την άμεση μορφοποίηση χαρακτήρων."
#. GD8i8
#: SpotlightMenu.xhp
@@ -27861,7 +27861,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Menu"
-msgstr ""
+msgstr "Μενού οπτικής επισήμανσης (Spotlight)"
#. bKTbg
#: SpotlightMenu.xhp
@@ -27870,7 +27870,7 @@ msgctxt ""
"hd_id381705504492179\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightMenu.xhp\">Spotlight</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightMenu.xhp\">Οπτική επισήμανση (Spotlight)</link></variable>"
#. MzTFm
#: SpotlightMenu.xhp
@@ -27879,7 +27879,7 @@ msgctxt ""
"par_id181705504492181\n"
"help.text"
msgid "Opens a submenu to access styles spotlight commands."
-msgstr ""
+msgstr "Ανοίγει ένα υπομενού για να αποκτήσετε πρόσβαση στις εντολές οπτικής επισήμανσης τεχνοτροπιών."
#. 4VPqr
#: SpotlightParaStyles.xhp
@@ -27888,7 +27888,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Spotlight Paragraphs"
-msgstr ""
+msgstr "Παράγραφοι οπτικής επισήμανσης (Spotlight)"
#. XWYNq
#: SpotlightParaStyles.xhp
@@ -27897,7 +27897,7 @@ msgctxt ""
"bm_id851705516087312\n"
"help.text"
msgid "<bookmark_value>style spotlight;paragraph styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>οπτική επισήμανση τεχνοτροπίας; τεχνοτροπίες παραγράφων</bookmark_value>"
#. VUQDd
#: SpotlightParaStyles.xhp
@@ -27906,7 +27906,7 @@ msgctxt ""
"hd_id61705507661379\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightParaStyles.xhp\">Spotlight Paragraph Styles</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/SpotlightParaStyles.xhp\">Τεχνοτροπίες παραγράφου οπτικής επισήμανσης (Spotlight)</link></variable>"
#. XkG4s
#: SpotlightParaStyles.xhp
@@ -27915,7 +27915,7 @@ msgctxt ""
"par_id161705507661381\n"
"help.text"
msgid "Activates spotlighting of paragraph styles."
-msgstr ""
+msgstr "Ενεργοποιεί την οπτική επισήμανση των τεχνοτροπιών παραγράφων."
#. pfGrJ
#: SpotlightParaStyles.xhp
@@ -27924,7 +27924,7 @@ msgctxt ""
"par_id651705514526491\n"
"help.text"
msgid "Spotlighting paragraphs styles allows a better control of the application of paragraph styles in the document."
-msgstr ""
+msgstr "Οι τεχνοτροπίες παραγράφων με οπτική επισήμανση επιτρέπουν καλύτερο έλεγχο της εφαρμογής των τεχνοτροπιών παραγράφων στο έγγραφο."
#. EC7t8
#: SpotlightParaStyles.xhp
@@ -27933,7 +27933,7 @@ msgctxt ""
"par_id181705509762659\n"
"help.text"
msgid "Paragraph spotlight displays a color and a unique number code for each applied paragraph style in the document. The color and number are also displayed in the corresponding paragraph entry in the <menuitem>Styles</menuitem> deck on the sidebar."
-msgstr ""
+msgstr "Η οπτική επισήμανση παραγράφου εμφανίζει ένα χρώμα και έναν μοναδικό κωδικό αριθμού για κάθε τεχνοτροπία παραγράφου που εφαρμόζεται στο έγγραφο. Το χρώμα και ο αριθμός εμφανίζονται επίσης στην αντίστοιχη καταχώρηση παραγράφου στην προσάρτηση <menuitem>Τεχνοτροπίες</menuitem> στην πλαϊνή γραμμή."
#. D7pE4
#: SpotlightParaStyles.xhp
@@ -27942,7 +27942,7 @@ msgctxt ""
"par_id371705509091105\n"
"help.text"
msgid "Paragraph styles are not given a color and number until they are applied in the document."
-msgstr ""
+msgstr "Στις τεχνοτροπίες παραγράφου δεν δίνεται χρώμα και αριθμός μέχρι να εφαρμοστούν στο έγγραφο."
#. EjjN7
#: SpotlightParaStyles.xhp
@@ -27951,7 +27951,7 @@ msgctxt ""
"par_id971705509770048\n"
"help.text"
msgid "in addition to the color and unique number assigned to the style, paragraphs with paragraph direct formatting attributes are indicated with a hash pattern in the visual indicator on the left margin."
-msgstr ""
+msgstr "Εκτός από το χρώμα και τον μοναδικό αριθμό που έχει εκχωρηθεί στην τεχνοτροπία, οι παράγραφοι με χαρακτηριστικά άμεσης μορφοποίησης παραγράφου υποδεικνύονται με ένα μοτίβο κατακερματισμού στην οπτική ένδειξη στο αριστερό περιθώριο."
#. dGKyi
#: SpotlightParaStyles.xhp
@@ -27960,7 +27960,7 @@ msgctxt ""
"par_id21705518127906\n"
"help.text"
msgid "When the extended tips features is enabled in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools – Options</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – General</menuitem>, a tooltip shows the style name and many attributes of the style applied."
-msgstr ""
+msgstr "Όταν οι λειτουργίες εκτεταμένων συμβουλών είναι ενεργοποιημένες στα <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Προτιμήσεις</menuitem></caseinline><defaultinline><menuitem>Εργαλεία – Επιλογές</menuitem></defaultinline></switchinline><menuitem> – LibreOffice – Γενικά</menuitem>, μια επεξήγηση εργαλείου δείχνει το όνομα της τεχνοτροπίας και πολλά χαρακτηριστικά της τεχνοτροπίας που εφαρμόζεται."
#. LBxh4
#: SpotlightParaStyles.xhp
@@ -27969,7 +27969,7 @@ msgctxt ""
"par_id881705514965520\n"
"help.text"
msgid "Paragraph direct formatting attributes are <link href=\"text/swriter/01/05030800.xhp\">Outline & List</link>, <link href=\"text/shared/01/05030100.xhp\">Indents & Spacing</link>, <link href=\"text/shared/01/05030300.xhp\">Tabs</link>, <link href=\"text/shared/01/05210100.xhp\">Area</link>, <link href=\"text/shared/01/05210700.xhp\">Transparency</link>, <link href=\"text/shared/01/05030500.xhp\">Borders</link>, <link href=\"text/swriter/01/05030400.xhp\">Drop Caps</link>, <link href=\"text/shared/01/05030700.xhp\">Alignment</link>, <link href=\"text/swriter/01/05030200.xhp\">Text Flow</link> and <link href=\"text/shared/01/05020700.xhp\">Asian Typography</link>."
-msgstr ""
+msgstr "Τα χαρακτηριστικά άμεσης μορφοποίησης παραγράφου είναι <link href=\"text/swriter/01/05030800.xhp\">Περίγραμμα και κατάλογος</link>, <link href=\"text/shared/01/05030100.xhp\">Εσοχές και απόσταση</link>, <link href=\"text/shared/01/05030300.xhp\">Καρτέλες</link>, <link href=\"text/shared/01/05210100.xhp\">Περιοχή</link>, <link href =\"text/shared/01/05210700.xhp\">Διαφάνεια</link>, <link href=\"text/shared/01/05030500.xhp\">Όρια</link>, <link href=\"text/swriter/ 01/05030400.xhp\">Αρχιγράμματα</link>, <link href=\"text/shared/01/05030700.xhp\">Στοίχιση</link>, <link href=\"text/swriter/01/05030200.xhp \">Ροή κειμένου</link> και <link href=\"text/shared/01/05020700.xhp\">Ασιατική τυπογραφία</link>."
#. GjJbR
#: SpotlightParaStyles.xhp
@@ -27978,7 +27978,7 @@ msgctxt ""
"par_id221705510181740\n"
"help.text"
msgid "Character properties are not attributes of paragraph direct formatting properties, therefore character styles and character direct formatting does not affect paragraph spotlighting."
-msgstr ""
+msgstr "Οι ιδιότητες χαρακτήρων δεν είναι χαρακτηριστικά των ιδιοτήτων άμεσης μορφοποίησης παραγράφων, επομένως οι τεχνοτροπίες χαρακτήρων και η άμεση μορφοποίηση χαρακτήρων δεν επηρεάζουν την οπτική επισήμανση των παραγράφων."
#. 4FHSb
#: SpotlightParaStyles.xhp
@@ -27987,7 +27987,7 @@ msgctxt ""
"par_id791705511272699\n"
"help.text"
msgid "Use the <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link> command to display character direct formatting."
-msgstr ""
+msgstr "Χρησιμοποιήστε την εντολή <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Άμεση μορφοποίηση χαρακτήρων οπτικής επισήμανσης</link> για να εμφανίσετε την άμεση μορφοποίηση χαρακτήρων."
#. BEqCH
#: TableAutoFitMenu.xhp
@@ -29175,7 +29175,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the New dialog to select a template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ανοίγει το παράθυρο διαλόγου Νέο για να επιλέξετε ένα πρότυπο.</ahelp>"
#. gX5EY
#: mailmerge01.xhp
@@ -32361,7 +32361,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paragraph Signature"
-msgstr ""
+msgstr "Υπογραφή παραγράφου"
#. gRHvt
#: paragraph_signature.xhp
@@ -32370,7 +32370,7 @@ msgctxt ""
"bm_id121713380761462\n"
"help.text"
msgid "<bookmark_value>paragraph signature</bookmark_value> <bookmark_value>insert;paragraph signature</bookmark_value> <bookmark_value>paragraph signature;inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>υπογραφή παραγράφου</bookmark_value><bookmark_value>εισαγωγή; υπογραφή παραγράφου</bookmark_value><bookmark_value>υπογραφή παραγράφου; εισαγωγή</bookmark_value>"
#. qctbD
#: paragraph_signature.xhp
@@ -32379,7 +32379,7 @@ msgctxt ""
"hd_id881713200146819\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Paragraph Signature</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Υπογραφή παραγράφου</link></variable>"
#. tkAgS
#: paragraph_signature.xhp
@@ -32388,7 +32388,7 @@ msgctxt ""
"par_id921713200146822\n"
"help.text"
msgid "Adds a digital signature to the end of any paragraph. You must have a digital certificate to sign a paragraph."
-msgstr ""
+msgstr "Προσθέτει μια ψηφιακή υπογραφή στο τέλος οποιασδήποτε παραγράφου. Πρέπει να έχετε ψηφιακό πιστοποιητικό για να υπογράψετε μια παράγραφο."
#. 7ECor
#: paragraph_signature.xhp
@@ -32397,7 +32397,7 @@ msgctxt ""
"par_id131713363687715\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Εισαγωγή - Πεδίο - Περισσότερα πεδία - Έγγραφο</menuitem>, επιλέξτε <menuitem>Υπογραφή παραγράφου</menuitem> στο πλαίσιο <menuitem>Τύπος</menuitem>, πατήστε το <menuitem>Εισαγωγή</menuitem>."
#. zNy5w
#: paragraph_signature.xhp
@@ -32406,7 +32406,7 @@ msgctxt ""
"par_id11713367261401\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Εισαγωγή - Πεδίο - Περισσότερα πεδία - Έγγραφο</menuitem>, επιλέξτε <menuitem>Υπογραφή παραγράφου</menuitem> στο πλαίσιο <menuitem>Τύπος</menuitem>, πατήστε το <menuitem>Εισαγωγή</menuitem>."
#. 7HoLm
#: paragraph_signature.xhp
@@ -32415,7 +32415,7 @@ msgctxt ""
"par_id271713381238721\n"
"help.text"
msgid "Choose <menuitem>Home - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Επιλέξτε την καρτέλα <menuitem>Αρχική σελίδα - Πεδίο - Περισσότερα πεδία - Έγγραφο</menuitem>, επιλέξτε <menuitem>Υπογραφή παραγράφου</menuitem> στο πλαίσιο <menuitem>Τύπος</menuitem>, πατήστε <menuitem>Εισαγωγή</menuitem>."
#. dwYB5
#: paragraph_signature.xhp
@@ -32424,7 +32424,7 @@ msgctxt ""
"par_id81713381120150\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode> and choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Εντολή</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode> και επιλέξτε <menuitem>Υπογραφή παραγράφου</menuitem> στο πλαίσιο <menuitem>Τύπος</menuitem>, πατήστε το <menuitem>Εισαγωγή</menuitem>."
#. hzye6
#: paragraph_signature.xhp
@@ -32433,7 +32433,7 @@ msgctxt ""
"par_id781713200328847\n"
"help.text"
msgid "A paragraph signature includes meta-data for the user who created the signature and the date the signature was created. Either <emph>Valid</emph> or <emph>Invalid</emph> is displayed as text at the end of a paragraph signature. By default, it displays <emph>Valid</emph>. If the paragraph is modified in any way after the paragraph signature is added, the signature changes to <emph>Invalid</emph>."
-msgstr ""
+msgstr "Μια υπογραφή παραγράφου περιλαμβάνει μεταδεδομένα του χρήστη που δημιούργησε την υπογραφή και την ημερομηνία δημιουργίας της υπογραφής. Είτε το <emph>Έγκυρο</emph>, είτε το <emph>Άκυρο</emph> εμφανίζεται ως κείμενο στο τέλος μιας υπογραφής παραγράφου. Από προεπιλογή, εμφανίζεται <emph>Έγκυρο</emph>. Εάν η παράγραφος τροποποιηθεί με οποιονδήποτε τρόπο μετά την προσθήκη της υπογραφής της παραγράφου, η υπογραφή αλλάζει σε <emph>Άκυρο</emph>."
#. M8sFC
#: paragraph_signature.xhp
@@ -32442,7 +32442,7 @@ msgctxt ""
"par_id11713381369787\n"
"help.text"
msgid "Upon saving a document, any <emph>Invalid</emph> paragraph signatures are automatically deleted."
-msgstr ""
+msgstr "Κατά την αποθήκευση ενός εγγράφου, τυχόν <emph>άκυρες</emph> υπογραφές παραγράφου διαγράφονται αυτόματα."
#. YuhXV
#: paragraph_signature.xhp
@@ -32451,7 +32451,7 @@ msgctxt ""
"par_id721713200319243\n"
"help.text"
msgid "A paragraph signature will indicate whether or not a particular paragraph has been modified at any time after the signature was inserted. Multiple paragraph signatures can be added, and each signature is independent from each other."
-msgstr ""
+msgstr "Μια υπογραφή παραγράφου θα υποδεικνύει εάν μια συγκεκριμένη παράγραφος έχει τροποποιηθεί ή όχι οποιαδήποτε στιγμή μετά την εισαγωγή της υπογραφής. Μπορούν να προστεθούν πολλές υπογραφές παραγράφων και κάθε υπογραφή είναι ανεξάρτητη η μία από την άλλη."
#. pY7M5
#: paragraph_signature.xhp
@@ -32460,7 +32460,7 @@ msgctxt ""
"hd_id351713200369156\n"
"help.text"
msgid "To Insert a Paragraph Signature"
-msgstr ""
+msgstr "Για να εισαγάγετε μια υπογραφή παραγράφου"
#. QooWx
#: paragraph_signature.xhp
@@ -32469,7 +32469,7 @@ msgctxt ""
"par_id271713363489589\n"
"help.text"
msgid "After navigating to Paragraph Signature in the More Fields dialog, click Insert to open the Select Certificate dialog."
-msgstr ""
+msgstr "Αφού πλοηγηθείτε στην Υπογραφή παραγράφου στο παράθυρο διαλόγου Περισσότερα πεδία, πατήστε την Εισαγωγή για να ανοίξετε το παράθυρο διαλόγου Επιλογή πιστοποιητικού."
#. AnEqV
#: paragraph_signature.xhp
@@ -32478,7 +32478,7 @@ msgctxt ""
"par_id81713200406731\n"
"help.text"
msgid "A paragraph signature will always be inserted at the end of the currently selected paragraph. If the text cursor is not currently located within a paragraph of text, the Select Certificate dialog will not open."
-msgstr ""
+msgstr "Μια υπογραφή παραγράφου θα παρεμβάλλεται πάντα στο τέλος της τρέχουσας επιλεγμένης παραγράφου. Εάν ο δρομέας κειμένου δεν βρίσκεται επί του παρόντος σε μια παράγραφο κειμένου, το παράθυρο διαλόγου Επιλογή πιστοποιητικού δεν θα ανοίξει."
#. SnJga
#: paragraph_signature.xhp
@@ -32487,7 +32487,7 @@ msgctxt ""
"par_id471713368898713\n"
"help.text"
msgid "The Select Certificate dialog lists any of your digital certificates that are available for use. Choose the desired certificate and select <emph>Sign</emph> to insert a paragraph signature using the chosen digital certificate."
-msgstr ""
+msgstr "Το παράθυρο διαλόγου Επιλογή πιστοποιητικού εμφανίζει οποιοδήποτε από τα ψηφιακά πιστοποιητικά σας που είναι διαθέσιμα για χρήση. Επιλέξτε το πιστοποιητικό που θέλετε και επιλέξτε <emph>Υπογραφή</emph> για να εισαγάγετε μια υπογραφή παραγράφου χρησιμοποιώντας το επιλεγμένο ψηφιακό πιστοποιητικό."
#. UXCCL
#: paragraph_signature.xhp
@@ -32496,7 +32496,7 @@ msgctxt ""
"par_id581713367684220\n"
"help.text"
msgid "You must have a digital certificate in order to begin <link href=\"text/shared/guide/digitalsign_send.xhp\">Applying Digital Signatures</link>."
-msgstr ""
+msgstr "Πρέπει να έχετε ψηφιακό πιστοποιητικό για να ξεκινήσετε την <link href=\"text/shared/guide/digitalsign_send.xhp\">Εφαρμογή ψηφιακών υπογραφών</link>."
#. o5ZPq
#: protectdocument.xhp
@@ -32703,7 +32703,7 @@ msgctxt ""
"bm_id401688481259265\n"
"help.text"
msgid "<bookmark_value>characters direct formatting;spotlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>άμεση μορφοποίηση χαρακτήρων; οπτική επισήμανση (spotlighting)</bookmark_value>"
#. MF8kD
#: spotlight_chars_df.xhp
@@ -32712,7 +32712,7 @@ msgctxt ""
"hd_id141692649960795\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_chars_df.xhp\">Character Direct Formatting</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_chars_df.xhp\">Άμεση μορφοποίηση χαρακτήρων</link></variable>"
#. jcTBb
#: spotlight_chars_df.xhp
@@ -33045,7 +33045,7 @@ msgctxt ""
"bm_id300920161717389897\n"
"help.text"
msgid "<bookmark_value>page;title page</bookmark_value><bookmark_value>title page;numbering</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>σελίδα; σελίδα τίτλου</bookmark_value><bookmark_value>σελίδα τίτλου; αρίθμηση</bookmark_value>"
#. efYTZ
#: title_page.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/02.po b/source/el/helpcontent2/source/text/swriter/02.po
index ea0634e5160..f5867931739 100644
--- a/source/el/helpcontent2/source/text/swriter/02.po
+++ b/source/el/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2023-11-26 17:37+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/el/>\n"
"Language: el\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1513247844.000000\n"
#. sqxGb
@@ -3686,7 +3686,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Date (Fixed)"
-msgstr ""
+msgstr "Ημερομηνία (Σταθερό)"
#. 8mad6
#: 18030100.xhp
@@ -3722,7 +3722,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Time (Fixed)"
-msgstr ""
+msgstr "Χρόνος (Σταθερός)"
#. yxN2Q
#: 18030200.xhp
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 4eceb697870..b77f1e4e38e 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1564497859.000000\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Στον κατάλογο των τεχνοτροπιών σελίδας, δεξιοπατήστε \"Αριστερή Σελίδα\" και επιλέξτε <emph>Τροποποίηση</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Πατήστε στην καρτέλα <emph>Διαχείριση</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7091,14 +7091,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Μπορείτε να χρησιμοποιήσετε διαφορετικές κεφαλίδες και υποσέλιδα σε διαφορετικές σελίδες στο έγγραφό σας, όσο αυτές χρησιμοποιούν διαφορετικές τεχνοτροπίες σελίδας. Το $[officename] παρέχει πολλές προκαθορισμένες τεχνοτροπίες σελίδας όπως <emph>Πρώτη σελίδα</emph>, <emph>Αριστερή σελίδα</emph> και <emph>Δεξιά σελίδα</emph>, ή μπορείτε εσείς να δημιουργήσετε μια προσαρμοσμένη τεχνοτροπία σελίδας."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Μπορείτε επίσης να χρησιμοποιήσετε τη διάταξη σελίδας με αντικατοπτρισμό, εάν θέλετε να προσθέσετε μια κεφαλίδα σε μια τεχνοτροπία σελίδας που έχει διαφορετικά εσωτερικά και εξωτερικά περιθώρια σελίδας. Για να εφαρμόσετε αυτήν την επιλογή σε μια τεχνοτροπία σελίδας, επιλέξτε <item type=\"menuitem\">Μορφή - Τεχνοτροπία σελίδας</item>, πατήστε στην καρτέλα <item type=\"menuitem\">Σελίδα</item> και στην περιοχή <item type=\"menuitem\">Ρυθμίσεις διάταξης</item>, επιλέξτε \"Με αντικατοπτρισμό\" στο πλαίσιο <item type=\"menuitem\">Διάταξη σελίδας</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7136,32 +7136,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Δεξιοπατήστε \"Δεξιά σελίδα\" στον κατάλογο τεχνοτροπιών σελίδας και επιλέξτε <emph>Τροποποίηση</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Στον διάλογο <item type=\"menuitem\">Τεχνοτροπίες σελίδας</item>, πατήστε στην καρτέλα <item type=\"menuitem\">Κεφαλίδα</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Επιλέξτε την <item type=\"menuitem\">Ενεργοποίηση κεφαλίδας</item> και πατήστε στην καρτέλα <item type=\"menuitem\">Διαχείριση</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Στο πεδίο <item type=\"menuitem\">Επόμενη τεχνοτροπία</item>, επιλέξτε \"Αριστερή σελίδα\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7181,32 +7181,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Στο παράθυρο <emph>Πρότυπα</emph>, δεξιοπατήστε στην \"Αριστερή σελίδα\" στον κατάλογο των τεχνοτροπιών σελίδας και επιλέξτε <emph>Τροποποίηση</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Στον διάλογο <item type=\"menuitem\">Τεχνοτροπίες σελίδας</item>, πατήστε στην καρτέλα <item type=\"menuitem\">Κεφαλίδα</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Επιλέξτε <item type=\"menuitem\">Ενεργοποίηση κεφαλίδας</item> και πατήστε στην καρτέλα <item type=\"menuitem\">Διαχείριση</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Στο πεδίο <item type=\"menuitem\">Επόμενη τεχνοτροπία</item> επιλέξτε \"Δεξιά σελίδα\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11429,14 +11429,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Στον κατάλογο των τεχνοτροπιών σελίδας, δεξιοπατήστε σε ένα αντικείμενο, και ύστερα επιλέξτε <emph>Δημιουργία</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Στην καρτέλα <emph>Διαχείριση</emph>, πληκτρολογήστε ένα όνομα για την τεχνοτροπία σελίδας στο πεδίο <emph>Όνομα</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11582,14 +11582,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Επιλέξτε <emph>Αλλαγή σελίδας</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Στο πεδίο <item type=\"menuitem\">Τεχνοτροπία</item>, επιλέξτε μια τεχνοτροπία σελίδας που χρησιμοποιεί το παρασκήνιο σελίδας."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11861,14 +11861,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Μια <emph>αυτόματη αλλαγή σελίδας</emph> εμφανίζεται στο τέλος της σελίδας όταν μια τεχνοτροπία σελίδας έχει διαφορετική \"επόμενη τεχνοτροπία\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Για παράδειγμα, η τεχνοτροπία σελίδας \"Πρώτη σελίδα\" έχει την \"Προεπιλεγμένη τεχνοτροπία σελίδας\" ως επόμενη τεχνοτροπία. Για να το δείτε, πατήστε <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline> </switchinline> για να ανοίξετε το παράθυρο <menuitem>Τεχνοτροπίες</menuitem>, πατήστε στο εικονίδιο <menuitem>Τεχνοτροπίες σελίδας</menuitem> και δεξιοπατήστε στην καταχώριση \"Πρώτη σελίδα\". Επιλέξτε <menuitem>Επεξεργασία τεχνοτροπίας</menuitem> από το μενού περιβάλλοντος. Στην καρτέλα <menuitem>Οργανωτής</menuitem>, μπορείτε να δείτε την \"Επόμενη τεχνοτροπία\"."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12185,14 +12185,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Δεξιοπατήστε σε μια τεχνοτροπία σελίδας και επιλέξτε <emph>Δημιουργία</emph>. Η νέα τεχνοτροπία σελίδας αρχικά λαμβάνει όλες τις ιδιότητες της επιλεγμένης τεχνοτροπίας σελίδας."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Στη σελίδα της καρτέλας <emph>Διαχείριση</emph>, πληκτρολογήστε ένα όνομα για την τεχνοτροπία σελίδας στο πεδίο <emph>Όνομα</emph>, για παράδειγμα \"Οριζόντια\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12329,14 +12329,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Τεχνοτροπίες μίας σελίδας"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Μια τεχνοτροπία σελίδας μπορεί να καθοριστεί για να καλύψει μόνο μία σελίδα. Η τεχνοτροπία “Πρώτη σελίδα” είναι ένα παράδειγμα. Ορίζετε αυτήν την ιδιότητα καθορίζοντας η τεχνοτροπία άλλης σελίδας να είναι η \"επόμενη τεχνοτροπία\", στη σελίδα <menuitem>Μορφή - Τεχνοτροπία σελίδας - Οργανωτής</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12365,14 +12365,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Χειροκίνητα ορισμένη περιοχή μιας τεχνοτροπίας σελίδας"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Η “προεπιλεγμένη” τεχνοτροπία σελίδας δεν ορίζει διαφορετική \"επόμενη τεχνοτροπία\" στη σελίδα καρτέλας στο <menuitem>Μορφή - Τεχνοτροπία σελίδας - Οργανωτής</menuitem>. Αντίθετα, η \"επόμενη τεχνοτροπία\" ορίζεται επίσης σε “προεπιλεγμένη”. Όλες οι τεχνοτροπίες σελίδας που ακολουθούνται από την ίδια τεχνοτροπία σελίδας μπορούν να επεκταθούν σε πολλαπλές σελίδες. Τα κατώτερα και ανώτερα όρια της περιοχής τεχνοτροπίας σελίδας καθορίζονται από \"αλλαγές σελίδας με τεχνοτροπία\". Όλες οι σελίδες μεταξύ δύο οποιωνδήποτε σελίδων \"αλλαγών σελίδας με τεχνοτροπία\" χρησιμοποιούν την ίδια τεχνοτροπία σελίδας."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Στον κατάλογο των τεχνοτροπιών σελίδας, δεξιοπατήστε σε ένα αντικείμενο και ύστερα επιλέξτε <emph>Δημιουργία</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Στην καρτέλα <emph>Διαχείριση</emph>, πληκτρολογήστε ένα όνομα στο πεδίο <emph>Όνομα</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index aff282f89e1..bf60e7b7bba 100644
--- a/source/el/sc/messages.po
+++ b/source/el/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562572014.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Λειτουργία συμφωνίας"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Ακριβής αντιστοιχία. Θα επιστρέψει # N/A εάν δεν ταιριάζει. (Προεπιλογή).\n"
-"-1 - Ακριβής αντιστοίχιση ή το επόμενο μικρότερο στοιχείο.\n"
-"1 - Ακριβής αντιστοίχιση ή το επόμενο μεγαλύτερο στοιχείο.\n"
-"2 - Αντιστοιχία χαρακτήρα υποκατάστασης ή κανονικής έκφρασης."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Λειτουργία συμφωνίας"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Ακριβής αντιστοιχία. Θα επιστρέψει # N/A εάν δεν ταιριάζει. (Προεπιλογή).\n"
-"-1 - Ακριβής αντιστοίχιση ή το επόμενο μικρότερο στοιχείο.\n"
-"1 - Ακριβής αντιστοίχιση ή το επόμενο μεγαλύτερο στοιχείο.\n"
-"2 - Αντιστοιχία χαρακτήρα υποκατάστασης ή κανονικής έκφρασης."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Τυπικό"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Γενικά"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Γραμμή"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Περιοχή"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Σκίαση"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Διαφάνεια"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Εσοχές και αποστάσεις"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Κείμενο"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Κινούμενο κείμενο"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Διαστασιολόγηση"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Στοίχιση"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ασιατική τυπογραφία"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Καρτέλες"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Με έμφαση"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Διαγραφή"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Χωρίς περίγραμμα"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Όλα τα περιγράμματα"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Εξωτερικά περιγράμματα"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Παχύ περίγραμμα πλαισίου"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Παχύ κάτω περίγραμμα"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Διπλό κάτω περίγραμμα"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Πάνω και παχύ κάτω περίγραμμα"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Πάνω και διπλό κάτω περίγραμμα"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Αριστερό περίγραμμα"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Δεξιό περίγραμμα"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Πάνω περίγραμμα"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Κάτω περίγραμμα"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Διαγώνιο προς τα πάνω περίγραμμα"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Διαγώνιο προς τα κάτω περίγραμμα"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Περιγράμματα πάνω και κάτω"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Αριστερό και δεξιό περίγραμμα"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Μορφοποίηση κελιών"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Αριθμοί"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Στοίχιση"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Ασιατική τυπογραφία"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Παρασκήνιο"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Προστασία κελιού"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Τεχνοτροπία σελίδας"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Γενικά"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Σελίδα"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Παρασκήνιο"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Κεφαλίδα"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Υποσέλιδο"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Φύλλο"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Τεχνοτροπία κελιού"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Γενικά"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Αριθμοί"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Στοίχιση"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ασιατική τυπογραφία"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Παρασκήνιο"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Προστασία κελιού"
diff --git a/source/el/sd/messages.po b/source/el/sd/messages.po
index a98d568973d..5db1523597f 100644
--- a/source/el/sd/messages.po
+++ b/source/el/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/el/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Τυπική"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Γενικά"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Γραμμή"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Περιοχή"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Σκίαση"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Διαφάνεια"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Εσοχές και αποστάσεις"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Κείμενο"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Κίνηση κειμένου"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Διαστασιολόγηση"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Σύνδεσμος"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Στοίχιση"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ασιατική τυπογραφία"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Στηλοθέτες"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Με έμφαση"
diff --git a/source/el/sfx2/messages.po b/source/el/sfx2/messages.po
index e90c9214085..bc1b9bb7098 100644
--- a/source/el/sfx2/messages.po
+++ b/source/el/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559714005.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Οι μακροεντολές είναι απενεργοποιημένες λόγω των ρυθμίσεων ασφάλειας μακροεντολών."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Οι μακροεντολές υπογράφονται, αλλά το έγγραφο (που περιέχει συμβάντα εγγράφου) δεν είναι υπογεγραμμένο."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Εμφάνιση μακροεντολών"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Εμφάνιση των επιλογών ασφαλείας"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Εμφάνιση συμβάντων"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Κομψό γκρίζο"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Μελίσσι"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Γαλάζια καμπύλη"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Γαλάζια σχέδια"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Καραμέλα"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Κίτρινη ιδέα"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Εστίαση"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Πουλί δάσους"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Φρέσκο"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Έμπνευση"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Φώτα"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Αυξανόμενη ελευθερία"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Μητρόπολη"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Γαλάζιο του μεσονυκτίου"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Φυσική εικόνα"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Μολύβι"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Πιάνο"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Χαρτοφύλακας"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Πρόοδος"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Δύση"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Εποχής"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Ζωηρό"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Βιογραφικό"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Προεπιλογή"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Σύγχρονο"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Σύγχρονη επαγγελματική επιστολή χωρίς πατούρα"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Σύγχρονη επαγγελματική επιστολή με πατούρα"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Επαγγελματική κάρτα με λογότυπο"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Απλό"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Απλοποιημένα κινέζικα κανονικά"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Κανονικά ιαπωνικά"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Αφαίρεση"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Καθαρισμός όλων"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Μήκος κωδικού πρόσβασης"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 ψηφιολέξεις (bytes), ή μεγαλύτερος από 55 ψηφιολέξεις."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-πατήστε για να ανοίξετε τον υπερσύνδεσμο: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Πατήστε για να ανοίξετε τον υπερσύνδεσμο: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(χρησιμοποιείται από το: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Έγγραφο"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Υπολογιστικό φύλλο"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Παρουσίαση"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Σχεδίαση"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Πρόσφατα χρησιμοποιημένο"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Χωρίς πρόσφατους χαρακτήρες"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Επαναφορά όλων των ~προεπιλεγμένων προτύπων"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Επαναφορά ~προεπιλογής εγγράφου κειμένου"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Επαναφορά ~προεπιλογής υπολογιστικού φύλλου"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Επαναφορά ~προεπιλογής παρουσίασης"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Επαναφορά ~προεπιλογής σχεδίασης"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Ε~ισαγωγή"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Επε~κτάσεις"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Μετονομασία"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Μετονομασία κατηγορίας"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Νέα κατηγορία"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Επιθεωρητής αντικειμένων UNO"
diff --git a/source/el/svtools/messages.po b/source/el/svtools/messages.po
index e8eb850d6ee..1e845b2d7f1 100644
--- a/source/el/svtools/messages.po
+++ b/source/el/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/el/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559713778.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Αδυναμία σύνδεσης μέσω διαδικτύου στο $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Μήνυμα σφάλματος διακομιστή: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Μήνυμα σφάλματος διακομιστή: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Συνέβηκε γενικό σφάλμα διαδικτύου."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Τα αιτούμενα δεδομένα διαδικτύου δεν βρίσκονται στην κρυφή μνήμη και δεν μπορούν να μεταδοθούν, επειδή δεν έχει ενεργοποιηθεί η λειτουργία με διαδικτυακή σύνδεση."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Αδύνατη η δημιουργία των περιεχομένων."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Το όνομα του αρχείου είναι πολύ μεγάλο για το σύστημα αρχείου προορισμού."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Η σύνταξης εισόδου είναι άκυρη."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Παρακαλούμε, αποθηκεύστε το έγγραφο σε μορφή αρχείου %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Φτάσατε στον μέγιστο αριθμό των αρχείων που μπορούν να ανοιχτούν ταυτόχρονα. Θα χρειαστεί να κλείσετε ένα ή περισσότερα έγγραφα πριν να μπορέσετε να ανοίξετε ένα νέο έγγραφο."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Αδύνατη η δημιουργία αντιγράφου ασφαλείας."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Άκυρο μήκος δεδομένων."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Αδύνατη λειτουργία: η διαδρομή περιέχει τον τρέχοντα κατάλογο."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Αδύνατη λειτουργία: η συσκευή (δίσκος) δεν είναι η ίδια."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Η συσκευή (δίσκος) δεν είναι έτοιμη."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Εσφαλμένο άθροισμα ελέγχου."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Αδύνατη λειτουργία: προστατευμένη εγγραφή."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Απενεργοποιήστε τη λειτουργία μερισμού πρώτα."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Βρέθηκε σφάλμα μορφοποίησης αρχείου στο $(ARG1)(γραμμή,στήλη)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Το φίλτρο για αυτή τη μορφή αρχείου είναι ανενεργό στη διαμόρφωση. Παρακαλούμε, επικοινωνήστε με τον διαχειριστή των συστημάτων σας."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Γενικό σφάλμα OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Στην τρέχουσα κατάσταση του αντικειμένου είναι αδύνατη η εκτέλεση της ενέργειας."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Το αντικείμενο δεν υποστηρίζει καμιά ενέργεια."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Το αντικείμενο δεν υποστηρίζει αυτήν την ενέργεια."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) ενεργοποίησης του αντικειμένου"
diff --git a/source/el/svx/messages.po b/source/el/svx/messages.po
index 3d663254cfc..c6613fe819b 100644
--- a/source/el/svx/messages.po
+++ b/source/el/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/el/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Χωρίς περιγράμματα"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Μόνο το εξωτερικό περίγραμμα"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Εξωτερικό περίγραμμα και οριζόντιες γραμμές"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Εξωτερικό περίγραμμα και όλες τις εσωτερικές γραμμές"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Εξωτερικό περίγραμμα και κάθετες γραμμές"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Εξωτερικό περίγραμμα χωρίς αλλαγή των εσωτερικών γραμμών"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Μόνο διαγώνιες γραμμές"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Διαγώνιο κάτω περίγραμμα"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Διαγώνιο επάνω περίγραμμα"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Σταυρωτό περίγραμμα"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Και τα τέσσερα περιγράμματα"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Μόνο αριστερό και δεξιό περίγραμμα"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Μόνο επάνω και κάτω περίγραμμα"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Επάνω και κάτω περιγράμμτα και όλες τις οριζόντιες γραμμές"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Μόνο αριστερό περίγραμμα"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Μόνο δεξιό περίγραμμα"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Μόνο επάνω περίγραμμα"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Μόνο κάτω περίγραμμα"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Επάνω και κάτω περιγράμματα και όλες τις εσωτερικές γραμμές"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Αριστερό και δεξιό περίγραμμα και όλες τις εσωτερικές γραμμές"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Αφαίρεση από τα αγαπημένα"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Χαρακτήρας που λείπει"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Προσθήκη στα Αγαπημένα"
@@ -10281,19 +10331,19 @@ msgstr "Προσθήκη στα Αγαπημένα"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Έλεγχος μεγέθους γραφικών"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Η εικόνα '%NAME%' έχει πολύ λίγα εικονοστοιχεία για το τρέχον μέγεθος (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Η εικόνα '%NAME%' έχει πάρα πολλάεικονοστοιχεία για το τρέχον μέγεθος (%DPIX% x %DPIY% DPI)"
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index 95dd348de09..e43fb8dc2e1 100644
--- a/source/el/sw/messages.po
+++ b/source/el/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: Greek <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/el/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Κατάλογος 5 Συν."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Κεφαλίδα και υποσέλιδο"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Πίνακας"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Μορφοποίηση"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Υπερσύνδεσμος"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Προσομοιωμένες λεζάντες"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Αρίθμηση"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Άλλο"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Πλαίσιο"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Θέση και μέγεθος"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Επιλογές"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Αναδίπλωση"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Υπερσύνδεσμος"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Περιοχή"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Διαφάνεια"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Στήλες"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Μακροεντολή"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Επαναφορά οποιασδήποτε αλλαγής που έγινε στην εμφανιζόμενη καρτέλα εδώ στις ρυθμίσεις που ήταν παρούσα όταν αυτός ο διάλογος ανοίχτηκε."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Γενικά"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Θέση"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Ασιατική διάταξη"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Επισήμανση"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Περιγράμματα"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Τεχνοτροπία καταλόγου"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Ονομασία και απόκρυψη τεχνοτροπιών χρήστη"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Γενικά"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Επιλέξτε έναν προκαθορισμένο τύπο κουκκίδας"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Χωρίς διάταξη"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Επιλέξτε έναν προκαθορισμένο διαταγμένο κατάλογο"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Με διάταξη"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Επιλέξτε μια προκαθορισμένη μορφή διάρθρωσης"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Διάρθρωση"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Επιλέξτε ένα προκαθορισμένο σύμβολο κουκκίδας γραφικών"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Εικόνα"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Τροποποιήστε εσοχή, απόσταση και στοίχιση των αριθμών καταλόγου ή συμβόλων"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Θέση"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Σχεδιάστε τη δικιά σας μορφή καταλόγου ή διάρθρωσης"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Προσαρμογή"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Τεχνοτροπία παραγράφου"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Γενικά"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Εσοχές και αποστάσεις"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Στοίχιση"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Ροή κειμένου"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Ασιατική τυπογραφία"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Γραμματοσειρά"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Εφέ γραμματοσειράς"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Θέση"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Ασιατική διάταξη"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Επισήμανση"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Στηλοθέτες"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Αρχιγράμματα"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Περιοχή"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Διαφάνεια"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Συνθήκη"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Ορισμός επιπέδου διάρθρωσης, τεχνοτροπίας γραμμής και αρίθμησης γραμμής για τεχνοτροπία παραγράφου."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Διάρθρωση & κατάλογος"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Τεχνοτροπία πλαισίου"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Γενικά"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Τύπος"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Επιλογές"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Αναδίπλωση"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Περιοχή"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Διαφάνεια"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Στήλες"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Μακροεντολή"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Βασική"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Γενικά"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Σελίδα"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Περιοχή"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Διαφάνεια"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Κεφαλίδα"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Υποσέλιδο"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Περιγράμματα"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Στήλες"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Υποσημείωση"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Πλέγμα κειμένου"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 7865be88395..85884df3793 100644
--- a/source/en-GB/cui/messages.po
+++ b/source/en-GB/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-10-21 14:17+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/en_GB/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index 59874ee70c0..ea4a3b6fee3 100644
--- a/source/en-GB/helpcontent2/source/text/shared/00.po
+++ b/source/en-GB/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/en_GB/>\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organiser. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Choose <menuitem>Format - Page Style - Organiser</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Choose <menuitem>Styles - Edit Style - Organiser</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organiser</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index 9793d94b2a8..ea2294f661c 100644
--- a/source/en-GB/helpcontent2/source/text/shared/01.po
+++ b/source/en-GB/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/en_GB/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organiser"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organiser</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 13460c4b8e4..aed023843cf 100644
--- a/source/en-GB/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-GB/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/en_GB/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/en-GB/helpcontent2/source/text/swriter/01.po b/source/en-GB/helpcontent2/source/text/swriter/01.po
index 81f6a921d95..1f4c5553555 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/01.po
+++ b/source/en-GB/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/en_GB/>\n"
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Use the <emph>Contains</emph> section in the Organiser to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/en-GB/helpcontent2/source/text/swriter/guide.po b/source/en-GB/helpcontent2/source/text/swriter/guide.po
index d431c5532a0..4f3ae4f8dad 100644
--- a/source/en-GB/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-GB/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/en_GB/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Click the <emph>Organiser</emph> tab."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the <item type=\"menuitem\">Page Styles</item> dialogue box, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organiser</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the <item type=\"menuitem\">Page Styles</item> dialogue box, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organiser</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "On the <emph>Organiser</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Select <emph>Page break</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "On the <emph>Organiser</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "One Page Long Styles"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organiser</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Manually Defined Range of a Page Style"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organiser</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "On the <emph>Organiser</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index f31df9d5ba7..f21a01d1d1a 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-10-21 14:18+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/en_GB/>\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23228,91 +23230,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23911,102 +23913,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Delete"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "No Border"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "All Borders"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Outside Borders"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Thick Box Border"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Thick Bottom Border"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Double Bottom Border"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Top and Thick Bottom Borders"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Top and Double Bottom Borders"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Left Border"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Right Border"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Top Border"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bottom Border"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal Up Border"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal Down Border"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Top and Bottom Borders"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Left and Right Borders"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24044,49 +23950,49 @@ msgid "Format Cells"
msgstr "Format Cells"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Numbers"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Font Effects"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asian Typography"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Borders"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Background"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cell Protection"
@@ -28175,43 +28081,43 @@ msgid "Page Style"
msgstr "Page Style"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Page"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Borders"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Background"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Header"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Footer"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Sheet"
@@ -28253,55 +28159,55 @@ msgid "Cell Style"
msgstr "Cell Style"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Numbers"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Font Effects"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Borders"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Background"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cell Protection"
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index df32c6547f3..7ab211e3997 100644
--- a/source/en-GB/sd/messages.po
+++ b/source/en-GB/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-12 03:33+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/en_GB/>\n"
@@ -9552,97 +9552,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Line"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Area"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Shadowing"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparency"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Indents & Spacing"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Text Animation"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensioning"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabs"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Highlighting"
diff --git a/source/en-GB/sfx2/messages.po b/source/en-GB/sfx2/messages.po
index 43cc7e02c4d..4ace1cc1be5 100644
--- a/source/en-GB/sfx2/messages.po
+++ b/source/en-GB/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-10-21 14:17+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/en_GB/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grey Elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Beehive"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blue Curve"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blueprint Plans"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Candy"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Yellow Idea"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Forestbird"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Freshes"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lights"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Growing Liberty"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnightblue"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Nature Illustration"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pencil"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunset"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resume"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Default"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern business letter sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern business letter serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Businesscard with logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Clear All"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Password length"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "The password you have entered causes interoperability issues. Please enter a password that is shorter than 52 bytes, or longer than 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-click to open hyperlink: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Click to open hyperlink: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(used by: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Spreadsheet"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentation"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Drawing"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Recently used"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "No recent characters"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Reset All De~fault Templates"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Reset De~fault Text Document"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Reset De~fault Spreadsheet"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Reset De~fault Presentation"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Reset De~fault Drawing"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Import"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensions"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Rename"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Rename Category"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "New Category"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/en-GB/svtools/messages.po b/source/en-GB/svtools/messages.po
index f85e741f837..a9b412b1504 100644
--- a/source/en-GB/svtools/messages.po
+++ b/source/en-GB/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-12 03:33+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/en_GB/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Could not establish Internet connection to $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Server error message: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Server error message: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "General Internet error has occurred."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not been activated."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "The contents could not be created."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "The file name is too long for the target file system."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "The input syntax is invalid."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Please save the document in a %PRODUCTNAME %PRODUCTVERSION file format."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "The maximum number of documents that can be opened at the same time has been reached. You must close one or more documents before you can open a new document."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Could not create a backup copy."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Invalid data length."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Function not possible: path contains current directory."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Function not possible: device (drive) not identical."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Device (drive) not ready."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Wrong checksum."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Function not possible: write protected."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Deactivate sharing mode first."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "File format error found at $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "The filter for this file format is disabled in configuration. Please contact your systems administrator."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "General OLE error."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "The action cannot be executed in the object's current state."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "The object does not support any actions."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Object does not support this action."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) activating object"
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index 4822fd7c839..1f8e8cf54c7 100644
--- a/source/en-GB/svx/messages.po
+++ b/source/en-GB/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-12 03:34+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/en_GB/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "No Borders"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Outer Border Only"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Outer Border and Horizontal Lines"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Outer Border and All Inner Lines"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Outer Border and Vertical Lines"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Outer Border Without Changing Inner Lines"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Diagonal Lines Only"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonal Down Border"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonal Up Border"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Criss-Cross Border"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "All Four Borders"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Left and Right Borders Only"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Top and Bottom Borders Only"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Top and Bottom Borders, and All Horizontal Lines"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Left Border Only"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Right Border Only"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Top Border Only"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Top and Bottom Borders, and All Inner Lines"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Left and Right Borders, and All Inner Lines"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Graphic Size Check"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index b8dcf87fcb5..e97b3f50b57 100644
--- a/source/en-GB/sw/messages.po
+++ b/source/en-GB/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-07-12 03:33+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: English (United Kingdom) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/en_GB/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "List 5 Cont."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Header and Footer"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10602,38 +10602,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16434,55 +16440,55 @@ msgid "Frame"
msgstr "Frame"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Position and Size"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Options"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Wrap"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Borders"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Area"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columns"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28877,43 +28883,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Revert any changes made on the tab shown here to the settings that were present when this dialogue box was opened."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Position"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asian Layout"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Highlighting"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Borders"
@@ -28925,85 +28931,85 @@ msgid "List Style"
msgstr "List Style"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Name and hide user-defined styles"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Choose a predefined bullet type"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Unordered"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Choose a predefined ordered list"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordered"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Choose a predefined outline format"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Outline"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Choose a predefined graphic bullet symbol"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Image"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modify indent, spacing, and alignment for list numbers or symbols"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Position"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Design your own list or outline format"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Customise"
@@ -29015,109 +29021,109 @@ msgid "Paragraph Style"
msgstr "Paragraph Style"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Indents & Spacing"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alignment"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Text Flow"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Position"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asian Layout"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Highlighting"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabs"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Drop Caps"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Area"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparency"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Borders"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condition"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Set outline level, list style and line numbering for paragraph style."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Outline & List"
@@ -29129,55 +29135,55 @@ msgid "Frame Style"
msgstr "Frame Style"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Options"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Wrap"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Area"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparency"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Borders"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columns"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29195,61 +29201,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Page"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Area"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Header"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Footer"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Borders"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columns"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Footnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Text Grid"
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 2e03e944744..b2b80d1dca7 100644
--- a/source/en-ZA/cui/messages.po
+++ b/source/en-ZA/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,10 +2583,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 2a678415f9d..45578b8a097 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/00.po
+++ b/source/en-ZA/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index 23ac3ac367a..10d5cfe5c32 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/01.po
+++ b/source/en-ZA/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: English (South Africa) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/en_ZA/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizer"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 40779e18e65..ab65d1c9c38 100644
--- a/source/en-ZA/helpcontent2/source/text/shared/optionen.po
+++ b/source/en-ZA/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/01.po b/source/en-ZA/helpcontent2/source/text/swriter/01.po
index 2e322519baf..39ee8d413db 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/01.po
+++ b/source/en-ZA/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/en-ZA/helpcontent2/source/text/swriter/guide.po b/source/en-ZA/helpcontent2/source/text/swriter/guide.po
index 3cc21982548..7e39a909f0f 100644
--- a/source/en-ZA/helpcontent2/source/text/swriter/guide.po
+++ b/source/en-ZA/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-12 13:30+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: English (South Africa) <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/en_ZA/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the <item type=\"menuitem\">Page Styles</item> dialogue, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the <item type=\"menuitem\">Page Styles</item> dialogue, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Select <emph>Page break</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "One Page Long Styles"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Manually Defined Range of a Page style"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index 16191553ab6..77c72a91408 100644
--- a/source/en-ZA/sc/messages.po
+++ b/source/en-ZA/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14566,14 +14566,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14799,14 +14800,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23746,91 +23748,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24450,103 +24452,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "No border"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24586,50 +24491,50 @@ msgid "Format Cells"
msgstr "Format cell"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Number"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Font Effects"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asian Typography"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Borders"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Background"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28858,44 +28763,44 @@ msgid "Page Style"
msgstr "Page Style"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pages"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Borders"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Background"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Header"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Footer"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Sheet"
@@ -28939,56 +28844,56 @@ msgid "Cell Style"
msgstr "Cell Styles"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Number"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Font Effects"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Borders"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Background"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/en-ZA/sd/messages.po b/source/en-ZA/sd/messages.po
index e7a697aac60..2faf241f8c7 100644
--- a/source/en-ZA/sd/messages.po
+++ b/source/en-ZA/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9820,99 +9820,99 @@ msgid "_Standard"
msgstr "Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Line"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Area"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Shading"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparency"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Text Animation"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimension Line"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alignment"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/en-ZA/sfx2/messages.po b/source/en-ZA/sfx2/messages.po
index e6adaadd55b..5d1015a5a0c 100644
--- a/source/en-ZA/sfx2/messages.po
+++ b/source/en-ZA/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1617,376 +1617,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Remove"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/en-ZA/svtools/messages.po b/source/en-ZA/svtools/messages.po
index 42314fb8202..c9fb1ffc3c7 100644
--- a/source/en-ZA/svtools/messages.po
+++ b/source/en-ZA/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2400,16 +2400,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "The contents could not be created."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "The file name is too long for the target file system."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "The input syntax is invalid."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"Please save the document in a %PRODUCTNAME %PRODUCTVERSION file format."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Could not create backup copy."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Invalid data length."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Function not possible: path contains current directory."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Function not possible: device (drive) not identical."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Device (drive) not ready."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Function not possible: write protected."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"Deactivate sharing mode first."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "General OLE error."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "The action cannot be executed in the object's current state."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "The object does not support any actions."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Object does not support this action."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/en-ZA/svx/messages.po b/source/en-ZA/svx/messages.po
index f73c5065b2b..5ed17feb950 100644
--- a/source/en-ZA/svx/messages.po
+++ b/source/en-ZA/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10265,134 +10265,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10401,19 +10451,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index c1fe76e7487..e6302b38992 100644
--- a/source/en-ZA/sw/messages.po
+++ b/source/en-ZA/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3082,9 +3082,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10838,38 +10838,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16886,56 +16892,56 @@ msgid "Frame"
msgstr "Frame"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Options"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~Wrap"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Borders"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Area"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columns"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -29758,45 +29764,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Position"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asian Layout"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Highlighting"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Borders"
@@ -29808,85 +29814,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Outline"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Image"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Position"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29899,113 +29905,113 @@ msgid "Paragraph Style"
msgstr "(Paragraph Style: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alignment"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Font Effects"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Position"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asian Layout"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Highlighting"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabs"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Drop Caps"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Area"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparency"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Borders"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Condition"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30018,56 +30024,56 @@ msgid "Frame Style"
msgstr "Frame Style"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Options"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Wrap"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Area"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparency"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Borders"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columns"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -30086,61 +30092,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Page"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Area"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Header"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Footer"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Borders"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columns"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Footnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index 7a0e8276981..a998d2b412b 100644
--- a/source/eo/cui/messages.po
+++ b/source/eo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-20 01:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/eo/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Malfermu CSV-dosieron kiel novan folion en la aktuala kalkultabelo per Folio ▸ Folio el dosiero."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Vi povas daŭre skribi kun la aprioraj formataj atributoj post mane aplikinte grasan, kursivan aŭ substrekitan premante je %MOD1+Maj+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index 64301b70a5a..0681b2ac1c4 100644
--- a/source/eo/helpcontent2/source/text/shared/00.po
+++ b/source/eo/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-08-18 15:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/eo/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Elektu langeton <emph>Formato - Ĉeloj - Fono</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Elektu langeton <menuitem>Formato - Paĝa stilo - Organizilo</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Elektu langeton <menuitem>Stiloj - Redakti stilon - Organizilo</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Elektu langeton <menuitem>Formato - Stiloj - Redakti stilon - Organizilo</menuitem>. </variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Elektu langeton <menuitem>Lumbildo - Atributoj - Paĝo</menuitem></variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 4365f7a39de..ce06cf67544 100644
--- a/source/eo/helpcontent2/source/text/shared/01.po
+++ b/source/eo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-07-05 05:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/eo/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizilo"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizilo</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index af6cb03aaf7..616bf59aa33 100644
--- a/source/eo/helpcontent2/source/text/shared/optionen.po
+++ b/source/eo/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-02-10 17:42+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eo/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/eo/helpcontent2/source/text/swriter/01.po b/source/eo/helpcontent2/source/text/swriter/01.po
index 15f341995c6..c865e7c43b8 100644
--- a/source/eo/helpcontent2/source/text/swriter/01.po
+++ b/source/eo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-08-12 11:35+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/eo/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/eo/helpcontent2/source/text/swriter/guide.po b/source/eo/helpcontent2/source/text/swriter/guide.po
index 82154725197..11834acdaf0 100644
--- a/source/eo/helpcontent2/source/text/swriter/guide.po
+++ b/source/eo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-22 14:04+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/eo/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "En la listo de paĝaj stiloj, dekstre alklaku je \"Maldekstra Paĝo\" kaj elektu je <emph>Modifi</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Alklaku la langeton <emph>Organizilo</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Oni povas uzi malsamajn paĝokapojn kaj paĝopiedojn ĉe malsamaj paĝoj en dokumento, kondiĉe ke la paĝoj uzas malsamajn paĝajn stilojn. $[officename] provizas kelkajn antaŭe difinitajn paĝajn stilojn, ekzemple<emph>Unua paĝo</emph>, <emph>Maldekstra paĝo</emph> kaj <emph>Dekstra paĝo</emph>, kaj oni povas krei propran paĝan stilon."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Dekstre alklaku je \"Dekstra paĝo\" en la listo de paĝaj stiloj kaj elektu je <emph>Modifi</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En la dialogo <item type=\"menuitem\">Paĝaj stiloj</item>, alklaku la langeton <item type=\"menuitem\">Paĝokapo</item> ."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Elektu <item type=\"menuitem\">Paĝokapo ek</item> kaj alklaku la langeton <item type=\"menuitem\">Organizilo</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "En la kadro <item type=\"menuitem\">Sekva stilo</item> , elektu je \"Maldekstra paĝo\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "En la fenestro <emph>Stiloj</emph>, dekstre alklaku je \"Maldekstra Paĝo\" en la listo de paĝaj stiloj kaj elektu je <emph>Modifi</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En la dialogo <item type=\"menuitem\">Paĝaj stiloj</item>, alklaku la langeton <item type=\"menuitem\">Paĝokapo</item> ."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Elektu <item type=\"menuitem\">Paĝokapo ek</item> kaj alklaku la langeton <item type=\"menuitem\">Organizilo</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "En la kadro <item type=\"menuitem\">Sekva stilo</item> , elektu je \"Dekstra paĝo\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la listo de paĝaj stiloj, dekstre alklaku eron, kaj elektu je <emph>Nova</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "En la langeto <emph>Organizilo</emph>, tajpu nomon por la paĝa stilo en la kadro <emph>Nomo</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Elektu je <emph>Paĝa salto</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "En la kadro <item type=\"menuitem\">Stilo</item> , elektu paĝan stilon kiu uzas la paĝan fonon."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Aŭtomata paĝa salto</emph> aperas ĉe la paĝofino kiam la paĝa stilo havas malsaman \"sekvan stilon\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Dekstre alklaku paĝan stilon kaj elektu je <emph>Nova</emph>. La nova paĝa stilo unue ricevas ĉiujn atributojn de la elektita paĝa stilo."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "En la langeto <emph>Organizilo</emph>, tajpu la nomon por la paĝa stilo en la kadro <emph>Nomo</emph>, ekzemple, \"Mia horizontala\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Unupaĝaj stiloj"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Eblas agordi paĝan stilon etendi nur unu paĝon. La stilo \"Unua Paĝo\" estas ekzemplo. Vi agordas tiun atributon difinante alian paĝan stilon esti la \"sekva stilo\", en la langeto <menuitem>Formato - Paĝa stilo - Organizilo</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Permane agordita amplekso de paĝa stilo"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "La paĝa stilo “Apriora” ne difinas malsaman \"sekvan stilon\" en la langeto <menuitem>Formato - Paĝa stilo - Organizilo</menuitem>. Anstataŭe, ĝi difinas la \"sekvan stilon\" esti ankaŭ \"Apriora\". Ĉiuj paĝaj stiloj sekvataj de la sama paĝa stilo, povas etendi plurajn paĝojn. La malsupra kaj supra borderoj de la paĝa stilamplekso difiniĝas laŭ \"paĝaj saltoj kun stilo\". Ĉiuj paĝoj inter du \"paĝaj saltoj kun stilo\" uzas la saman paĝan stilon."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la listo de paĝaj stiloj, dekstre alklaku eron, kaj elektu je <emph>Nova</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "En la langeto <emph>Organizilo</emph>, tajpu la nomon en la kadro <emph>Nomo</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index 845c4c613eb..8dcd59f1fb1 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2023-12-18 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 01:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/eo/>\n"
"Language: eo\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -19147,7 +19149,7 @@ msgstr "Permesu ĝisdatigon nur se vi fidas ĉi tiun dokumenton."
#: sc/inc/strings.hrc:374
msgctxt "STR_ENABLE_CONTENT_TOOLTIP_DISABLED"
msgid "Active content is disabled in the security settings. It is not possible to allow updating."
-msgstr ""
+msgstr "Aktiva enhavo estas malŝaltita en la sekurecaj agordoj. Ne eblas ebligi ĝisdatigon."
#. w5Gd7
#. Insert image dialog
@@ -20441,7 +20443,7 @@ msgstr "Ĉi tiu dialogo ebligas vidi ĉiujn kondiĉajn formatojn agorditajn en l
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:8
msgctxt "conditionaleasydialog|title"
msgid "Apply conditional formatting..."
-msgstr ""
+msgstr "Apliki kondiĉan formatadon..."
#. pDRks
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:30
@@ -20459,13 +20461,13 @@ msgstr "Fermas la dialogon kaj forigas ĉiujn ŝanĝojn."
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:126
msgctxt "conditionaleasydialog|label"
msgid "with"
-msgstr ""
+msgstr "kun"
#. FbHQB
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:176
msgctxt "conditionaleasydialog|label"
msgid "Apply conditional formatting to cells: %1"
-msgstr ""
+msgstr "Apliki kondiĉan formaton al ĉeloj: %1"
#. 5MDWE
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:228
@@ -20477,7 +20479,7 @@ msgstr "Alklaku la bildsimbolon Ŝrumpigi por malgradigi la dialogon al la grand
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:244
msgctxt "conditionaleasydialog|label"
msgid "Range:"
-msgstr ""
+msgstr "Ĉelaro:"
#. E8ANs
#: sc/uiconfig/scalc/ui/conditionalentry.ui:75
@@ -23228,91 +23230,91 @@ msgid "_Standard"
msgstr "Normala"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linio"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Zono"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombrado"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Travidebleco"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Tiparo"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Krommarĝenoj kaj interspacoj"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Teksto"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Teksta animacio"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensiado"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Ĝisrandigo"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azia tipografio"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Taboj"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Emfazado"
@@ -23911,102 +23913,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Forigi"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Sen bordero"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Ĉiuj borderoj"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Eksteraj borderoj"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Dika kadra bordero"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Dika malsupra bordero"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Duopa malsupra bordero"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Supra kaj dika malsupra borderoj"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Supra kaj duopa malsupra borderoj"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Maldekstra bordero"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Dekstra bordero"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Supra bordero"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Malsupra bordero"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Bordero kun diagonalo supren"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Bordero kun diagonalo malsupren"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Supraj kaj malsupraj borderoj"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Maldekstraj kaj dekstraj borderoj"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24044,49 +23950,49 @@ msgid "Format Cells"
msgstr "Formati Ĉelojn"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Numeroj"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tiparo"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Ĝisrandigo"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Azia tipografio"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Borderoj"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fono"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Ĉelprotektado"
@@ -28175,43 +28081,43 @@ msgid "Page Style"
msgstr "Paĝa stilo"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Paĝo"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Borderoj"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fono"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Paĝokapo"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Paĝopiedo"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Folio"
@@ -28253,55 +28159,55 @@ msgid "Cell Style"
msgstr "Ĉela stilo"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Numeroj"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tiparo"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Ĝisrandigo"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azia tipografio"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Borderoj"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fono"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Ĉelprotektado"
diff --git a/source/eo/scp2/source/ooo.po b/source/eo/scp2/source/ooo.po
index 77bd4512ba4..ebfd0126c96 100644
--- a/source/eo/scp2/source/ooo.po
+++ b/source/eo/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: LibreOffice 3.5.x\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2022-10-21 14:19+0000\n"
+"PO-Revision-Date: 2024-06-24 01:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/scp2sourceooo/eo/>\n"
"Language: eo\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1559537330.000000\n"
#. CYBGJ
@@ -2165,7 +2165,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_HY\n"
"LngText.text"
msgid "Armenian"
-msgstr ""
+msgstr "Armena"
#. gHLVy
#: module_langpack.ulf
@@ -2174,7 +2174,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_HY\n"
"LngText.text"
msgid "Installs the Armenian user interface"
-msgstr ""
+msgstr "Instalas la armenan fasadon"
#. 5GsEB
#: module_langpack.ulf
diff --git a/source/eo/sd/messages.po b/source/eo/sd/messages.po
index 403ceb8db66..66c29923b92 100644
--- a/source/eo/sd/messages.po
+++ b/source/eo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-11-09 18:37+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/eo/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "Normala"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linio"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Zono"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombrado"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Travidebleco"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tiparo"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Krommarĝenoj kaj interspacoj"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teksto"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Teksta animacio"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensiado"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Konektilo"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Ĝisrandigo"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azia tipografio"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Taboj"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Emfazado"
diff --git a/source/eo/sfx2/messages.po b/source/eo/sfx2/messages.po
index 0c70a1343cc..277d47825a3 100644
--- a/source/eo/sfx2/messages.po
+++ b/source/eo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-12-18 01:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/eo/>\n"
@@ -1631,376 +1631,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makrooj estas malŝaltitaj pro la agordoj Makroa Sekureco."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makrooj estas subskribitaj, sed la dokumento (enhavanta dokumentajn eventojn) ne estas subskribita."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vidigi makroojn"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Vidigi sekurecan agordaron"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vidigi eventojn"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Griza eleganta"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Abelujo"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blua kurbo"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blukopiaj planoj"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bombono"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Flava ideo"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokuso"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Arbarbirdo"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Freŝeco"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiro"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumoj"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Kreskanta libereco"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolo"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Noktomezblua"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura ilustraĵo"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Krajono"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Teko"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sunsubiro"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Aĝo"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Brilega"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resumo"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Apriora"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderna"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderna komerca letero senserifa"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderna komerca letero serifa"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitkarto kun bildo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simpla"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Simpligita ĉina normala"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japana normala"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Forigi"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vakigi ĉion"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longo de pasvorto"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "La enigita de vi pasvorto kaŭzas problemojn pri kunfunkcipovo. Bonvolu enigi pasvorton malpli longan ol 52 bajtoj, aŭ pli longan ol 55 bajtoj."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-alklaki por malfermi hiperligilon: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Alklaki por malfermi hiperligilon: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(uzita de: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokumento"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Kalkultabelo"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Prezentaĵo"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Desegnaĵo"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Lastatempe uzita"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Sen lastatempaj signoj"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Reagordi ĉiujn apriorajn ŝablonojn"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Reagordi la aprioran tekstan dokumenton"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Reagordi la aprioran kalkultabelon"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Reagordi la aprioran prezentaĵon"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Reagordi la aprioran desegnaĵon"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Importi"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Kromprogramoj"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Alinomi"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Alinomi kategorion"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nova kategorio"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-objekta inspektilo"
diff --git a/source/eo/svtools/messages.po b/source/eo/svtools/messages.po
index 75d15b6f131..0c5e526ac58 100644
--- a/source/eo/svtools/messages.po
+++ b/source/eo/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-06-28 22:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/eo/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Interreta konekto al $(ARG1) malsukcesis."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Servila erarmesaĝo $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Servila erarmesaĝo $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Ĝenerala Interreta eraro okazis."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "La petata Interreta datenaro ne estas disponebla en la kaŝmemoro kaj ne estas transsendebla ĉar la Konekta reĝimo ne estas enŝaltita."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Ne eblis krei la enhavon."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "La dosiernomo tro longas por la cela dosiersistemo."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La eniga sintakso estas nevalida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Bonvolu konservi la dokumenton en %PRODUCTNAME %PRODUCTVERSION-dosierformato."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "La maksimuma nombro da dokumentoj kiuj samtempe malfermeblas, estas atingita. Necesas ke vi fermu unu aŭ pliajn dokumentojn antaŭ ol vi povos malfermi novan dokumenton."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Ne eblis krei restaŭrkopion."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Nevalida datumlongo."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcio ne eblas: prefikso enhavas aktualan dosierujon."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcio ne eblas: aparato (diskingo) ne identa."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Aparato (diskingo) ne pretas."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Malĝusta kontrolsumo."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcio ne eblas pro protekto kontraŭ skribo."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Malŝaltu kunhavigan reĝimon unue."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Dosierformata eraro troviĝas ĉe $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "La filtrilo por ĉi tiu dosiera formato estas malŝaltita en la agordaro. Bonvolu kontakti la administranton de via sistemo."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Ĝenerala OLE-eraro."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "La ago ne estas plenumebla pro la aktuala stato de la objekto."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "La objekto ne subtenas agojn."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekto ne subtenas tiun agon."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) dum aktivigo de objekto"
diff --git a/source/eo/svx/messages.po b/source/eo/svx/messages.po
index 4ce0c338c5a..5b61191f2a5 100644
--- a/source/eo/svx/messages.po
+++ b/source/eo/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-13 01:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/eo/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Sen borderoj"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Nur ekstera bordero"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ekstera bordero kaj horizontalaj linioj"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ekstera bordero kaj ĉiuj internaj linioj"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ekstera bordero kaj vertikalaj linioj"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Ekstera bordero neŝanĝante enajn liniojn"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Nur diagonalaj linioj"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Bordero kun diagonalo malsupren"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Bordero kun diagonalo supren"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kruc-haĉa bordero"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Ĉiuj kvar borderoj"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Nur maldekstra kaj dekstra borderoj"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Nur supra kaj malsupra borderoj"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Supra kaj malsupra borderoj, kaj ĉiuj horizontalaj linioj"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Nur maldekstra bordero"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Nur dekstra bordero"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Nur supra bordero"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Nur malsupra bordero"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Supra kaj malsupra borderoj, kaj ĉiuj internaj linioj"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Maldekstra kaj dekstra borderoj, kaj ĉiuj internaj linioj"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Forigi de la preferataj aplikaĵoj"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Mankanta signo"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Aldoni al la preferataj aplikaĵoj"
@@ -10281,19 +10331,19 @@ msgstr "Aldoni al la preferataj aplikaĵoj"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kontroli grafikan grandon"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bildo '%NAME%' havas ne sufiĉajn bilderojn por la aktuala grando (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bildo '%NAME%' havas troajn bilderojn por la aktuala grando (%DPIX% x %DPIY% DPI)"
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index a1d95bbf7ae..583efec1e12 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-29 03:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@fastmail.fm>\n"
"Language-Team: Esperanto <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/eo/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Listo 5 Daŭro"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Paĝokapo kaj paĝopiedo"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabelo"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatado"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperligilo"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulataj apudskriboj"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numerado"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Alia"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Kadro"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Pozicio kaj grando"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Agordaro"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ĉirkaŭfluo"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperligilo"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Borderoj"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Areo"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Travidebleco"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolumnoj"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makroo"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Malfari eventualajn ŝanĝojn ĉe la langeto montrita ĉi tie al la agordoj kiuj ĉeestis kiam la dialogo malfermiĝis."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tiparo"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Pozicio"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Azia aranĝo"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Emfazado"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Borderoj"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Lista stilo"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nomi kaj kaŝi propre agorditajn stilojn"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Elektu antaŭe agorditan bulan tipon"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Neordigite"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Elektu antaŭe agorditan ordigitan liston"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordigite"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Elektu antaŭe agorditan skizan formaton"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Konturo"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Elektu antaŭe agorditan grafikan bulan simbolon"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Bildo"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Ŝanĝi krommarĝenon, interspacon, kaj ĝisrandigon por listaj numeroj aŭ simboloj"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Pozicio"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Fasoni vian propran listan aŭ skizan formaton"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Adapti"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Alinea stilo"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Krommargxenoj kaj interspacoj"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Ĝisrandigo"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Teksta fluo"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Azia tipografio"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tiparo"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Tiparaj efektoj"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Pozicio"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Azia aranĝo"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Emfazado"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Taboj"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Ĉefliteroj"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Areo"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Travidebleco"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Borderoj"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Kondiĉo"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Agordi skeman nivelon, listan stilon kaj linian numeradon por alinea stilo."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Skemo kaj listo"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Kadra stilo"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Agordaro"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ĉirkaŭfluo"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Areo"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Travidebleco"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Borderoj"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolumnoj"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makroo"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Norma"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Paĝo"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Areo"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Travidebleco"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Paĝokapo"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Paĝopiedo"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Borderoj"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolumnoj"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Piednoto"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Teksta krado"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index 54252d9cf0b..c9b2d8cba7a 100644
--- a/source/es/cui/messages.po
+++ b/source/es/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-16 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/es/>\n"
"Language: es\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Abra un archivo CSV como una nueva hoja en la hoja de cálculo actual a través de Hoja ▸ Insertar hoja desde archivo."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Puede continuar escribiendo con los atributos predeterminados del estilo en uso, después de haber aplicado manualmente algún formato, como negrita, itálica o subrayado, usa el atajo del teclado %MOD1+Mayús+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -2630,7 +2630,7 @@ msgstr "Pulse con el botón secundario del ratón en la barra de estado de %PROD
#: cui/inc/tipoftheday.hrc:131
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section."
-msgstr "¿Quiere tener 2 o más columnas para sólo una parte de una página de %PRODUCTNAME Writer? Vaya a Insertar ▸ Sección, ajuste en la pestaña Columnas e inserte texto en esa sección."
+msgstr "¿Quiere tener dos o más columnas solo en una parte de una página de %PRODUCTNAME Writer? Vaya a Insertar ▸ Sección, defínalas en la pestaña Columnas e introduzca texto en la sección creada."
#. DmbfV
#: cui/inc/tipoftheday.hrc:132
@@ -10498,7 +10498,7 @@ msgstr "Reemplazar entradas únicas automáticamente"
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:322
msgctxt "hangulhanjaoptdialog|extended_tip|autoreplaceunique"
msgid "Automatically replaces words that only have one suggested word replacement."
-msgstr "Sustituye automáticamente las palabras que sólo tienen un reemplazo en las sugerencias de palabras."
+msgstr "Sustituye automáticamente las palabras que solo tienen un reemplazo en las sugerencias de palabras."
#. Bdqne
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:337
@@ -15714,7 +15714,7 @@ msgstr "Solo para el documento actual"
#: cui/uiconfig/ui/optlanguagespage.ui:231
msgctxt "extended_tip|currentdoc"
msgid "Specifies that the settings for default languages are valid only for the current document."
-msgstr "Especifica que la configuración de idiomas predeterminados sólo son válidas para el documento actual."
+msgstr "Especifica que la configuración de idiomas predeterminados solo sean válidas en el documento actual."
#. zeaKX
#: cui/uiconfig/ui/optlanguagespage.ui:242
diff --git a/source/es/fpicker/messages.po b/source/es/fpicker/messages.po
index d71a202a009..d5587d17642 100644
--- a/source/es/fpicker/messages.po
+++ b/source/es/fpicker/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-15 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/fpickermessages/es/>\n"
"Language: es\n"
@@ -560,7 +560,7 @@ msgstr "Guardar"
#: include/fpicker/strings.hrc:41
msgctxt "STR_FILESAVE_AUTOEXTENSION"
msgid "Automatically adds the file extension to the end of the file name that corresponds to the selected file type."
-msgstr ""
+msgstr "Añade automáticamente la extensión de archivo al final del nombre del archivo que corresponda al tipo de archivo seleccionado."
#. 4qPci
#: include/fpicker/strings.hrc:42
@@ -572,7 +572,7 @@ msgstr "Protege el archivo con una contraseña que debe introducirse al abrirlo.
#: include/fpicker/strings.hrc:43
msgctxt "STR_FILESAVE_CUSTOMIZEFILTER"
msgid "Allows you to set the spreadsheet saving options for some types of data files."
-msgstr ""
+msgstr "Le permite establecer las opciones de guardado de hojas de cálculo para defeterminados tipos de archivos de datos."
#. fJtCZ
#: include/fpicker/strings.hrc:44
@@ -590,7 +590,7 @@ msgstr "Inserta el archivo de imagen seleccionado como enlace."
#: include/fpicker/strings.hrc:46
msgctxt "STR_FILEDLG_PREVIEW_CB"
msgid "Displays a preview of the selected graphic file."
-msgstr ""
+msgstr "Muestra una previsualización del archivo de imagen seleccionado."
#. xWLX2
#: include/fpicker/strings.hrc:47
diff --git a/source/es/helpcontent2/source/text/sbasic/python.po b/source/es/helpcontent2/source/text/sbasic/python.po
index 3fa6bb0887a..2213b19216c 100644
--- a/source/es/helpcontent2/source/text/sbasic/python.po
+++ b/source/es/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:52+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/es/>\n"
"Language: es\n"
@@ -1751,7 +1751,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Este ejemplo de Python expone una variable local, XSCRIPTCONTEXT, a un módulo importado:"
#. uwiPp
#: python_import.xhp
@@ -1760,7 +1760,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Ubicación de las secuencias compartidas"
#. HugAN
#: python_import.xhp
@@ -3632,7 +3632,7 @@ msgctxt ""
"N0121\n"
"help.text"
msgid "Using a Basic macro"
-msgstr ""
+msgstr "Utilizar una macro BASIC"
#. nHPAA
#: python_shell.xhp
@@ -3650,7 +3650,7 @@ msgctxt ""
"N0127\n"
"help.text"
msgid "Using a Python macro"
-msgstr ""
+msgstr "Utilizar una macro Python"
#. 3FCJH
#: python_shell.xhp
@@ -3668,7 +3668,7 @@ msgctxt ""
"N0142\n"
"help.text"
msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Consola interactiva de Python</alt></image>"
#. 8Ei5d
#: python_shell.xhp
diff --git a/source/es/helpcontent2/source/text/sbasic/shared/03.po b/source/es/helpcontent2/source/text/sbasic/shared/03.po
index 0ed5106de83..7efb0c49583 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/es/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-03-11 16:41+0100\n"
-"PO-Revision-Date: 2024-06-04 09:45+0000\n"
-"Last-Translator: Verenice Martinez Sosa <vereuacm@gmail.com>\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
+"Last-Translator: Dante Espejel <dante.misael.espejel@estudiante.uacm.edu.mx>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -21733,7 +21733,7 @@ msgctxt ""
"par_id681622028653480\n"
"help.text"
msgid "Previous examples translate in Python as:"
-msgstr ""
+msgstr "Los ejemplos anteriores se traducen en Python como:"
#. ebc4K
#: sf_form.xhp
@@ -21751,7 +21751,7 @@ msgctxt ""
"pyc_id511622808538351\n"
"help.text"
msgid "# Or, alternatively, to access the form by its index ..."
-msgstr ""
+msgstr "# O, alternativamente, para acceder al formulario por su índice ..."
#. QFFzk
#: sf_form.xhp
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index 39e28fb78aa..b5a8a95f58a 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-06-27 13:51+0000\n"
+"Last-Translator: Dante Espejel <dante.misael.espejel@estudiante.uacm.edu.mx>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564682427.000000\n"
#. sZfWF
@@ -20384,7 +20384,7 @@ msgctxt ""
"par_id3156361\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text that represents a number in a <link href=\"text/shared/00/00000005.xhp#number_system\">numeral system</link> with the given base radix to a positive integer.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Convierte el texto que representa un número en un <link href=\"text/shared/00/00000005.xhp#number_system\">sistema numérico</link> con la base que dada a un entero positivo.</ahelp> La base debe estar en el rango de 2 a 36. Se ignoran los espacios y los tabuladores. El campo <emph>Texto</emph> no distingue entre mayúsculas y minúsculas."
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Convierte el texto que representa un número en un <link href=\"text/shared/00/00000005.xhp#number_system\">sistema numérico</link> con la base que se dé a un entero positivo.</ahelp> La base debe estar en el intervalo de 2 a 36. Se ignoran los espacios y los tabuladores. El campo <emph>Texto</emph> no distingue entre mayúsculas y minúsculas."
#. Nt52d
#: 04060110.xhp
@@ -25280,7 +25280,7 @@ msgctxt ""
"par_id3156294\n"
"help.text"
msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes place between 0 and the lower limit."
-msgstr "<emph>LímiteSuperior</emph> es opcional. Es el límite superior de la integral. Si falta este valor, el cálculo se realiza entre 0 y el límite inferior."
+msgstr "<emph>Límite superior</emph> es opcional. Es el límite superior de la integral. Si falta este valor, el cálculo se realiza entre 0 y el límite inferior."
#. HyxLa
#: 04060115.xhp
@@ -51380,7 +51380,7 @@ msgctxt ""
"par_idN106F7\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for filters and column or row fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre el<link href=\"text/scalc/01/12090106.xhp\">Opciones del campo de datos</link>cuadro de diálogo. El<emph>Opciones</emph>el botón es visible sólo para los filtros y los campos de columna o fila.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el cuadro de diálogo <link href=\"text/scalc/01/12090106.xhp\">Opciones de campos de datos</link>. El botón <emph>Opciones</emph> sólo es visible para los filtros y los campos de columna o fila.</ahelp>"
#. pTDtv
#: 12090105.xhp
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 249cef430ee..9f3007d979e 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-16 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Restablecer valores heredados"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vaya a <emph>Formato ▸ Celdas ▸</emph> pestaña <emph>Fondo</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Vaya a <menuitem>Formato ▸ Estilo de página ▸</menuitem> pestaña <menuitem>Organizador</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Vaya a <menuitem>Estilos ▸ Editar estilo ▸</menuitem> pestaña <menuitem>Organizador</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Vaya a <menuitem>Formato ▸ Estilos ▸ Editar estilo ▸</menuitem> pestaña <menuitem>Organizador</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Vaya a <menuitem>Diapositiva ▸ Propiedades ▸</menuitem> pestaña <menuitem>Página</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 4e0d5f0bf0a..9d23d36e7ed 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563740777.000000\n"
#. 3u8hR
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Devuelve el gráfico seleccionado a su tamaño original.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organizar; estilos</bookmark_value><bookmark_value>estilos; organizar</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizador</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index 7e578864d30..859d40fbaa2 100644
--- a/source/es/helpcontent2/source/text/shared/optionen.po
+++ b/source/es/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-11 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Indicador de comentarios</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Indicador de fórmulas</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Puntero del sistema</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objetos/imágenes"
#. DMhEf
#: 01060100.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index 9cd310c0035..d860abc9256 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 07:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235661.000000\n"
#. sZfWF
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Utilice la sección <emph>Contiene</emph> del Organizador para ver las propiedades del estilo de carácter."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index 3cc0b2ddc48..35a42a2f23d 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235756.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "En la lista de estilos de página, pulse con el botón secundario del ratón sobre «Página izquierda» y seleccione <emph>Modificar</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Pulse en la pestaña <emph>Organizador</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Puede usar cabeceras y pies diferentes en varias páginas del documento, siempre y cuando las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como <emph>Primera página</emph>, <emph>Página izquierda</emph> y <emph>Página derecha</emph>. También se puede crear un estilo de página personalizado."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "En la lista de estilos de página, pulse con el botón secundario del ratón sobre «Página derecha» y seleccione <emph>Modificar</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En el cuadro de diálogo <item type=\"menuitem\">Estilos de página</item>, pulse en la pestaña <item type=\"menuitem\">Cabecera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\">Activar cabecera</item> y pulse en la pestaña <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "En el cuadro <item type=\"menuitem\">Estilo siguiente</item>, seleccione «Página izquierda»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "En la ventana <emph>Estilos</emph>, pulse con el botón secundario del ratón en la opción «Página izquierda» de la lista de estilos de página y, a continuación, pulse en <emph>Modificar</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En el cuadro de diálogo <item type=\"menuitem\">Estilos de página</item>, pulse en la pestaña <item type=\"menuitem\">Cabecera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\">Activar cabecera</item> y pulse en la pestaña <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "En el cuadro <item type=\"menuitem\">Estilo siguiente</item>, seleccione «Página derecha»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la lista de estilos de página, con el botón secundario del ratón pulse en un elemento y elija <emph>Nuevo</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "En la pestaña <emph>Organizador</emph>, asigne un nombre al estilo de página en el cuadro <emph>Nombre</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Seleccione <emph>Salto de página</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Seleccione en el cuadro <item type=\"menuitem\">Estilo</item> un estilo de página que utilice el fondo de la página."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Se inserta un <emph>salto de página automático</emph> al final de una página cuyo estilo de página tiene un valor diferente para el «estilo siguiente»."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Pulse con el botón secundario del ratón sobre un estilo de página y elija <emph>Nuevo</emph>. El nuevo estilo de página obtendrá todas las propiedades del estilo de página seleccionado."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "En el cuadro <emph>Nombre</emph> de la pestaña <emph>Organizador</emph>, asigne un nombre al estilo de página; por ejemplo, «Mi paisaje»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Estilos de una sola página"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Es posible hacer que un estilo de página abarque solamente una página. Un ejemplo de esta clase de estilos es «Primera página». Esta propiedad se define al establecer otro estilo de página como «estilo siguiente» en la pestaña <menuitem>Formato ▸ Estilo de página ▸ Organizador</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Intervalo de un estilo de página definido manualmente"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la lista de estilos de página, con el botón secundario del ratón pulse en un elemento y elija <emph>Nuevo</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "En la pestaña <emph>Organizador</emph>, escriba un nombre en el cuadro <emph>Nombre</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
index df8fe8d7435..8db2404bdd4 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-16 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564940711.000000\n"
#. W5ukN
@@ -114,7 +114,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Toggle Comment"
-msgstr ""
+msgstr "Alternar comentario"
#. jKn8k
#: BasicIDECommands.xcu
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index f6c1f60f12f..a8a3a1f8b23 100644
--- a/source/es/sc/messages.po
+++ b/source/es/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-17 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/es/>\n"
"Language: es\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566031195.000000\n"
#. kBovX
@@ -14283,14 +14283,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14513,14 +14514,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23230,91 +23232,91 @@ msgid "_Standard"
msgstr "_Estándar"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Generales"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Línea"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Área"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Sombras"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparencia"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangrías y espaciado"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Texto"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animación de texto"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotación"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Resalte"
@@ -23913,102 +23915,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Eliminar"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Sin borde"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Todos los bordes"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordes exteriores"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Borde de cuadro grueso"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Borde inferior grueso"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Borde inferior doble"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Borde superior y borde inferior grueso"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Borde superior y borde inferior doble"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Borde izquierdo"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Borde derecho"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Borde superior"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Borde inferior"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Borde diagonal ascendente"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Borde diagonal descendente"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bordes superior e inferior"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bordes izquierdo y derecho"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24046,49 +23952,49 @@ msgid "Format Cells"
msgstr "Formato de celdas"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Números"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordes"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fondo"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protección de celda"
@@ -28177,43 +28083,43 @@ msgid "Page Style"
msgstr "Estilo de página"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Generales"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Página"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fondo"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Cabecera"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Pie de página"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Hoja"
@@ -28255,55 +28161,55 @@ msgid "Cell Style"
msgstr "Estilo de celda"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Generales"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Números"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fondo"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protección de celda"
@@ -33874,7 +33780,7 @@ msgstr "_Gráficos:"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:918
msgctxt "extended_tip|Char_ts:"
msgid "Defines if charts in your document are shown or hidden."
-msgstr ""
+msgstr "Define si los gráficos del documento se muestran o se ocultan."
#. q544D
#: sc/uiconfig/scalc/ui/tpviewpage.ui:931
@@ -33886,7 +33792,7 @@ msgstr "Objetos de _dibujo:"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:937
msgctxt "extended_tip|_Drawing objects:"
msgid "Defines if drawing objects in your document are shown or hidden."
-msgstr ""
+msgstr "Define si los objetos de dibujo del documento se muestran o se ocultan."
#. mpELg
#: sc/uiconfig/scalc/ui/tpviewpage.ui:951
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 5291bc21453..6920fadc887 100644
--- a/source/es/sd/messages.po
+++ b/source/es/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-06 06:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/es/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "E_stándar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Generales"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Línea"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Área"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sombras"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparencia"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangrías y espaciado"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Texto"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animación de texto"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Acotación"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Conector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Resalte"
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index 7599af0c832..b8d4f7250e1 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-03 20:32+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562302714.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Las macros se han deshabilitado debido a los ajustes en Seguridad de macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Las macros están firmadas, pero el documento no (contiene eventos de documento)."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Mostrar macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Mostrar opciones de seguridad"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Mostrar eventos"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris elegante"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmena"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva de azul"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Cianotipo"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Golosina"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idea amarilla"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ave forestal"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frescura"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Creciente libertad"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópoli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoche"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturaleza"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lápiz"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portafolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Atardecer"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Retro"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vívido"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminada"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, tipografía sin gracias"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, tipografía con gracias"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarjeta de presentación con emblema"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Chino simplificado, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japonés normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Quitar"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Vaciar todo"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longitud de contraseña"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "La contraseña que ha proporcionado causa problemas de interoperatividad. Escriba una que sea menor que 52 bytes o mayor que 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Mantenga oprimida %{key} y pulse en el hiperenlace para abrirlo: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Pulse en el hiperenlace para abrirlo: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilizado por: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Documento"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Libro de cálculo"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dibujo"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Utilizados recientemente"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ningún carácter reciente"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "~Restablecer todas las plantillas predeterminadas"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "~Restablecer documento de texto predeterminado"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "~Restablecer libro predeterminado"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "~Restablecer presentación predeterminada"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "~Restablecer dibujo predeterminado"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importar"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensiones"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Cambiar nombre"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Cambiar nombre de categoría"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categoría nueva"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspector de objetos UNO"
diff --git a/source/es/svtools/messages.po b/source/es/svtools/messages.po
index d7fe69d2571..729da6b9a56 100644
--- a/source/es/svtools/messages.po
+++ b/source/es/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-09 19:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/es/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "No se pudo establecer una conexión a internet con $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Mensaje de error del servidor: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Mensaje de error del servidor: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Se produjo un error general de Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Los datos de Internet solicitados no están disponibles en la antememoria y no se pueden transmitir ya que no se ha activado el modo en línea."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "No se pudo crear el contenido."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "El nombre del archivo es demasiado largo para el sistema de archivos de destino."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintaxis de entrada no es válida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Guarde el documento en un formato de archivo de %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Se ha llegado al máximo permitido de documentos que se pueden abrir al mismo tiempo. Para poder abrir otro documento debe cerrar uno o más documentos."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "No se pudo crear una copia de respaldo."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Longitud de datos no válida."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Función imposible: la ruta contiene el directorio actual."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Función imposible: no es el mismo dispositivo (unidad)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Dispositivo (unidad) no preparado."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Suma de comprobación incorrecta."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Función imposible: protegido contra escritura."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desactive primero el modo compartido."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Se encontró un error de formato de archivo en $(ARG1)(fila, columna)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "El filtro para este formato de archivo se desactivó en la configuración. Póngase en contacto con el personal de sistemas."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Error general de OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "El estado actual del objeto no permite ejecutar esta acción."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "El objeto no admite ninguna acción."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "El objeto no admite esta acción."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) al activar el objeto"
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index bba0b697d2f..aa78a888681 100644
--- a/source/es/svx/messages.po
+++ b/source/es/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-10 12:51+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/es/>\n"
"Language: es\n"
@@ -8147,7 +8147,7 @@ msgstr "Diacríticos combinables"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Griego y copto"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -10143,134 +10143,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ningún borde"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Solo borde exterior"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Borde exterior y líneas horizontales"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Borde exterior y todas las líneas interiores"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Borde exterior y líneas verticales"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Borde exterior sin cambiar líneas interiores"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Solo líneas diagonales"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Borde diagonal descendente"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Borde diagonal ascendente"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Bordes entrecruzados"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Los cuatro bordes"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Solo bordes izquierdo y derecho"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Solo bordes superior e inferior"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Bordes superior e inferior y todas las líneas horizontales"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Solo borde izquierdo"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Solo borde derecho"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Solo borde superior"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Solo borde inferior"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Bordes superior e inferior y todas las líneas interiores"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Bordes izquierdo y derecho y todas las líneas interiores"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Quitar de Favoritos"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Carácter faltante"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Añadir a Favoritos"
@@ -10279,19 +10329,19 @@ msgstr "Añadir a Favoritos"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Comprobar tamaño de imágenes"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imagen «%NAME%» tiene muy pocos píxeles para el tamaño actual (%DPIX% × %DPIY% ppp)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "La imagen «%NAME%» tiene demasiados píxeles para el tamaño actual (%DPIX% × %DPIY% ppp)"
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index 507260d1ec6..a4d4fb3454e 100644
--- a/source/es/sw/messages.po
+++ b/source/es/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-16 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/es/>\n"
"Language: es\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lista 5 continuación"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Cabecera y pie"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabla"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formato"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperenlace"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Leyendas simuladas"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numeración"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Otro"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Marco"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posición y tamaño"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opciones"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ajuste"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperenlace"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Área"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Revierte cualquier cambio hecho en la pestaña aquí mostrada a los ajustes que estaban presentes cuando se abrió el diálogo."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Generales"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tipo de letra"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posición"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Disposición asiática"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Resalte"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordes"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Estilo de lista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nombrar y ocultar estilos definidos por el usuario"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Generales"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Elija un tipo de bolo predefinido"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "No ordenada"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Elija una lista ordenada predefinida"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenada"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Elija un formato de esquema predefinido"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Esquema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Elija un símbolo gráfico predefinido para el bolo"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imagen"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modifica la sangría, el espaciado y la alineación de los números o símbolos de la lista"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posición"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Diseñe su propio formato de lista o de esquema"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalizar"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Estilo de párrafo"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Generales"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sangrías y espaciado"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alineación"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Flujo del texto"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipo de letra"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posición"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Disposición asiática"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Resalte"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Letras capitulares"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Área"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordes"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condición"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Establezca el nivel de esquema, el estilo de lista y la numeración de líneas para el estilo de párrafo."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Esquema y lista"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Estilo del marco"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Generales"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opciones"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ajustar"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Área"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordes"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Estándar"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Generales"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Página"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Área"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Cabecera"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Pie"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordes"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota al pie"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Cuadrícula de texto"
@@ -31548,7 +31554,7 @@ msgstr "Solo en el exterior"
#: sw/uiconfig/swriter/ui/wrappage.ui:692
msgctxt "wrappage|extended_tip|outside"
msgid "Wraps text only around the contour of the object, but not in open areas within the object shape."
-msgstr "Ajusta el texto sólo alrededor del contorno del objeto y no en zonas abiertas dentro del objeto."
+msgstr "Ajusta el texto alrededor del contorno del objeto, excepto en las áreas abiertas de la forma de este."
#. Ts8tC
#: sw/uiconfig/swriter/ui/wrappage.ui:703
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index a6ce903dcbc..a75716392ed 100644
--- a/source/et/cui/messages.po
+++ b/source/et/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-27 03:38+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/et/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Kui soovid praegusesse arvutustabelisse lisada uue lehena näiteks CSV-faili, vali Leht ▸ Lisa leht failist."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/et/helpcontent2/source/text/shared/00.po b/source/et/helpcontent2/source/text/shared/00.po
index 18d1f62eb0b..817ca28480f 100644
--- a/source/et/helpcontent2/source/text/shared/00.po
+++ b/source/et/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-08-04 12:59+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/et/>\n"
@@ -614,14 +614,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Järgi lingitud stiili"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Määrab aktiivse kaardi sätted korraldajas valitud lingitud stiili vastavate sätete järgi. Kui lingitud stiil puudub, asendab selle kaardi sätted vaikeväärtustega. Ühtlasi eemaldab korraldajast selle kaardi kohta käiva teabe."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13867,67 +13867,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vali <emph>Vormindus - Lahtrid -</emph> kaart <emph>Taust</emph> </caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13939,13 +13939,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index fb6a4f392ec..8fdcf9f67c5 100644
--- a/source/et/helpcontent2/source/text/shared/01.po
+++ b/source/et/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:49+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/et/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Taastab valitud pildi originaalsuuruse.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Korraldaja"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Korraldaja</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index 2094c5ae733..0d83822c9aa 100644
--- a/source/et/helpcontent2/source/text/shared/optionen.po
+++ b/source/et/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-08-04 12:59+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/et/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/et/helpcontent2/source/text/swriter/01.po b/source/et/helpcontent2/source/text/swriter/01.po
index 48a0dd6f08a..bee5feccd76 100644
--- a/source/et/helpcontent2/source/text/swriter/01.po
+++ b/source/et/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-04-13 17:37+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/et/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/et/helpcontent2/source/text/swriter/guide.po b/source/et/helpcontent2/source/text/swriter/guide.po
index 7a8d760dd51..3b9ac37582d 100644
--- a/source/et/helpcontent2/source/text/swriter/guide.po
+++ b/source/et/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-08-10 09:21+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/et/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Tee paremklõps leheküljestiilide loendi elemendil \"Vasak lehekülg\" ja vali <emph>Muuda</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klõpsa sakil <emph>Lehekülg</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Dokumendi erinevatel lehekülgedel saab kasutada erinevaid päiseid ja jaluseid tingimusel, et need leheküljed kasutavad erinevaid leheküljestiile. $[officename] pakub mitu eelnevalt kirjeldatud leheküljestiili, näiteks <emph>Esimene lehekülg</emph>, <emph>Vasak lehekülg</emph> ja <emph>Parem lehekülg</emph>. Samuti võib leheküljestiile ise luua."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Tee paremklõps leheküljestiilide loendi elemendil \"Parem lehekülg\" ja vali <emph>Muuda</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klõpsa dialoogis <item type=\"menuitem\">Leheküljestiilid</item> kaardil <item type=\"menuitem\">Päis</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Märgi ruut <item type=\"menuitem\">Päis</item> ja klõpsa kaardil <item type=\"menuitem\">Korraldaja</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Vali väljal <item type=\"menuitem\">Järgmine stiil</item> \"Vasak lehekülg\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klõpsa dialoogis <item type=\"menuitem\">Leheküljestiilid</item> kaardil <item type=\"menuitem\">Päis</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Märgi ruut <item type=\"menuitem\">Päis</item> ja klõpsa kaardil <item type=\"menuitem\">Korraldaja</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Vali väljal <item type=\"menuitem\">Järgmine stiil</item> \"Parem lehekülg\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Tee paremklõps leheküljestiilide loendi mõnel elemendil ja vali <emph>Uus</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Sisesta kaardil <emph>Korraldaja</emph> väljale <emph>Nimi</emph> loodava leheküljestiili nimi."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Vali <emph>Leheküljepiir</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Vali väljal <item type=\"menuitem\">Leheküljestiiliga</item> leheküljestiil, mis kasutab soovitud leheküljetausta."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Automaatne leheküljepiir</emph> esineb sellise lehekülje lõpus, mille leheküljestiilile on määratud erinev \"järgmine stiil\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Tee paremklõps mõnel leheküljestiilil ja vali <emph>Uus</emph>. Uue leheküljestiili algsed omadused pärinevad valitud leheküljestiililt."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Sisesta kaardil <emph>Korraldaja</emph> väljale <emph>Nimi</emph> loodava leheküljestiili nimi (nt \"Minu rõhtpaigutus\")."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Ühe lehekülje pikkused stiilid"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Võimalik on luua leheküljestiile, mis kehtivad korraga vaid ühele leheküljele. Selline on näiteks stiil \"Esimene lehekülg\". Selle omaduse määramiseks vali <menuitem>Vormindus - Leheküljestiil -</menuitem> kaart <menuitem>Korraldaja</menuitem> ja määra järgmiseks stiiliks mõni muu leheküljestiil."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Käsitsi määratava ulatusega leheküljestiilid"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "\"Vaikimisi leheküljestiilile\" pole erinevat järgmist stiili määratud (vt <menuitem>Vormindus - Leheküljestiil -</menuitem> kaart <menuitem>Korraldaja</menuitem>) - sellele järgneb samuti \"Vaikimisi leheküljestiil\". Kõikide sama järgmise leheküljestiiliga leheküljestiilide mõjuala võib olla mitu lehekülge. Selliste leheküljestiilide mõjuala alguse ja lõpu määravad \"stiiliga leheküljepiirid\". Kõik leheküljed, mis jäävad kahe sellise leheküljepiiri vahele, kasutavad sama leheküljestiili."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Tee paremklõps leheküljestiilide loendi mõnel elemendil ja vali <emph>Uus</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Vali kaart <emph>Korraldaja</emph> ja kirjuta väljale <emph>Nimi</emph> loodava stiili nimi."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/et/sc/messages.po b/source/et/sc/messages.po
index 08efe14967a..0e5249ba4a5 100644
--- a/source/et/sc/messages.po
+++ b/source/et/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-27 03:38+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/et/>\n"
@@ -14276,14 +14276,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14506,14 +14507,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23230,91 +23232,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23914,102 +23916,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Kustuta"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ääristeta"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Kõik äärised"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Välisäärised"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Paksud välisäärised"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Paks alaääris"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Topelt alaääris"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Üla- ja paks alaääris"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Üla- ja topelt alaääris"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Vasakääris"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Paremääris"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Ülaääris"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Alaääris"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonaalselt üles"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonaalselt alla"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Üla- ja alaääris"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Vasak- ja paremääris"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24047,49 +23953,49 @@ msgid "Format Cells"
msgstr "Lahtrite vormindamine"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Arvud"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Fondiefektid"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Joondus"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aasia tüpograafia"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Äärised"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Taust"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Lahtri kaitse"
@@ -28186,43 +28092,43 @@ msgid "Page Style"
msgstr "Leheküljestiil"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Lehekülg"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Äärised"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Taust"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Päis"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Jalus"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Leht"
@@ -28264,55 +28170,55 @@ msgid "Cell Style"
msgstr "Lahtri stiil"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Arvud"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Fondiefektid"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Joondus"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aasia tüpograafia"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Äärised"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Taust"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Lahtri kaitse"
diff --git a/source/et/sd/messages.po b/source/et/sd/messages.po
index 69d89324735..4ac88cfd444 100644
--- a/source/et/sd/messages.po
+++ b/source/et/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-10 11:42+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/et/>\n"
@@ -9552,97 +9552,97 @@ msgid "_Standard"
msgstr "Standardne"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Joon"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Ala"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Varjustus"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Läbipaistvus"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Fondiefektid"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Taanded ja vahed"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animeeritud tekst"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Mõõdud"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Konnektor"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Joondus"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aasia tüpograafia"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabelduskohad"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Esiletõstmine"
diff --git a/source/et/sfx2/messages.po b/source/et/sfx2/messages.po
index 29241dbbd2b..c7309d6333f 100644
--- a/source/et/sfx2/messages.po
+++ b/source/et/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-01-10 11:42+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/et/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Elegantne hall"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Meekärg"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sinine laine"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Joonis"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Kommid"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Kollane idee"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fookuses"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsaserv"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Värskendav"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiratsioon"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valgushelk"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Kasvav vabadus"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Öösinine"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Kolm puud ja päike"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pliiats"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klaver"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfoolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Päikseloojang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vanamoeline"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Erk"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "USA moodi CV"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Vaikimisi"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modernne ärikiri (seriifideta kirjas)"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modernne ärikiri (seriifkirjas)"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Logoga visiitkaart"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Lihtne"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN (äriprotsesside modelleerimine)"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Eemalda"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Kustuta kõik"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Parooli pikkus"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Sisestatud parool põhjustab ühilduvusprobleeme. Palun vali parool, mis oleks lühem kui 52 baiti või pikem kui 55 baiti."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}+klõps avab hüperlingi: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klõps avab hüperlingi: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(kasutuses: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Arvutustabel"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Esitlus"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Joonistus"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Viimati kasutatud"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Viimati kasutatud märke pole"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Lähtesta kõik vaikemallid"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Lähtesta tekstidokumentide vaikemall"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Lähtesta arvutustabelite vaikemall"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Lähtesta slaidiesitluste vaikemall"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Lähtesta joonistuste vaikemall"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Impordi"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Laiendused"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Nime muutmine"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategooria nime muutmine"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Uus kategooria"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/et/svtools/messages.po b/source/et/svtools/messages.po
index d7eacca2153..d0db7544fb7 100644
--- a/source/et/svtools/messages.po
+++ b/source/et/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-10 11:42+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/et/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Ühenduse loomine serverisse $(ARG1) ei õnnestunud."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Serveri veateade: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Serveri veateade: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Tekkis üldine võrguviga."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Internetist soovitud andmeid pole vahemälus ja neid ei saa edastada, kuna võrgurežiim pole aktiveeritud."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Sisu loomine ei õnnestunud."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Faili nimi on sihtfailisüsteemi jaoks liiga pikk."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Sisestussüntaks on vigane."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Palun salvesta dokument %PRODUCTNAME %PRODUCTVERSION vormingusse."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Üheaegselt on avatud suurim võimalik arv dokumente. Enne uue dokumendi avamist tuleb mõni avatud dokument sulgeda."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Varukoopia loomine nurjus."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Vigane andmete pikkus."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funktsiooni täitmine pole võimalik: asukoht sisaldab aktiivset kataloogi."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funktsiooni täitmine pole võimalik: seade (ketas) pole sama."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Seade pole veel valmis."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Vale kontrollsumma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funktsiooni täitmine pole võimalik: kirjutuskaitstud."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Välju esmalt jagamisrežiimist."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Leiti failivormingu viga: $(ARG1) (rida, veerg)"
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Selle failivormingu filter on seadistuses keelatud. Palun võta ühendust oma süsteemihalduriga."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Üldine OLE-tõrge."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Toimingut ei saa objekti praeguses olekus teostada."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekt ei toeta ühtegi toimingut."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekt ei toeta seda toimingut."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) objekti aktiveerimisel"
diff --git a/source/et/svx/messages.po b/source/et/svx/messages.po
index f9c5e1972cf..6c6ed13f19a 100644
--- a/source/et/svx/messages.po
+++ b/source/et/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-01-10 11:42+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/et/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Äärised puuduvad"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Ainult välisäärised"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Välisäärised ja horisontaaljooned"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Välisäärised ja kõik sisemised jooned"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Välisäärised ja vertikaaljooned"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Välisäärised sisemisi jooni muutmata"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Ainult diagonaalid"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonaalselt alla"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonaalselt üles"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Risti-rästi"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Kõik neli äärist"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Ainult vasak ja parem ääris"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Ainult ülemine ja alumine ääris"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Ülemine ja alumine ääris ning kõik horisontaaljooned"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Ainult vasak ääris"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Ainult parem ääris"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Ainult ülemine ääris"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Ainult alumine ääris"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Ülemine ja alumine ääris ning kõik sisemised jooned"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Vasak ja parem ääris ning kõik sisemised jooned"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index cef449730e4..702da8e710e 100644
--- a/source/et/sw/messages.po
+++ b/source/et/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-01-27 03:38+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/et/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Loend 5 järg"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Päis ja jalus"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10602,38 +10602,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16434,55 +16440,55 @@ msgid "Frame"
msgstr "Paneel"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Sätted"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Mähkimine"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hüperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Äärised"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Taust"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Läbipaistvus"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Veerud"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28879,43 +28885,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Võtab tagasi sellel kaardil tehtud muudatused, asendades need sätetega, mis kehtisid dialoogi avamisel."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Fondiefektid"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Paigutus"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aasia küljendus"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Esiletõstmine"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Äärised"
@@ -28927,85 +28933,85 @@ msgid "List Style"
msgstr "Loendistiil"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Kasutajamääratud stiilide ümbernimetamine ja peitmine"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Eelmääratud nummerdamata ehk täpploendid"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Täpid"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Eelmääratud numbri- või täheskeemiga loendid"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Nummerdus"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Eelmääratud liigendatud loendid"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Liigendus"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Eelmääratud piltsümboliga täpploendid"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Pilt"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Loendimärkide taande, vahe ja joonduse sätted"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Paigutus"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Kohandatud loendi- või liigendusskeem"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Kohandamine"
@@ -29017,109 +29023,109 @@ msgid "Paragraph Style"
msgstr "Lõigustiil"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Taanded ja vahed"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Joondus"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstivoog"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aasia tüpograafia"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Fondiefektid"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Paigutus"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aasia küljendus"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Esiletõstmine"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabelduskohad"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Süvisinitsiaalid"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Taust"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Läbipaistvus"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Äärised"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Tingimus"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Lõigustiili liigendustase, loendistiil ja reanummerdus"
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Liigendus ja loend"
@@ -29131,55 +29137,55 @@ msgid "Frame Style"
msgstr "Paneelistiil"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tüüp"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Sätted"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Mähkimine"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Taust"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Läbipaistvus"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Äärised"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Veerud"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29197,61 +29203,61 @@ msgid "Standard"
msgstr "Standardne"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Lehekülg"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Taust"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Läbipaistvus"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Päis"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Jalus"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Äärised"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Veerud"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Allmärkused"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Teksti alusvõrk"
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index 01145f35a9d..2b0c278c383 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/eu/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Ireki CSV fitxategiak uneko kalkulu-orriko orri berriak bailiran 'Orria ▸ Orria fitxategitik' erabilita."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "%MOD1+⇧+X sakatuz, formatu-atributu lehenetsiekin idazten jarraitu dezakezu lodia, etzana edo azpimarratua eskuz aplikatu ondoren."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index 43190cf64ab..b55d28adf48 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-11 16:12+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/eu/>\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Berrezarri gurasoan"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Uneko fitxako balioak antolatzaileko 'Heredatu hemendik' atalean zehaztutako estiloan dagozkien balioekin ezartzen dira. Kasu guztietan, 'Heredatu hemendik' atalean 'Bat ere ez' ezarrita badago ere, 'Dauka' atalean fitxa honetarako dauden balioak kendu egingo dira."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Aukeratu <emph>Formatua - Gelaxkak - Atzeko planoa</emph> fitxa.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Aukeratu <menuitem>Formatua - Orrialde-estiloa - Antolatzailea</menuitem> fitxa."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Aukeratu <menuitem>Estiloak - Editatu estiloa - Antolatzailea</menuitem> fitxa."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Aukeratu <menuitem>Formatua - Orrialde-estiloa - Antolatzailea</menuitem> fitxa.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Aukeratu <menuitem>Formatua - Estiloak - Editatu estiloa - Antolatzailea</menuitem> fitxa.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Aukeratu <menuitem>Diapositiba - Propietateak - Orrialdea</menuitem> fitxa.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index 06884ca52c6..60d0e3c03d1 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-09 11:38+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/eu/>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Hautatutako grafikoa jatorrizko tamainara itzultzen du.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Antolatzailea"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>estiloak; antolatzea</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Antolatzailea</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index d025e256956..8c811e41fdd 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-11 21:14+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/eu/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 37acd1953cd..fa1eb45742f 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-11 21:14+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/eu/>\n"
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Formatu zuzenak karaktere-estiloek eskainitako edozein formatu gainidazten du. Hautapen bati formatu zuzena kentzeko, erabili <menuitem>Formatua - Garbitu formatu zuzena</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>⌘</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Erabili antolatzaileko <emph>Dauka</emph> atala karaktere-estiloaren propietateak ikusteko."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/eu/helpcontent2/source/text/swriter/guide.po b/source/eu/helpcontent2/source/text/swriter/guide.po
index 57f8fbd5036..3420ef4d3f5 100644
--- a/source/eu/helpcontent2/source/text/swriter/guide.po
+++ b/source/eu/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-21 16:54+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/eu/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Orrialde-estiloen zerrendan, egin klik eskuineko botoiaz \"Ezkerreko orrialdea\" aukeran, eta aukeratu <emph>Aldatu</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Egin klik <emph>Antolatzailea</emph> fitxan."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Goiburuko eta orri-oin ezberdinak erabil ditzakezu dokumentuko orrialdeetan, betiere orrialdeek orrialde-estilo ezberdinak erabiltzen badituzte. $[officename] aplikazioak aurrez definitutako hainbat orrialde-estilo eskaintzen ditu, esaterako, <emph>Lehen orrialdea</emph>, <emph>Ezkerreko orrialdea</emph> eta <emph>Eskuineko orrialdea</emph>, baina orrialde-estilo pertsonalizatuak ere sor ditzakezu."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Orrialde-diseinu ispilatua ere erabili daiteke kanpoko eta barruko orrialde-marjina desberdinak dituen orrialde-estilo bati goiburukoa gehitu nahi bazaio. Aukera hori orrialde-estilo bati aplikatzeko, aukeratu <item type=\"menuitem\">Formatua - Orrialde-estiloa</item>, egin klik <item type=\"menuitem\">Orrialdea</item> fitxan eta, <item type=\"menuitem\">Diseinu-ezarpenak</item> arean, aukeratu \"Ispilatua\" <item type=\"menuitem\">Orrialde-diseinua</item> koadroan."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Orrialde-estiloen zerrendan, egin klik eskuineko botoiaz \"Eskuineko orrialdea\" aukeran, eta aukeratu <emph>Aldatu</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Orrialde-estiloak</item> elkarrizketa-koadroan, egin klik <item type=\"menuitem\">Goiburukoa</item> fitxan."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Hautatu <item type=\"menuitem\">Goiburukoa aktibatuta</item> eta sakatu <item type=\"menuitem\">Antolatzailea</item> fitxa."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">Hurrengo estiloa</item> kutxan, hautatu \"Ezkerreko orrialdea\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "<emph>Estiloak</emph> leihoan, egin klik eskuineko botoiarekin orrialde-estiloen zerrendako \"Ezkerreko orrialdea\" aukeran eta aukeratu <emph>Aldatu</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Orrialde-estiloak</item> elkarrizketa-koadroan, egin klik <item type=\"menuitem\">Goiburukoa</item> fitxan."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Hautatu <item type=\"menuitem\">Goiburukoa aktibatuta</item> eta sakatu <item type=\"menuitem\">Antolatzailea</item> fitxa."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">Hurrengo estiloa</item> kutxan, hautatu \"Eskuineko orrialdea\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Orrialde-estiloen zerrendan, egin klik eskuineko botoiaz elementuan eta aukeratu <emph>Berria</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>Antolatzailea</emph> fitxan, idatzi orrialde-estiloaren izena <emph>Izena</emph> koadroan."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Hautatu <emph>Orrialde-jauzia</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">Estiloa</item> koadroan, hautatu orrialdearen atzeko planoa darabilen orrialde-estilo bat."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Orrialde-jauzi automatikoa</emph> agertuko da orrialdearen amaieran, orrialde-estiloak \"hurrengo estilo\" desberdina duenean."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Egin klik eskuineko botoiaz eta aukeratu <emph>Berria</emph>. Orri-estilo berriak hasieran hautatutako orri-estiloaren propietate guztiak bereganatuko ditu."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>Antolatzailea</emph> fitxan, idatzi orrialde-estiloaren izena <emph>Izena</emph> koadroan, adibidez, \"Horizontala 1\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Orri bakarreko estiloak"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Orrialde-estilo batek orrialde bakarra hartu dezan definitu daiteke. 'Lehen orrialdea' estiloa horren adibide da. Propietate hori ezartzeko, \"hurrengo estiloa\" beste orrialde-estilo bat izan dadin ezarri behar da <menuitem>Formatua - Orrialde-estiloa - Antolatzailea</menuitem> fitxa-orrian."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Orrialde-estilo batean eskuz definitutako barrutia"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "'Lehenetsia' orrialde-estiloak ez du ezartzen beste \"hurrengo estilo\" bat <menuitem>Formatua - Orrialde-estiloa - Antolatzailea</menuitem> fitxa-orrian. Horren ordez, \"hurrengo estiloa\" ere 'Lehenetsia' da. Hurrengo orrialdeetan orrialde-estilo bera definituta duten orrialde-estilo guztiek orrialde anitz hartu ditzakete. Orrialde-estiloaren barrutiaren goiko eta beheko ertzak \"orrialde-jauziak estiloarekin\" aukerak definitzen ditu. \"Orrialde-jauziak estiloarekin\" aukera biren arteko orrialde guztiek estilo bera darabilte."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Orrialde-estiloen zerrendan, egin klik eskuineko botoiaz elementuan eta aukeratu <emph>Berria</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>Antolatzailea</emph> fitxan, idatzi izena <emph>Izena</emph> koadroan."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 56d041823d9..72d30a9cbea 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-03-08 14:32+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/eu/>\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23228,91 +23230,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23911,102 +23913,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Ezabatu"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ertzik ez"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Ertz guztiak"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Kanpoko ertzak"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Kutxa-ertz lodia"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Beheko ertz lodia"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Beheko ertz bikoitza"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Goiko eta beheko ertz lodiak"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Goiko eta beheko ertz bikoitzak"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Ezkerreko ertza"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Eskuineko ertza"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Goiko ertza"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Beheko ertza"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Gorako ertz diagonala"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Beherako ertz diagonala"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Goiko eta beheko ertzak"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Ezkerreko eta eskuineko ertzak"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24044,49 +23950,49 @@ msgid "Format Cells"
msgstr "Gelaxken formatua"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Zenbakiak"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Letra-tipoa"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Karaktere-efektuak"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Lerrokatzea"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiar tipografia"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Ertzak"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Atzeko planoa"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Gelaxka-babesa"
@@ -28175,43 +28081,43 @@ msgid "Page Style"
msgstr "Orrialde-estiloa"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Orrialdea"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Ertzak"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Atzeko planoa"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Goiburukoa"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Orri-oina"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Orria"
@@ -28253,55 +28159,55 @@ msgid "Cell Style"
msgstr "Gelaxka-estiloa"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Zenbakiak"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Letra-tipoa"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Karaktere-efektuak"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Lerrokatzea"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiar tipografia"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Ertzak"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Atzeko planoa"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Gelaxka-babesa"
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 4889edb65c6..66287c17a87 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-21 15:34+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/eu/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "E_standarra"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Marra"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Area"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Itzala"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Gardentasuna"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Letra-tipoa"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Karaktere-efektuak"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Koskak eta tarteak"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Testua"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Testu-animazioa"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Neurriak"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Lotura-marra"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Lerrokatzea"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiar tipografia"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulazioak"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Nabarmentzea"
diff --git a/source/eu/sfx2/messages.po b/source/eu/sfx2/messages.po
index 21652e3d28f..ace2c679f6b 100644
--- a/source/eu/sfx2/messages.po
+++ b/source/eu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-14 01:45+0000\n"
"Last-Translator: Aitor Salaberria <trslbrr@gmail.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/eu/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makroak sinatuta daude, baina dokumentua (dokumentu-gertaerak dituena) ez dago sinatuta."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Erakutsi makroak"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Erakutsi gertaerak"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris dotorea"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Erlauntza"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kurba urdina"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Zianotipoa"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Gozokia"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Ideia horia"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokua"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Basoko txoria"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Freskotasuna"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirazioa"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Argiak"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Askatasun hazkorra"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolia"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gaueko urdina"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturako ilustrazioa"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Arkatza"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianoa"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Paper-zorroa"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progresioa"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Ilunabarra"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antzinakoa"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Bizia"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Laburpena"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Lehenetsia"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modernoa"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Enpresa-gutun modernoa, sans serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Enpresa-gutun modernoa, serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Bisita-txartel logoduna"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Sinplea"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Txinera soildu normala"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Kendu"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Garbitu dena"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Pasahitzaren luzera"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Sartutako pasahitzak bateragarritasun-arazoak sortzen ditu. Sartu 52 byte baino gutxiago edo 55 byte baino gehiago dituen pasahitz bat."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik hiperesteka irekitzeko: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Egin klik hiperesteka irekitzeko: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(honek erabilia: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokumentua"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Kalkulu-orria"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Aurkezpena"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Marrazkia"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Azken aldian erabilia"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Azken karaktererik ez"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Berrezarri txantiloi le~henetsi guztiak"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Berrezarri testu-dokumentu le~henetsia"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Berrezarri kalkulu-orri le~henetsia"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Berrezarri aurkezpen le~henetsia"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Berrezarri marrazki le~henetsia"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Inportatu"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "He~dapenak"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Aldatu izena"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Aldatu izena kategoriari"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Kategoria berria"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO objektuen ikuskatzailea"
diff --git a/source/eu/svtools/messages.po b/source/eu/svtools/messages.po
index ff85d07a86f..1de6d099910 100644
--- a/source/eu/svtools/messages.po
+++ b/source/eu/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-03-03 15:45+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/eu/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Ezin izan da $(ARG1)(e)ra Internet-konexiorik ezarri."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Zerbitzariaren errore-mezua: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Zerbitzariaren errore-mezua: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Interneteko errore orokorra gertatu da."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Eskatutako Interneteko datuak ez daude eskuragarri cachean eta ezin dira transmititu lineako modua ez dagoelako aktibatuta."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Edukia ezin izan da sortu."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Fitxategi-izena luzeegia da helburuko fitxategi-sistemarentzat."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Sarrerako sintaxia baliogabea da."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Gorde dokumentua %PRODUCTNAME %PRODUCTVERSION fitxategi-formauan."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Aldi berean ireki daitekeen gehieneko dokumentu-kopurura iritsi zara. Dokumentu bat edo gehiago itxi beharko duzu dokumentu berri bat ireki baino lehen."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Ezin izan da babeskopia sortu."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Baliogabeko datu-luzera."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Ezin da funtzioa exekutatu: bide-izenak uneko direktorioa dauka."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Ezin da funtzioa exekutatu: gailua (unitatea) ez da bera."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Gailua (unitatea) ez dago prest."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Kontroleko batura okerra."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Ezin da funtzioa exekutatu: idazketaren kontra babestuta dago."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desaktibatu partekatze-modua lehenago."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Formatu-errorea aurkitu da fitxategian $(ARG1)(row,col) posizioan."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Fitxategi formatu honentzako iragazkia ezarpenetan desgaitu da. Jarri zure administratzailearekin harremanetan."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "OLE errore orokorra."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Objektuaren uneko egoerak ez du uzten ekintza exekutatzen."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objektuak ez du ekintzarik onartzen."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objektuak ez du ekintza hau onartzen."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) objektua aktibatzean"
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index dd9441cc99f..9651c9cd860 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-03-13 10:45+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/eu/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ertzik ez"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Kanpoko ertza soilik"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Kanpoko ertza eta marra horizontalak"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Kanpoko ertza eta barneko marra guztiak"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Kanpoko ertza eta marra bertikalak"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Kanpoko ertza barruko marrak aldatu gabe"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Marra diagonalak soilik"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Beherako ertz diagonala"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Gorako ertz diagonala"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Ertz elkargurutzatua"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Lau ertzak"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Ezkerreko eta eskuineko ertzak soilik"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Goiko eta beheko ertzak soilik"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Goiko eta beheko ertzak eta barneko marra guztiak"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Ezkerreko ertza soilik"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Eskuineko ertza soilik"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Goiko ertza soilik"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Beheko ertza soilik"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Goiko eta beheko ertzak eta barneko marra guztiak"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Ezkerreko eta eskuineko ertzak eta barneko marra guztiak"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafikoaren tamainaren egiaztatzea"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "'%NAME%' irudiak pixel gutxiegi ditu uneko tamainarako (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "'%NAME%' irudiak pixel gehiegi ditu uneko tamainarako (%DPIX% x %DPIY% DPI)"
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 7288fe65adc..4a4acd24b6a 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-03-13 10:45+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Basque <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/eu/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "5. zerrendaren jarr."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Goiburukoa eta orri-oina"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Markoa"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Kokagunea eta tamaina"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Aukerak"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Egokitu"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperesteka"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Ertzak"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Area"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Gardentasuna"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Zutabeak"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makroa"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Baztertu hemen erakutsitako fitxan egindako aldaketak eta itzuli elkarrizketa-koadroa ireki denean zeuden ezarpenetara."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Letra-tipoa"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Karaktere-efektuak"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Kokagunea"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiar diseinua"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Nabarmentzea"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Ertzak"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Zerrenda-estiloa"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Izendatu eta ezkutatu erabiltzaileak definitutako estiloak"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Aukeratu bulet mota aurredefinitu bat"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Ordenatu gabea"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Aukeratu zerrenda ordenatu aurredefinitu bat"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenatua"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Aukeratu eskema-formatu aurredefinitu bat"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Eskema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Aukeratu bulet grafikoen ikur aurredefinitu bat"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Irudia"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Aldatu zerrenda-zenbakien edo -ikurren koska. tarteak eta lerrokatzea"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Kokagunea"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Diseinatu zure zerrenda edo eskema propioa"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Pertsonalizatu"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Paragrafo-estiloa"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Koskak eta tarteak"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Lerrokatzea"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Testu-fluxua"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiar tipografia"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Letra-tipoa"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Karaktere-efektuak"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Kokagunea"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiar diseinua"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Nabarmentzea"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulazioak"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Letra kapitalak"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Area"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Gardentasuna"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Ertzak"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Baldintza"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Ezarri paragrafo-estiloaren eskema-maila, zerrenda-estiloa eta lerro-zenbakitzea."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Eskema eta zerrenda"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Marko-estiloa"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Mota"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Aukerak"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Egokitu"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Area"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Gardentasuna"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Ertzak"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Zutabeak"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makroa"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Estandarra"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Orrialdea"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Area"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Gardentasuna"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Goiburukoa"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Orri-oina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Ertzak"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Zutabeak"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Oin-oharra"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Testu-sareta"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index 4455ba794ae..92fdc35d551 100644
--- a/source/fa/cui/messages.po
+++ b/source/fa/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-22 01:45+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fa/>\n"
@@ -2588,10 +2588,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/fa/sc/messages.po b/source/fa/sc/messages.po
index 2d2542e50a9..01cb1809d02 100644
--- a/source/fa/sc/messages.po
+++ b/source/fa/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-12 01:45+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/fa/>\n"
@@ -14528,14 +14528,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14768,14 +14769,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23773,91 +23775,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24473,103 +24475,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "بدون حاشیه"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24609,53 +24514,53 @@ msgid "Format Cells"
msgstr "قالب‌بندی سلول"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "عدد"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "فوت"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "جلوه‌های قلم"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ردیف کردن"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "حروف‌نگاری آسیایی"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "کناره‌ها"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "پس‌زمینه"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28866,45 +28771,45 @@ msgid "Page Style"
msgstr "سبک صفحه"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "صفحات"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "کناره‌ها"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "پس‌زمینه"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "سرصفحه"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "پاصفحه"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "برگه"
@@ -28949,59 +28854,59 @@ msgid "Cell Style"
msgstr "سبک‌های سلول"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "عدد"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "فوت"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "جلوه‌های قلم"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ردیف کردن"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "حروف‌نگاری آسیایی"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "کناره‌ها"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "پس‌زمینه"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/fa/sd/messages.po b/source/fa/sd/messages.po
index 6c2fb677deb..c5799d3a8ec 100644
--- a/source/fa/sd/messages.po
+++ b/source/fa/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-22 01:45+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/fa/>\n"
@@ -9815,100 +9815,100 @@ msgid "_Standard"
msgstr "استاندارد"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "خط"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "محیط"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "شفافیت"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "قلم"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "جلوه‌های قلم"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "متن"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "پویانمایی متنی"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "خط اندازه"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "متصل‌کننده"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ردیف کردن"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "حروف‌نگاری آسیایی"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/fa/sfx2/messages.po b/source/fa/sfx2/messages.po
index b7dd28dd955..f1aece6dfd6 100644
--- a/source/fa/sfx2/messages.po
+++ b/source/fa/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-22 01:45+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fa/>\n"
@@ -1587,376 +1587,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "حذف"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/fa/svtools/messages.po b/source/fa/svtools/messages.po
index 1e10e421d95..3080c003ef1 100644
--- a/source/fa/svtools/messages.po
+++ b/source/fa/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fa/>\n"
@@ -2411,16 +2411,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2428,37 +2436,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ایجاد مندرجات ممکن نیست."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "نام پرونده برای سیستم پروندهٔ هدف بزرگ است."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2466,19 +2474,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2491,43 +2499,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "خطای عمومی OLE"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "نمی‌توان این کنش را در وضعیت فعلی شیء اجرا کرد."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "شیء از هیچ کنشی پشتیبانی نمی‌کند"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "شیء از این کنش پشتیبانی نمی‌کند"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/fa/svx/messages.po b/source/fa/svx/messages.po
index 10de208e066..85f92e14e8f 100644
--- a/source/fa/svx/messages.po
+++ b/source/fa/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/fa/>\n"
@@ -10290,134 +10290,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10426,19 +10476,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index 018a2b3a903..36a359afd7c 100644
--- a/source/fa/sw/messages.po
+++ b/source/fa/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-22 01:45+0000\n"
"Last-Translator: goodosuser <goodlinuxuser@chmail.ir>\n"
"Language-Team: Persian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fa/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "ادامه فهرست 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "سربرگ و ته‌برگ"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10595,38 +10595,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16425,55 +16431,55 @@ msgid "Frame"
msgstr "چارچوب"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "گزینه‌ها"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "پیچش"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "فراپیوند"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "حاشیه‌ها"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "محدوده"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ستون‌ها"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ماکرو"
@@ -28864,43 +28870,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "هر گونه تغییر ایجاد شده در برگه نشان داده شده در این‌جا را به تنظیماتی که هنگام باز شدن این گفتگو وجود داشت واگردانی کنید."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "قلم"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "جلوه‌های قلم"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "موقعیت"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "صفحه‌بندی آسیایی"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "پررنگ‌سازی"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "حاشیه‌ها"
@@ -28912,85 +28918,85 @@ msgid "List Style"
msgstr "سبک فهرست"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "نام‌گذاری و پنهان کردن سبک‌های تعریف شده توسط کاربر"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "یک نوع گلوله از پیش تعریف شده را انتخاب کنید"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "مرتب نشده"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "یک فهرست مرتب از پیش تعریف شده را انتخاب کنید"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "مرتب شده"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "یک قالب طرح کلی از پیش تعریف شده را انتخاب کنید"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "دورخط‌"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "نماد گلوله گرافیکی از پیش تعریف شده را انتخاب کنید"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "تصویر"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "تورفتگی، فاصله و تراز را برای اعداد یا نمادهای فهرست تغییر دهید"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "موقعیت"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "فهرست یا قالب طرح خود را طراحی کنید"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "سفارشی کردن"
@@ -29002,109 +29008,109 @@ msgid "Paragraph Style"
msgstr "سبک بند"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "تورفتگی و فاصله"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ردیف کردن"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "جریان متن"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "حروف‌نگاری آسیایی"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "قلم"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "جلوه‌های قلم"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "موقعیت"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "صفحه‌بندی آسیایی"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "پررنگ‌سازی"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "پرش‌ها"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "آغاز با حرف بزرگ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "محدوده"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "حاشیه‌ها"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "شرط"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "طرح کلی و فهرست"
@@ -29116,55 +29122,55 @@ msgid "Frame Style"
msgstr "سبک قاب"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "نوع"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "گزینه‌ها"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "پیچش"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "محدوده"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "حاشیه‌ها"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ستون‌ها"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ماکرو"
@@ -29182,61 +29188,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "صفحه"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "محدوده"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "سرصفحه"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "پاصفحه"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "حاشیه‌ها"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ستون‌ها"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "پانویس"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 3ced0511ad7..b027f893f59 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-14 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fi/>\n"
"Language: fi\n"
@@ -2565,10 +2565,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
@@ -16511,7 +16511,7 @@ msgstr "minuutin välein"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Tallenna asiakirja itsessään automaattisesti"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
diff --git a/source/fi/formula/messages.po b/source/fi/formula/messages.po
index 5588eec3548..2cbb3f201a4 100644
--- a/source/fi/formula/messages.po
+++ b/source/fi/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-05-14 16:37+0000\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563286464.000000\n"
#. YfKFn
@@ -2852,7 +2852,7 @@ msgstr "Valitse"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Sisältö:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index 4820c61c4db..b608c5f2ae8 100644
--- a/source/fi/helpcontent2/source/text/shared/00.po
+++ b/source/fi/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-14 09:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/fi/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index 9a7c0c1b672..bcf4c6861c0 100644
--- a/source/fi/helpcontent2/source/text/shared/01.po
+++ b/source/fi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-14 09:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/fi/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565339092.000000\n"
#. 3u8hR
@@ -23455,14 +23455,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Kuva palautetaan alkuperäiseen kokoonsa.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Järjestelytyökalu"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23473,14 +23473,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Järjestelytyökalu</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index b169dcce622..07d8f6f8586 100644
--- a/source/fi/helpcontent2/source/text/shared/optionen.po
+++ b/source/fi/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-14 09:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fi/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/fi/helpcontent2/source/text/swriter/01.po b/source/fi/helpcontent2/source/text/swriter/01.po
index 715651b7ff1..1be1342908a 100644
--- a/source/fi/helpcontent2/source/text/swriter/01.po
+++ b/source/fi/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-12 21:43+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/fi/>\n"
@@ -23370,13 +23370,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/fi/helpcontent2/source/text/swriter/guide.po b/source/fi/helpcontent2/source/text/swriter/guide.po
index 90d98b787da..0064692e58e 100644
--- a/source/fi/helpcontent2/source/text/swriter/guide.po
+++ b/source/fi/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-07 12:18+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/fi/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Napsauta ensin kakkospainikkeella sivutyylien luettelosta \"Vasen sivu\" ja valitse sitten <emph>Muuta</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Napsauta <emph>Järjestelytyökalu</emph>-välilehteä."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Asiakirjan eri sivuilla voidaan käyttää eri ylä- ja alatunnuksia, mikäli sivuilla käytetään eri sivutyylejä. $[officename]ssa on useita esimääriteltyjä sivutyylejä, kuten <emph>Ensimmäinen sivu</emph>, <emph>Vasen sivu</emph> ja <emph>Oikea sivu</emph>. Tarvittaessa on luotavissa mukautettu sivutyylikin."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Napsauta ensin kakkospainikkeella sivutyylien luettelosta \"Oikea sivu\" ja valitse sitten <emph>Muuta</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Sivun tyyli</item> -valintaikkunassa napsauta <item type=\"menuitem\">Ylätunniste</item>-välilehteä."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Valitse <item type=\"menuitem\">Ylätunniste käytössä</item> ja napsauta <item type=\"menuitem\">Järjestelytyökalu</item>-välilehteä."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Valitse \"Vasen sivu\" <item type=\"menuitem\">Seuraava tyyli</item> -ruudussa."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Sivun tyyli</item> -valintaikkunassa napsauta <item type=\"menuitem\">Ylätunniste</item>-välilehteä."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Valitse <item type=\"menuitem\">Ylätunniste käytössä</item> ja napsauta <item type=\"menuitem\">Järjestelytyökalu</item>-välilehteä."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Valitse \"Oikea sivu\" <item type=\"menuitem\">Seuraava tyyli</item> -ruudussa."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Napsauta ensin kakkospainikkeella sivutyylien luettelosta kohdetta ja valitse sitten <emph>Uusi</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Kirjoita <emph>Järjestelytyökalu</emph>-välilehdellä sivutyylin nimi <emph>Nimi</emph>-kenttään."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Valitse <emph>Sivunvaihto</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Valitse <item type=\"menuitem\">Tyyli</item>-ruudussa sivutyyli, jossa käytetään sivun taustaa."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Automaattinen sivunvaihto</emph> tulee sivun loppuun, kun sivutyylissä on erilainen \"seuraava tyyli\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Napsauta kakkospainikkeella sivun tyyliä ja valitse <emph>Uusi</emph>. Uusi sivutyyli saa aluksi valitun sivutyylin ominaisuudet."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Kirjoita <emph>Järjestelytyökalu</emph>-välilehdellä sivutyylin nimi <emph>Nimi</emph>-kenttään, esimerkiksi \"Maisemani\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Yhden sivun laajuiset tyylit"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12365,13 +12365,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Sivutyylin laajuuden määrittäminen"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12501,14 +12501,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Napsauta ensin kakkospainikkeella sivutyylien luettelosta kohdetta ja valitse sitten <emph>Uusi</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Kirjoita <emph>Järjestelytyökalu</emph>-välilehdellä nimi <emph>Nimi</emph>-kenttään."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
index 64192b0dc21..68e613daeec 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-14 01:45+0000\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565038397.000000\n"
#. W5ukN
@@ -8735,7 +8735,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Display Snap Guides"
-msgstr "Näytä kohdistusviivat"
+msgstr "Näytä kohdistusavut"
#. RC4j5
#: DrawImpressCommands.xcu
@@ -8745,7 +8745,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Snap Guides to ~Front"
-msgstr "Kohdistusviivat edessä"
+msgstr "Kohdistusavut edessä"
#. Fk9u2
#: DrawImpressCommands.xcu
@@ -9505,7 +9505,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap Guide..."
-msgstr "Kohdistusviiva..."
+msgstr "Kohdistusapu..."
#. USrbB
#: DrawImpressCommands.xcu
@@ -9515,7 +9515,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "~Insert Snap Guide..."
-msgstr "Lisää kohdistusviiva..."
+msgstr "Lisää kohdistusapu..."
#. HCd5L
#: DrawImpressCommands.xcu
@@ -10426,7 +10426,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap to Snap Guides"
-msgstr "Kohdista kohdistusviivoihin"
+msgstr "Kohdista kohdistusapuihin"
#. Fkqc6
#: DrawImpressCommands.xcu
@@ -10796,7 +10796,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Snap Guides"
-msgstr "Kohdistusviivat"
+msgstr "Kohdistusavut"
#. 3QStY
#: DrawImpressCommands.xcu
@@ -35621,7 +35621,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No Break"
-msgstr ""
+msgstr "Ei tavutusta"
#. ngTBv
#: WriterCommands.xcu
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index a242459e002..0119719888b 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-20 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/fi/>\n"
"Language: fi\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565038740.000000\n"
#. kBovX
@@ -14290,14 +14290,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14520,14 +14521,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -20490,7 +20492,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/conditionaleasydialog.ui:244
msgctxt "conditionaleasydialog|label"
msgid "Range:"
-msgstr ""
+msgstr "Alue:"
#. E8ANs
#: sc/uiconfig/scalc/ui/conditionalentry.ui:75
@@ -23241,91 +23243,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Fontti"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sisennykset ja välit"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Teksti"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstianimaatio"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Mitoitus"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Tasaus"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aasialaiset merkit"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Korostus"
@@ -23924,102 +23926,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Poista"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ei reunaa"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Kaikki reunat"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Ulkoreunat"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Paksut ulkoreunat"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Paksu alareuna"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Kaksinkertainen alareuna"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Yläreuna ja paksu alareuna"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Yläreuna ja kaksinkertainen alareuna"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Vasen reuna"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Oikea reuna"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Yläreuna"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Alareuna"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Yläviisto lävistäjä"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Alaviisto lävistäjä"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Ylä- ja alareuna"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Vasen ja oikea reuna"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24057,49 +23963,49 @@ msgid "Format Cells"
msgstr "Muotoile solut"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Luvut"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Fontti"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Tasaus"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aasialaiset merkit"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Reunat"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Tausta"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Solujen suojaus"
@@ -27657,7 +27563,7 @@ msgstr "Määrittää, että säännölliset lausekkeet ovat käytössä yksinke
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:693
msgctxt "optcalculatepage|formulaliteral"
msgid "No wildcards or regular expressions in formulas"
-msgstr "Ei jokerimerkkejä tai säännöllisiä lausekkeita kaavoissa"
+msgstr "Ei jokerimerkkejä eikä säännöllisiä lausekkeita kaavoissa"
#. BwEWx
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:702
@@ -27766,13 +27672,13 @@ msgstr "Lisää hyperlinkki solulle, ei solun tekstille."
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:118
msgctxt "optcompatibilitypage|cellLinkCB|tooltip_text"
msgid "By default, Excel allows only one hyperlink per cell. (Works only if Excel file format is used.)"
-msgstr "Oletuksena Excel sallii vain yhden hyperlinkin solua kohti. (Toimii vain, jos Excel-tiedostomuoto on käytössä.)"
+msgstr "Oletuksena Excel sallii vain yhden hyperlinkin solua kohti. (Toimii vain Excel-tiedostomuotoa käytettäessä.)"
#. 2AinC
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:123
msgctxt "extended_tip|cellLinkCB"
msgid "Calc can insert multiple hyperlinks in a cell as text fields, but multiple hyperlinks in a cell cannot be saved to Excel file formats. This option prevents inserting multiple hyperlinks in a cell when Excel files are edited, in order to be interoperable with Excel."
-msgstr "Calc voi lisätä useita hyperlinkkejä soluun tekstikenttinä, mutta useaa hyperlinkkiä solussa ei voi tallentaa Excel-tiedostomuotoihin. Tämä asetus estää usean hyperlinkin lisäämisen soluun Excel-tiedostoja muokattaessa Excel-yhteentoimivuuden takia."
+msgstr "Calc voi lisätä useita hyperlinkkejä soluun tekstikenttinä, mutta useaa hyperlinkkiä solussa ei voi tallentaa Excel-tiedostomuotoihin. Tämä asetus estää Excel-yhteentoimivuuden vuoksi usean hyperlinkin lisäämisen soluun Excel-tiedostoja muokattaessa."
#. BJuZV
#: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:152
@@ -27937,7 +27843,7 @@ msgstr "Kysy käyttäjältä"
#: sc/uiconfig/scalc/ui/optformula.ui:174
msgctxt "optformula|label10"
msgid "Optimal row height:"
-msgstr ""
+msgstr "Optimaalinen rivikorkeus:"
#. N9WbA
#: sc/uiconfig/scalc/ui/optformula.ui:196
@@ -28194,43 +28100,43 @@ msgid "Page Style"
msgstr "Sivutyyli"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Sivu"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Reunat"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Tausta"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Ylätunniste"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Alatunniste"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Taulukko"
@@ -28272,55 +28178,55 @@ msgid "Cell Style"
msgstr "Solutyyli"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Luku"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Fontti"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Tasaus"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aasialaiset merkit"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Reunat"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Tausta"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Solujen suojaus"
@@ -30268,7 +30174,7 @@ msgstr "Vasemmalle"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:348
msgctxt "extended_tip|alignlb"
msgid "Determines the direction that the cursor in the spreadsheet will move after you press the Enter key."
-msgstr "Asettaa suunnan, johon Enterin painallus siirtää kohdistimen laskentataulukossa."
+msgstr "Määrää suunnan, johon Enterin painallus siirtää kohdistinta laskentataulukossa."
#. dnDdz
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:359
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index 4c6b4cc974d..97e7780346f 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/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: 2024-06-17 15:59+0200\n"
-"PO-Revision-Date: 2024-06-12 00:48+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/fi/>\n"
"Language: fi\n"
@@ -3247,7 +3247,7 @@ msgstr "Luo muotoja ja jakaa ne tasavälein kahden piirrosobjektin välille."
#: sd/uiconfig/sdraw/ui/dlgsnap.ui:8
msgctxt "dlgsnap|SnapObjectDialog"
msgid "New Snap Guide"
-msgstr ""
+msgstr "Uusi kohdistusapu"
#. Qg8Yb
#: sd/uiconfig/sdraw/ui/dlgsnap.ui:31
@@ -3329,10 +3329,9 @@ msgstr "Tyyppi"
#. hGNY5
#: sd/uiconfig/sdraw/ui/dlgsnap.ui:340
-#, fuzzy
msgctxt "dlgsnap|extended_tip|SnapObjectDialog"
msgid "Inserts a snap point or snap line (also known as guide) that you can use to quickly align objects."
-msgstr "Lisätään kohdistuspiste tai kohdistusviiva (eli sijoitteluapu) objektien kohdistamiseksi sujuvasti."
+msgstr "Lisää kohdistuspisteen tai -viivan (eli kohdistusavun) objektien nopeaa tasaamista varten."
#. MuBBG
#: sd/uiconfig/sdraw/ui/drawchardialog.ui:8
@@ -9576,97 +9575,97 @@ msgid "_Standard"
msgstr "Vakio"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Viiva"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Alue"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Varjostus"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Fontti"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sisennykset ja välit"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teksti"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstianimaatio"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Mitoitus"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Yhdysviiva"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Tasaus"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aasialaiset merkit"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Sarkaimet"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Korostus"
diff --git a/source/fi/sfx2/messages.po b/source/fi/sfx2/messages.po
index e9db188026f..e5b4bb072b2 100644
--- a/source/fi/sfx2/messages.po
+++ b/source/fi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-24 14:55+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fi/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makrot ovat poissa käytöstä makrojen turvallisuusasetusten takia."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makrot on allekirjoitettu, mutta asiakirja (joka sisältää asiakirjatapahtumat) ei ole allekirjoitettu."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Näytä makrot"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Näytä turvallisuusasetukset"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Näytä tapahtumat"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Hienostunut harmaa"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Mehiläispesä"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Sininen kaari"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Suunnitelma"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Karkki"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Keltainen idea"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Metsälintu"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiraatio"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Valot"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Vapaus kasvaa"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Yönsininen"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Luontokuvitus"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lyijykynä"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Edistys"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Auringonlasku"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vuosikerta"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Eloisa"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ansioluettelo"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Oletus"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderni"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderni liikekirje groteskifontilla"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderni liikekirje antiikvafontilla"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Käyntikortti logolla"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Yksinkertainen"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Poista"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tyhjennä kaikki"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Salasanan pituus"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Antamasi salasana aiheuttaa yhteentoimivuusongelmia. Anna salasana, joka on lyhyempi kuin 52 tavua (byte) tai pidempi kuin 55 tavua."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-napsautus avaa hyperlinkin: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Napsauta avataksesi hyperlinkin: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Asiakirja"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Laskentataulukko"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Esitys"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Piirros"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Viimeksi käytetyt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ei viimeaikaisia merkkejä"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Palauta kaikki oletusmallit"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Palauta oletustekstiasiakirja"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Palauta oletuslaskentataulukko"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Palauta oletusesitys"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Palauta oletuspiirros"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Tuo"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Lisäosat"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Nimeä uudelleen"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Nimeä luokka uudelleen"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Uusi luokka"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-objektien tarkastelu"
diff --git a/source/fi/svtools/messages.po b/source/fi/svtools/messages.po
index 36a7ad80546..9b157d6b294 100644
--- a/source/fi/svtools/messages.po
+++ b/source/fi/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-14 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fi/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564951602.000000\n"
#. fLdeV
@@ -2388,10 +2388,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Internet-yhteyden muodostaminen kohteeseen $(ARG1) ei onnistunut."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2399,7 +2407,7 @@ msgstr ""
"Palvelimen virheilmoitus: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2409,37 +2417,37 @@ msgstr ""
"Palvelimen virheilmoitus: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "On ilmennyt yleinen internet-virhe."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Pyydettyjä Internet-tietoja ei ole käytettävissä välimuistissa eikä niitä voi siirtää, koska online-tila ei ole käytössä."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Sisällön luominen ei onnistunut."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Tiedoston nimi on liian pitkä kohdejärjestelmän tiedostojärjestelmälle."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Syöttösyntaksi on virheellinen."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2449,19 +2457,19 @@ msgstr ""
"Tallenna asiakirja %PRODUCTNAME %PRODUCTVERSION -tiedostomuodossa."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Asiakirjoja on avoinna suurin sallittu määrä. Jotta uusi asiakirja voidaan luoda tai avata, täytyy yksi tai useampia avoinna olevia asiakirjoja sulkea."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Varmistuskopion luominen ei onnistunut."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2481,43 +2489,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Virheellinen tietojen pituus."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Toiminnon toteutus ei ole mahdollista: polku sisältää nykyisen hakemiston."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Toiminnon toteutus ei ole mahdollista: laite (asema) ei ole identtinen."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Laite (asema) ei ole valmis."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Väärä tarkastussumma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Toiminnon toteutus ei ole mahdollista: objekti on kirjoitussuojattu."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2527,43 +2535,43 @@ msgstr ""
"Jakaminen on poistettava ensin käytöstä."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Tiedostomuotovirhe kohdassa $(ARG1)(rivi,sarake)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Tämän tiedostomuodon tuonti tai vienti on estetty asetuksissa. Ota yhteyttä järjestelmänvalvojaasi."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Yleinen OLE-virhe."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Toimintoa ei voi suorittaa objektin nykyisessä tilassa."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekti ei tue mitään toimintoja."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekti ei tue tätä toimintoa."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) aktivoitaessa objektia"
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index 4566275c4b2..350c7ba008a 100644
--- a/source/fi/svx/messages.po
+++ b/source/fi/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-14 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/fi/>\n"
@@ -10172,134 +10172,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ei reunoja"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Vain ulkoreuna"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ulkoreuna ja vaakaviivat"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ulkoreuna ja kaikki sisäviivat"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ulkoreuna ja pystyviivat"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Ulkoreuna muuttamatta sisäviivoja"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Vain lävistäjät"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Alaviisto lävistäjä"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Yläviisto lävistäjä"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Lävistäjät"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Kaikki neljä reunaa"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Vain vasen ja oikea reuna"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Vain ylä- ja alareuna"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Ylä- ja alareuna sekä kaikki vaakaviivat"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Vain vasen reuna"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Vain oikea reuna"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Vain yläreuna"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Vain alareuna"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Ylä- ja alareuna sekä kaikki sisäviivat"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Vasen ja oikea reuna sekä kaikki sisäviivat"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Poista suosikeista"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Puuttuva merkki"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Lisää suosikkeihin"
@@ -10308,19 +10358,19 @@ msgstr "Lisää suosikkeihin"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kuvan koon tarkistus"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Kuvassa'%NAME%' on liian vähän kuvapisteitä nykyiseen kokoon nähden (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Kuvassa'%NAME%' on liian paljon kuvapisteitä nykyiseen kokoon nähden (%DPIX% x %DPIY% DPI)"
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index 8f1010c9acd..d9d352e5078 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-14 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Tuomas Hietala <tuomas.hietala@iki.fi>\n"
"Language-Team: Finnish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fi/>\n"
"Language: fi\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Luettelo 5 jatkuu"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Ylä- ja alatunniste"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10613,41 +10613,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Taulukko"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Muotoilu"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlinkki"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Näennäiset kuvatekstit"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numerointi"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Muu"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Päivitä napsauttamalla..."
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -16468,55 +16474,55 @@ msgid "Frame"
msgstr "Kehys"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Sijainti ja koko"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Asetukset"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Rivitys"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlinkki"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Reunat"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Alue"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Palstat"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28943,43 +28949,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Fontti"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Sijainti"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aasialainen asettelu"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Korostus"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Reunat"
@@ -28991,85 +28997,85 @@ msgid "List Style"
msgstr "Luettelotyyli"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nimeä ja piilota käyttäjän määrittämiä tyylejä"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Järjestämätön"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Valitse ennalta määrätty järjestetty luettelo"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Järjestetty"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Jäsennys"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Kuva"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Muuta luettelon numeroiden tai symbolien sisennystä, välejä ja tasausta."
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Sijainti"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Suunnittele oma luettelo- tai jäsennysmuotoilusi"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Mukauta"
@@ -29081,109 +29087,109 @@ msgid "Paragraph Style"
msgstr "Kappaletyyli"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sisennykset ja välit"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Tasaus"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstin rivitys"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aasialaiset merkit"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Fontti"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Fonttitehosteet"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Sijainti"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aasialainen asettelu"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Korostus"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Sarkaimet"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Anfangit"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Alue"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Reunat"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Ehto"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Aseta kappaletyylin jäsennystaso, luettelotyyli ja rivinumerointi."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Jäsennys ja luettelo"
@@ -29195,55 +29201,55 @@ msgid "Frame Style"
msgstr "Kehystyyli"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tyyppi"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Asetukset"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Rivitys"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Alue"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Reunat"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Palstat"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29261,61 +29267,61 @@ msgid "Standard"
msgstr "Vakio"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Sivu"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Alue"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Läpinäkyvyys"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Ylätunniste"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Alatunniste"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Reunat"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Palstat"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Alaviite"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstiruudukko"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index 4ef264f3880..ce398ad6f75 100644
--- a/source/fr/cui/messages.po
+++ b/source/fr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-27 09:04+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fr/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Pour ouvrir un fichier CSV comme nouvelle feuille dans le classeur courant : Feuille ▸ Insérer une feuille à partir d'un fichier."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Vous pouvez continuer à écrire avec les attributs de formatage par défaut après avoir appliqué manuellement le gras, l'italique ou le soulignement en appuyant sur %MOD1+Maj+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/fr/helpcontent2/source/auxiliary.po b/source/fr/helpcontent2/source/auxiliary.po
index 9a8a4a1ae68..6908ab78f01 100644
--- a/source/fr/helpcontent2/source/auxiliary.po
+++ b/source/fr/helpcontent2/source/auxiliary.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:51+0200\n"
-"PO-Revision-Date: 2023-04-27 19:13+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/auxiliary/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1562257292.000000\n"
#. fEEXD
@@ -95,7 +95,7 @@ msgctxt ""
"07010501\n"
"node.text"
msgid "Example Scripts"
-msgstr ""
+msgstr "Exemples de scripts"
#. Vkt9E
#: sbasic.tree
diff --git a/source/fr/helpcontent2/source/text/sbasic/python.po b/source/fr/helpcontent2/source/text/sbasic/python.po
index 3492adfd687..2023cc6f202 100644
--- a/source/fr/helpcontent2/source/text/sbasic/python.po
+++ b/source/fr/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:52+0200\n"
-"PO-Revision-Date: 2024-03-01 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563968531.000000\n"
#. naSFZ
@@ -1247,7 +1247,7 @@ msgctxt ""
"hd_id601717774441961\n"
"help.text"
msgid "Event Handling, Listeners"
-msgstr ""
+msgstr "Gestion des événements, écouteurs"
#. BLZ9N
#: python_examples.xhp
@@ -1256,7 +1256,7 @@ msgctxt ""
"hd_id651717774529891\n"
"help.text"
msgid "Calc examples"
-msgstr ""
+msgstr "Exemples Calc"
#. xkeov
#: python_handler.xhp
@@ -2509,7 +2509,7 @@ msgctxt ""
"N0530a\n"
"help.text"
msgid "''' Module name: Platform '''"
-msgstr ""
+msgstr "''' Nom du module : Plateforme '''"
#. tTyE5
#: python_platform.xhp
@@ -2536,7 +2536,7 @@ msgctxt ""
"N0511\n"
"help.text"
msgid "ComputerName environment variable is solely available for Windows. Basic calls to Python macros help overcome %PRODUCTNAME Basic limitations."
-msgstr ""
+msgstr "La variable d'environnement ComputerName est uniquement disponible pour Windows. Les appels de base aux macros Python aident à surmonter les limitations de %PRODUCTNAME Basic."
#. jtA2N
#: python_platform.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index 33e2238b7e5..c6e13b5614e 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-02 09:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/fr/>\n"
@@ -611,14 +611,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Rétablir au parent"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Les valeurs de l'onglet actuel sont définies à celles trouvées dans l'onglet correspondant du style spécifié dans \"Hériter de\" dans l'Organiseur. Dans tous les cas, également lorsque \"Hériter de\" est \"- Aucun -\", les valeurs d'onglet actuelles spécifiées dans \"Contient\" sont supprimées."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13742,68 +13742,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choisissez l'onglet <emph>Format - Cellules - Arrière-plan</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Choisissez l'onglet <menuitem>Format - Style de page - Organiser</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Choisissez l'onglet <menuitem>Styles - Éditer le style - Organiser</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Choisissez <menuitem>Styles - Gérer les styles</menuitem> - ouvrez le menu contextuel d'une entrée et choisissez l'onglet <menuitem>Nouveau/Éditer le style - Organiser</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Choisissez l'onglet <menuitem>Format - Style de page - Organiser </menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Choisissez <menuitem>Styles - Gérer les styles</menuitem> - ouvrez le menu contextuel d'une entrée et choisissez l'onglet <menuitem>Nouveau/Éditer le style - Organiser</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Choisissez l'onglet <menuitem>Format - Styles - Éditer le style - Organiser</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Choisissez <menuitem>Format - Styles - Gérer les styles</menuitem> - ouvrez le menu contextuel d'une entrée et choisissez l'onglet <menuitem>Nouveau/Éditer le style - Organiser</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13814,14 +13814,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Choisissez l'onglet <menuitem>Diapo - Propriétés -Page</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Choisissez <menuitem>Affichage - Styles</menuitem><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Commande+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - ouvrez le menu contextuel d'une entrée et choisissez l'onglet <menuitem>Nouveau/Éditer le style - Organiser</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index 1e7adf4f845..86e224c9427 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-15 20:01+0000\n"
"Last-Translator: Ady <adylo811517@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/fr/>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Rétablit la taille d'origine de l'image sélectionnée.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Gestion"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>Organisation;styles</bookmark_value><bookmark_value>Styles;organisation</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Gestion</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/help.po b/source/fr/helpcontent2/source/text/shared/help.po
index 92073e143d9..5e9e0ffa6c7 100644
--- a/source/fr/helpcontent2/source/text/shared/help.po
+++ b/source/fr/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-23 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/fr/>\n"
"Language: fr\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1559140855.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Livres LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index 40343782491..3b17caab3f5 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 19:26+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/fr/>\n"
@@ -935,13 +935,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index f365959ad22..beba43579e9 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
-"PO-Revision-Date: 2024-04-16 20:54+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/fr/>\n"
"Language: fr\n"
@@ -771,7 +771,7 @@ msgctxt ""
"par_id3149106\n"
"help.text"
msgid "To jump to the next or previous item in a document, use the <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigate By</emph></link> list to select the item category, and then click the <emph>Previous</emph> or <emph>Next</emph> arrows."
-msgstr ""
+msgstr "Pour passer à l'élément suivant ou précédent dans un document, utilisez la liste <link href=\"text/swriter/01/02110100.xhp\"><emph>Naviguer par</emph></link> pour sélectionner la catégorie d'élément, puis cliquez sur les flèches <emph>Précédent</emph> ou <emph>Suivant</emph>."
#. S4kDa
#: 02110000.xhp
@@ -1113,7 +1113,7 @@ msgctxt ""
"par_id3153011\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigation</emph></link> icon, in the <emph>Navigation</emph> window click the <emph>Reminder</emph> icon, and then click the <emph>Previous</emph> or <emph>Next</emph> button.</ahelp> Click here to set a reminder at the current cursor position. You can define up to five reminders. To jump to a reminder, click the <link href=\"text/swriter/01/02110100.xhp\">Navigate By</link> list, select <menuitem>Reminder</menuitem>, and then click <emph>Previous</emph> or <emph>Next</emph>."
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Cliquez ici pour définir un pense-bête à la position actuelle du curseur. Vous pouvez définir jusqu'à cinq pense-bêtes. Pour accéder à un pense-bête, cliquez sur l'icône <link href=\"text/swriter/01/02110100.xhp\"><emph>Navigation</emph></link>, dans la fenêtre <emph>Navigation</emph>, cliquez sur l'icône <emph>Pense-bête</emph>, puis cliquez sur le bouton <emph>Précédent</emph> ou <emph>Suivant</emph>.</ahelp> Cliquez ici pour définir un pense-bête à la position actuelle du curseur. Vous pouvez définir jusqu'à cinq pense-bêtes. Pour accéder à un pense-bête, cliquez sur la liste <link href=\"text/swriter/01/02110100.xhp\">Naviguer par</link>, sélectionnez <menuitem>Pense-bête</menuitem>, puis cliquez sur <emph>Précédent</emph> ou <emph>Suivant</emph>."
#. j2jDL
#: 02110000.xhp
@@ -2265,7 +2265,7 @@ msgctxt ""
"hd_id3147745\n"
"help.text"
msgid "Navigate By"
-msgstr ""
+msgstr "Naviguer par"
#. 9j8Yd
#: 02110100.xhp
@@ -2274,7 +2274,7 @@ msgctxt ""
"par_id3149844\n"
"help.text"
msgid "<ahelp hid=\"HID_SCRL_NAVI\">The <emph>Navigate By</emph> selection box allows choosing a category to navigate the document by, including pages, headings, sections, objects, fields, comments, latest search results and recency of cursor position.</ahelp> You can then use the <emph>Previous</emph> and <emph>Next</emph> arrow icons to position the text cursor in the document on the previous or next target."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SCRL_NAVI\">La boîte de sélection <emph>Naviguer par</emph> permet de choisir une catégorie pour parcourir le document, y compris les pages, les titres, les sections, les objets, les champs, les commentaires, les derniers résultats de recherche et la récente position du curseur.</ahelp> Vous pouvez ensuite utiliser les icônes fléchées <emph>Précédent</emph> et <emph>Suivant</emph> pour positionner le curseur de texte dans le document sur la cible précédente ou suivante."
#. CANgP
#: 02110100.xhp
@@ -2283,7 +2283,7 @@ msgctxt ""
"hd_id3150031\n"
"help.text"
msgid "Working With Navigate By"
-msgstr ""
+msgstr "Travailler avec Naviguer par"
#. kZEUc
#: 02110100.xhp
@@ -2292,7 +2292,7 @@ msgctxt ""
"par_id3155076\n"
"help.text"
msgid "By default, as long as you have not selected any other category, the Page category is selected, and the arrows are replaced by a number field that can be used to go to the previous or the next page, or jump to a specific one."
-msgstr ""
+msgstr "Par défaut, tant que vous n'avez sélectionné aucune autre catégorie, la catégorie Page est sélectionnée et les flèches sont remplacées par un champ numérique qui peut être utilisé pour passer à la page précédente ou suivante, ou passer à une page spécifique."
#. EZoBG
#: 02110100.xhp
@@ -2301,7 +2301,7 @@ msgctxt ""
"par_id3153141\n"
"help.text"
msgid "<ahelp hid=\"HID_NAVI_VS\">Once you select another category, you can use the \"Previous\" or \"Next\" arrow buttons. The labels of these buttons indicate the type of object you have selected. The text cursor is then placed on whichever object you have selected.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_NAVI_VS\">Une fois que vous avez sélectionné une autre catégorie, vous pouvez utiliser les boutons fléchés \"Précédent\" ou \"Suivant\". Les étiquettes de ces boutons indiquent le type d'objet que vous avez sélectionné. Le curseur de texte est ensuite placé sur l'objet que vous avez sélectionné.</ahelp>"
#. eabbc
#: 02110100.xhp
@@ -2310,7 +2310,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose <link href=\"text/shared/01/06140000.xhp\"><emph>Tools - Customize</emph></link>. The various tables for adapting <link href=\"text/shared/01/06140100.xhp\">menus</link>, <link href=\"text/shared/01/06140200.xhp\">keyboard input</link> or toolbars contain various functions for navigation within the document under the \"Navigate\" category. For example, you can add buttons to a toolbar to jump to the index tags in the document with the \"Go to Next/Previous Index Entry\" commands."
-msgstr ""
+msgstr "Vous pouvez configurer $[officename] selon vos préférences spécifiques pour naviguer dans un document. Pour ce faire, choisissez <link href=\"text/shared/01/06140000.xhp\"><emph>Outils - Personnaliser</emph></link>. Les différents tableaux d'adaptation des <link href=\"text/shared/01/06140100.xhp\">menus</link>, des <link href=\"text/shared/01/06140200.xhp\">saisie clavier</link> ou les barres d'outils contiennent diverses fonctions de navigation dans le document sous la catégorie \"Naviguer\". Par exemple, vous pouvez ajouter des boutons à une barre d'outils pour accéder aux balises d'index du document avec les commandes « Aller à l'entrée d'index suivante/précédente »."
#. ZPfz6
#: 02110100.xhp
@@ -2319,7 +2319,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "The available categories largely correspond to those in the <link href=\"text/swriter/01/02110000.xhp\">Navigator</link> selection box. However, you can select other jump destinations that are not classic Navigator categories: for example, Reminders, Repeat Search or Recency."
-msgstr ""
+msgstr "Les catégories disponibles correspondent en grande partie à celles de la zone de sélection <link href=\"text/swriter/01/02110000.xhp\">Navigateur</link>. Cependant, vous pouvez sélectionner d'autres destinations de saut qui ne sont pas des catégories classiques du Navigateur : par exemple, Pense-bête, Répéter la recherche ou Récence."
#. BN4E8
#: 02110100.xhp
@@ -2328,7 +2328,7 @@ msgctxt ""
"par_id561713406417133\n"
"help.text"
msgid "Select from one of the following options: Bookmarks, Comments, Controls, Drawing objects, Fields by type, Fields, Footnotes, Frames, Headings, Images, Indexes, OLE objects, Page, Recency, Reminder, Repeat search, Sections, Selection, Table formula, Tables, Wrong table formula."
-msgstr ""
+msgstr "Sélectionnez l'une des options suivantes : Signets, Commentaires, Champs, Objets de dessin, Champs par type, Champs, Notes de bas de page, Cadres, En-têtes, Images, Index, Objets OLE, Page, Récence, Pense-bête, Répéter la recherche, Sections, Sélection, Formule de tableau, Tableaux, Mauvaise formule de tableau."
#. JW7rQ
#: 02110100.xhp
@@ -2337,7 +2337,7 @@ msgctxt ""
"hd_id1001713405229169\n"
"help.text"
msgid "Footnotes"
-msgstr ""
+msgstr "Notes de bas de page"
#. NAweY
#: 02110100.xhp
@@ -2346,7 +2346,7 @@ msgctxt ""
"par_id541713405238672\n"
"help.text"
msgid "Select the <emph>Footnotes</emph> category to jump between footnotes and endnotes. This can be used in conjunction with the <emph>Anchor ↔ Text</emph> button in the Navigator, to quickly jump between the text of the footnote/endnote and its anchor in the body."
-msgstr ""
+msgstr "Sélectionnez la catégorie <emph>Notes de bas de page</emph> pour passer des notes de bas de page aux notes de fin. Ceci peut être utilisé conjointement avec le bouton <emph>Ancre ↔ Texte</emph> dans le navigateur, pour passer rapidement du texte de la note de bas de page/note de fin à son ancre dans le corps."
#. MkXfV
#: 02110100.xhp
@@ -2355,7 +2355,7 @@ msgctxt ""
"hd_id801713406561353\n"
"help.text"
msgid "Recency"
-msgstr ""
+msgstr "Récence"
#. UCx3F
#: 02110100.xhp
@@ -2364,7 +2364,7 @@ msgctxt ""
"par_id141713406574059\n"
"help.text"
msgid "When selecting the <emph>Recency</emph> category, the <emph>Go back</emph> and <emph>Go forward</emph> buttons can be used to jump to recent cursor positions in the document."
-msgstr ""
+msgstr "Lors de la sélection de la catégorie <emph>Récence</emph>, les boutons <emph>Retourner</emph> et <emph>Avancer</emph> peuvent être utilisés pour accéder aux positions récentes du curseur dans le document."
#. mCWvP
#: 02110100.xhp
@@ -2373,7 +2373,7 @@ msgctxt ""
"hd_id701713405928808\n"
"help.text"
msgid "Reminders"
-msgstr ""
+msgstr "Pense-bête"
#. gYug3
#: 02110100.xhp
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id871713405938067\n"
"help.text"
msgid "Up to 5 <emph>Reminders</emph> (which are not saved when the document is closed) can be set at various locations in the document. Set a reminder with the <emph>Set Reminders</emph> button in the Navigator."
-msgstr ""
+msgstr "Jusqu'à 5 <emph>Pense-bêtes</emph> (qui ne sont pas enregistrés lorsque le document est fermé) peuvent être définis à différents endroits du document. Définissez un prense-bête avec le bouton <emph>Définir des pense-bêtes</emph> dans le navigateur."
#. gh75t
#: 02110100.xhp
@@ -2409,7 +2409,7 @@ msgctxt ""
"par_id3155361\n"
"help.text"
msgid "With the <menuitem>Repeat search</menuitem> category, you can repeat a search you started with the <emph>Search and Replace</emph> dialog or the <emph>Find</emph> toolbar. If you now click one of the arrows, the search will be resumed for the term last searched."
-msgstr ""
+msgstr "Avec la catégorie <menuitem>Répéter la recherche</menuitem>, vous pouvez répéter une recherche que vous avez commencée avec la boîte de dialogue <emph>Rechercher et remplacer</emph> ou la barre d'outils <emph>Rechercher</emph>. Si vous cliquez maintenant sur l'une des flèches, la recherche reprendra pour le dernier terme recherché."
#. fkAFF
#: 02110100.xhp
@@ -2418,7 +2418,7 @@ msgctxt ""
"hd_id761713525529070\n"
"help.text"
msgid "Selection"
-msgstr ""
+msgstr "Sélection"
#. gfCQE
#: 02110100.xhp
@@ -2427,7 +2427,7 @@ msgctxt ""
"par_id961713525563573\n"
"help.text"
msgid "If a multiple selection is active (for example when using <keycode>Ctrl + click and drag</keycode> or the Adding <link href=\"text/shared/02/20050000.xhp\">selection mode</link>, or after a Find All search), <emph>Selection</emph> allows jumping from one to the other."
-msgstr ""
+msgstr "Si une sélection multiple est active (par exemple lors de l'utilisation de <keycode>Ctrl + clic et glisser</keycode> ou de l'ajout du <link href=\"text/shared/02/20050000.xhp\">mode de sélection</link>, ou après une recherche Tout rechercher), la <emph>Sélection</emph> permet de passer de l'un à l'autre."
#. UHMam
#: 02110100.xhp
@@ -2436,7 +2436,7 @@ msgctxt ""
"hd_id731713403460395\n"
"help.text"
msgid "Table Formulas"
-msgstr ""
+msgstr "Formules de tableau"
#. CCSab
#: 02110100.xhp
@@ -2445,7 +2445,7 @@ msgctxt ""
"par_id3148783\n"
"help.text"
msgid "For table formulas, you can either jump to all table formulas located within your document with <emph>Table formula</emph> or only to the incorrect ones with <emph>Wrong table formula</emph>. For incorrect formulas, you jump only to formulas that have resulted in errors. The program skips over formulas with resulting errors (those that reference incorrect formulas)."
-msgstr ""
+msgstr "Pour les formules de tableau, vous pouvez soit accéder à toutes les formules de tableau situées dans votre document avec <emph>Formule de tableau</emph>, soit uniquement aux formules incorrectes avec <emph>Formule de tableau erronée</emph>. Pour les formules incorrectes, vous accédez uniquement aux formules qui ont entraîné des erreurs. Le programme ignore les formules entraînant des erreurs (celles qui font référence à des formules incorrectes)."
#. hEEu6
#: 02120000.xhp
@@ -15225,7 +15225,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Inserts a table into the document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">Insère un tableau dans le document. Vous pouvez également cliquer sur la flèche, faire glisser pour sélectionner le nombre de lignes et de colonnes à inclure dans le tableau, puis cliquer dans la dernière cellule.</ahelp></variable>"
#. m7tXV
#: 04150000.xhp
@@ -16260,7 +16260,7 @@ msgctxt ""
"par_id3154648\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Hyphenate words written entirely in capital letters, such as initialisms.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoCaps\">Césure les mots écrits entièrement en majuscules, tels que les initiales.</ahelp>"
#. 5FoUE
#: 05030200.xhp
@@ -16269,7 +16269,7 @@ msgctxt ""
"hd_id3153926\n"
"help.text"
msgid "Hyphenate last word"
-msgstr ""
+msgstr "Couper le dernier mot"
#. 9shSg
#: 05030200.xhp
@@ -16278,7 +16278,7 @@ msgctxt ""
"par_id3154655\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Hyphenate the last word of paragraphs. Disabling this feature prevents the creation of almost empty lines containing only half a word.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/textflowpage/checkNoLastWord\">Couper le dernier mot des paragraphes. La désactivation de cette fonctionnalité évite la création de lignes presque vides contenant seulement un demi-mot.</ahelp>"
#. pdCQw
#: 05030200.xhp
@@ -16287,7 +16287,7 @@ msgctxt ""
"hd_id3153667\n"
"help.text"
msgid "Hyphenation across"
-msgstr ""
+msgstr "Coupure des mots à travers"
#. puChR
#: 05030200.xhp
@@ -16296,7 +16296,7 @@ msgctxt ""
"par_id3154669\n"
"help.text"
msgid "Control hyphenation in the last line of a column, page or spread, and last full line of a paragraph, according to certain typographical rules to improve readability."
-msgstr ""
+msgstr "Contrôlez la coupure des mots dans la dernière ligne d'une colonne, d'une page ou d'une planche, et dans la dernière ligne complète d'un paragraphe, selon certaines règles typographiques pour améliorer la lisibilité."
#. YP4Kd
#: 05030200.xhp
@@ -16305,7 +16305,7 @@ msgctxt ""
"hd_id3158928\n"
"help.text"
msgid "Last full line of paragraph"
-msgstr ""
+msgstr "Dernière ligne complète du paragraphe"
#. ytHzx
#: 05030200.xhp
@@ -23363,14 +23363,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "La mise en forme directe remplace toute mise en forme fournie par un style de caractère. Pour supprimer le formatage direct d'une sélection, utilisez <menuitem>Format - Effacer le formatage direct</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+ M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Utilisez la section <emph>Contient</emph> de l’Organiseur pour voir les propriétés du style de caractère."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
@@ -27978,7 +27978,7 @@ msgctxt ""
"par_id221705510181740\n"
"help.text"
msgid "Character properties are not attributes of paragraph direct formatting properties, therefore character styles and character direct formatting does not affect paragraph spotlighting."
-msgstr ""
+msgstr "Les propriétés de caractères ne sont pas des attributs des propriétés de mise en forme directe des paragraphes. Par conséquent, les styles de caractères et la mise en forme directe des caractères n'affectent pas la mise en évidence des paragraphes."
#. 4FHSb
#: SpotlightParaStyles.xhp
@@ -27987,7 +27987,7 @@ msgctxt ""
"par_id791705511272699\n"
"help.text"
msgid "Use the <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Spotlight Direct Character Formatting</link> command to display character direct formatting."
-msgstr ""
+msgstr "Utilisez la commande <link href=\"text/swriter/01/spotlight_chars_df.xhp\">Mettre en lumière le formatage direct des caractères</link> pour afficher le formatage direct des caractères."
#. BEqCH
#: TableAutoFitMenu.xhp
@@ -29175,7 +29175,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the New dialog to select a template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ouvre la nouvelle boîte de dialogue pour sélectionner un modèle</ahelp>"
#. gX5EY
#: mailmerge01.xhp
@@ -32361,7 +32361,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Paragraph Signature"
-msgstr ""
+msgstr "Signature de paragraphe"
#. gRHvt
#: paragraph_signature.xhp
@@ -32370,7 +32370,7 @@ msgctxt ""
"bm_id121713380761462\n"
"help.text"
msgid "<bookmark_value>paragraph signature</bookmark_value> <bookmark_value>insert;paragraph signature</bookmark_value> <bookmark_value>paragraph signature;inserting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Signature de paragraphe</bookmark_value><bookmark_value>Insérer;signature de paragraphe</bookmark_value><bookmark_value>Signature de paragraphe;insertion</bookmark_value>"
#. qctbD
#: paragraph_signature.xhp
@@ -32379,7 +32379,7 @@ msgctxt ""
"hd_id881713200146819\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Paragraph Signature</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/paragraph_signature.xhp\">Signature de paragraphe</link></variable>"
#. tkAgS
#: paragraph_signature.xhp
@@ -32388,7 +32388,7 @@ msgctxt ""
"par_id921713200146822\n"
"help.text"
msgid "Adds a digital signature to the end of any paragraph. You must have a digital certificate to sign a paragraph."
-msgstr ""
+msgstr "Ajoute une signature numérique à la fin de n'importe quel paragraphe. Vous devez disposer d'un certificat numérique pour signer un paragraphe."
#. 7ECor
#: paragraph_signature.xhp
@@ -32397,7 +32397,7 @@ msgctxt ""
"par_id131713363687715\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Choisissez l'onglet <menuitem>Insérer - Champ - Autres champs - Document</menuitem>, choisissez <menuitem>Signature de paragraphe</menuitem> dans la zone <menuitem>Type</menuitem>, cliquez sur <menuitem>Insérer</menuitem>."
#. zNy5w
#: paragraph_signature.xhp
@@ -32406,7 +32406,7 @@ msgctxt ""
"par_id11713367261401\n"
"help.text"
msgid "Choose <menuitem>Insert - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Choisissez l'onglet <menuitem>Insérer - Champ - Autres champs - Document</menuitem>, choisissez <menuitem>Signature de paragraphe</menuitem> dans la zone <menuitem>Type</menuitem>, cliquez sur <menuitem>Insérer</menuitem>."
#. 7HoLm
#: paragraph_signature.xhp
@@ -32415,7 +32415,7 @@ msgctxt ""
"par_id271713381238721\n"
"help.text"
msgid "Choose <menuitem>Home - Field - More Fields - Document</menuitem> tab, choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "Choisissez l'onglet <menuitem>Accueil - Champ - Autres champs - Document</menuitem>, choisissez <menuitem>Signature de paragraphe</menuitem> dans la zone <menuitem>Type</menuitem>, cliquez sur <menuitem>Insérer</menuitem>."
#. dwYB5
#: paragraph_signature.xhp
@@ -32424,7 +32424,7 @@ msgctxt ""
"par_id81713381120150\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + F2</keycode> and choose <menuitem>Paragraph Signature</menuitem> in the <menuitem>Type</menuitem> box, click <menuitem>Insert</menuitem>."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+F2</keycode> et choisissez <menuitem>Signature de paragraphe</menuitem> dans la case <menuitem>Type</menuitem>, cliquez sur <menuitem>Insérer</menuitem>."
#. hzye6
#: paragraph_signature.xhp
@@ -32433,7 +32433,7 @@ msgctxt ""
"par_id781713200328847\n"
"help.text"
msgid "A paragraph signature includes meta-data for the user who created the signature and the date the signature was created. Either <emph>Valid</emph> or <emph>Invalid</emph> is displayed as text at the end of a paragraph signature. By default, it displays <emph>Valid</emph>. If the paragraph is modified in any way after the paragraph signature is added, the signature changes to <emph>Invalid</emph>."
-msgstr ""
+msgstr "Une signature de paragraphe comprend des métadonnées sur l'utilisateur qui a créé la signature et la date de création de la signature. Soit <emph>Valide</emph> soit <emph>Invalide</emph> est affiché sous forme de texte à la fin d'une signature de paragraphe. Par défaut, il affiche <emph>Valide</emph>. Si le paragraphe est modifié de quelque manière que ce soit après l'ajout de la signature du paragraphe, la signature devient <emph>Invalide</emph>."
#. M8sFC
#: paragraph_signature.xhp
@@ -32442,7 +32442,7 @@ msgctxt ""
"par_id11713381369787\n"
"help.text"
msgid "Upon saving a document, any <emph>Invalid</emph> paragraph signatures are automatically deleted."
-msgstr ""
+msgstr "Lors de l'enregistrement d'un document, toutes les signatures de paragraphe <emph>invalides</emph> sont automatiquement supprimées."
#. YuhXV
#: paragraph_signature.xhp
@@ -32451,7 +32451,7 @@ msgctxt ""
"par_id721713200319243\n"
"help.text"
msgid "A paragraph signature will indicate whether or not a particular paragraph has been modified at any time after the signature was inserted. Multiple paragraph signatures can be added, and each signature is independent from each other."
-msgstr ""
+msgstr "Une signature de paragraphe indiquera si un paragraphe particulier a été modifié ou non à tout moment après l'insertion de la signature. Plusieurs signatures de paragraphe peuvent être ajoutées et chaque signature est indépendante les unes des autres."
#. pY7M5
#: paragraph_signature.xhp
@@ -32460,7 +32460,7 @@ msgctxt ""
"hd_id351713200369156\n"
"help.text"
msgid "To Insert a Paragraph Signature"
-msgstr ""
+msgstr "Pour insérer une signature de paragraphe"
#. QooWx
#: paragraph_signature.xhp
@@ -32469,7 +32469,7 @@ msgctxt ""
"par_id271713363489589\n"
"help.text"
msgid "After navigating to Paragraph Signature in the More Fields dialog, click Insert to open the Select Certificate dialog."
-msgstr ""
+msgstr "Après avoir accédé à Signature de paragraphe dans la boîte de dialogue Autres champs, cliquez sur Insérer pour ouvrir la boîte de dialogue Sélectionner un certificat."
#. AnEqV
#: paragraph_signature.xhp
@@ -32478,7 +32478,7 @@ msgctxt ""
"par_id81713200406731\n"
"help.text"
msgid "A paragraph signature will always be inserted at the end of the currently selected paragraph. If the text cursor is not currently located within a paragraph of text, the Select Certificate dialog will not open."
-msgstr ""
+msgstr "Une signature de paragraphe sera toujours insérée à la fin du paragraphe actuellement sélectionné. Si le curseur de texte n'est pas actuellement situé dans un paragraphe de texte, la boîte de dialogue Sélectionner un certificat ne s'ouvrira pas."
#. SnJga
#: paragraph_signature.xhp
@@ -32487,7 +32487,7 @@ msgctxt ""
"par_id471713368898713\n"
"help.text"
msgid "The Select Certificate dialog lists any of your digital certificates that are available for use. Choose the desired certificate and select <emph>Sign</emph> to insert a paragraph signature using the chosen digital certificate."
-msgstr ""
+msgstr "La boîte de dialogue Sélectionner un certificat répertorie tous vos certificats numériques disponibles pour utilisation. Choisissez le certificat souhaité et sélectionnez <emph>Signer</emph> pour insérer une signature de paragraphe en utilisant le certificat numérique choisi."
#. UXCCL
#: paragraph_signature.xhp
@@ -32496,7 +32496,7 @@ msgctxt ""
"par_id581713367684220\n"
"help.text"
msgid "You must have a digital certificate in order to begin <link href=\"text/shared/guide/digitalsign_send.xhp\">Applying Digital Signatures</link>."
-msgstr ""
+msgstr "Vous devez disposer d'un certificat numérique pour commencer l'<link href=\"text/shared/guide/digitalsign_send.xhp\">Application de signatures numériques</link>."
#. o5ZPq
#: protectdocument.xhp
@@ -32703,7 +32703,7 @@ msgctxt ""
"bm_id401688481259265\n"
"help.text"
msgid "<bookmark_value>characters direct formatting;spotlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Formatage direct des caractères;mettre en lumière</bookmark_value>"
#. MF8kD
#: spotlight_chars_df.xhp
@@ -32712,7 +32712,7 @@ msgctxt ""
"hd_id141692649960795\n"
"help.text"
msgid "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_chars_df.xhp\">Character Direct Formatting</link></variable>"
-msgstr ""
+msgstr "<variable id=\"h1\"><link href=\"text/swriter/01/spotlight_chars_df.xhp\">Formatage direct des caractères</link></variable>"
#. jcTBb
#: spotlight_chars_df.xhp
diff --git a/source/fr/helpcontent2/source/text/swriter/guide.po b/source/fr/helpcontent2/source/text/swriter/guide.po
index 34cc1516d0e..30e89bb1b3e 100644
--- a/source/fr/helpcontent2/source/text/swriter/guide.po
+++ b/source/fr/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 06:32+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562257671.000000\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Dans la liste des styles de page, cliquez avec le bouton droit de la souris sur \"Page gauche\" et choisissez <emph>Modifier</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Cliquez sur l'onglet <emph>Gérer</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7091,14 +7091,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Vous avez la possibilité de ne pas utiliser les mêmes en-têtes et pieds de page sur toutes les pages du document, à condition toutefois que les pages soient formatées avec des styles de page différents. Vous pouvez choisir l'un des styles de page prédéfinis disponibles dans $[officename] (tels que <emph>Première page</emph>, <emph>Page de gauche</emph> et <emph>Page droite</emph>) ou créer un style de page personnalisé."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Vous pouvez aussi utiliser la mise en page en vis à vis si vous souhaitez ajouter un en-tête à un style de page qui a des marges de page internes et externes différentes. Pour appliquer cette option à un style de page, choisissez <item type=\"menuitem\">Format - Style de page</item>, cliquez sur l'onglet <item type=\"menuitem\">Page</item> et dans la zone <item type=\"menuitem\">Mise en page</item>, choisissez \"Vis à vis\" dans le champ <item type=\"menuitem\">Mise en page</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7136,32 +7136,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Cliquez avec le bouton droit de la souris sur \"Page droite\" dans la liste des styles de page et choisissez ensuite <emph>Modifier</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Dans la boîte de dialogue <item type=\"menuitem\">Styles de page</item>, cliquez sur l'onglet <item type=\"menuitem\">En-tête</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Sélectionnez <item type=\"menuitem\">Activer l'en-tête</item> et cliquez sur l'onglet <item type=\"menuitem\">Gestionnaire</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Dans le champ <item type=\"menuitem\">Style de suite</item>, sélectionnez \"Page de gauche\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7181,32 +7181,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Dans la fenêtre <emph>Styles</emph>, cliquez avec le bouton droit de la souris sur \"Page de gauche\" dans la liste des styles de page et choisissez <emph>Modifier</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Dans la boîte de dialogue <item type=\"menuitem\">Styles de page</item>, cliquez sur l'onglet <item type=\"menuitem\">En-tête</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Sélectionnez <item type=\"menuitem\">Activer l'en-tête</item> et cliquez sur l'onglet <item type=\"menuitem\">Gestionnaire</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Dans le champ <item type=\"menuitem\">Style de suite</item>, sélectionnez \"Page de droite\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11429,14 +11429,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Dans la liste des styles de page, cliquez avec le bouton droit de la souris sur un élément, puis choisissez <emph>Nouveau</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Dans l'onglet <emph>Gérer</emph>, saisissez un nom pour le style de page dans la zone <emph>Nom</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11582,14 +11582,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Sélectionnez <emph>Saut de page</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Dans le champ <item type=\"menuitem\">Style</item>, sélectionnez un style de page qui utilise l'arrière-plan de page."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11861,14 +11861,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Un <emph>saut de page automatique</emph> apparaît à la fin d'une page lorsque le style de page possède un \"style suivant\" différent."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Par exemple, le style de page « Première page » a « Style de page par défaut » comme style suivant. Pour voir cela, appuyez sur <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commande+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> pour ouvrir la fenêtre <menuitem>Styles</menuitem>, cliquez sur l'icône <menuitem>Styles de page</menuitem>, cliquez avec le bouton droit sur l'entrée \"Première page\". Choisissez <menuitem>Modifier le style</menuitem> dans le menu contextuel. Sur l'onglet <menuitem>Gestionnaire</menuitem>, vous pouvez voir le « Style suivant »."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12185,14 +12185,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Faites un clic avec le bouton droit sur le style de page et choisissez <emph>Nouveau</emph>. Le nouveau style de page à initialement toutes les propriétés du style de page sélectionné."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Dans l'onglet <emph>Gérer</emph>, saisissez un nom pour le style de page (Mon paysage, par exemple) dans la zone <emph>Nom</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12329,14 +12329,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Styles de page d'une page"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Un style de page peut être défini pour une seule page. Le style \"Première page\" en est un exemple. Vous paramétrez cette propriété en définissant un autre style de page comme \"style suivant\" dans l'onglet <menuitem>Format - Page - Gérer</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12365,14 +12365,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Plage de style de page définie manuellement"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Le style de page \"Standard\" ne définit pas un \"style suivant\" dans l'onglet <menuitem>Format - Page - Gérer</menuitem>. Le paramétrage du \"style suivant\" est le style de page \"Standard\". Tous les styles de page qui sont suivis par les mêmes styles de page peuvent s'étendre sur plusieurs pages. Les bordures inférieures et supérieures de la plage du style de page sont définies par des \"sauts de page avec style\". Toutes les pages entre deux \"sauts de page avec style\" utilisent le même style de page."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Dans la liste des styles de page, cliquez avec le bouton droit de la souris sur un élément, puis choisissez <emph>Nouveau</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Dans l'onglet <emph>Gérer</emph>, saisissez un nom dans la zone <emph>Nom</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 7d9a7e15bb1..75689ba471c 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-27 01:45+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/fr/>\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23228,91 +23230,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Ligne"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Arrière-plan"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombrage"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparence"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Police"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effets de caractère"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Retraits et espacement"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Texte"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animation de texte"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Cotation"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alignement"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typographie asiatique"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulations"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Mise en évidence"
@@ -23911,102 +23913,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Supprimer"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Aucune bordure"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Toutes les bordures"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordures externes"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Bordure de zone épaisse"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Bordure basse épaisse"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Bordure basse double"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Bordures haute et basse épaisse"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Bordures haute et basse double"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Bordure gauche"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Bordure droite"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Bordure haute"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bordure basse"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Bordure diagonale supérieure"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Bordure diagonale inférieure"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bordures haute et basse"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bordures gauche et droite"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24044,49 +23950,49 @@ msgid "Format Cells"
msgstr "Formatage des cellules"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Nombres"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Police"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Effets de caractère"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alignement"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Typographie asiatique"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordures"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Arrière-plan"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protection de cellule"
@@ -28175,43 +28081,43 @@ msgid "Page Style"
msgstr "Style de page"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Page"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordures"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Arrière-plan"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "En-tête"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Pied de page"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Feuille"
@@ -28253,55 +28159,55 @@ msgid "Cell Style"
msgstr "Style de cellule"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Nombres"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Police"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Effets de caractère"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alignement"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typographie asiatique"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordures"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Arrière-plan"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protection de cellule"
diff --git a/source/fr/sd/messages.po b/source/fr/sd/messages.po
index 19bdf5117ed..011ec07e31e 100644
--- a/source/fr/sd/messages.po
+++ b/source/fr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-19 01:45+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/fr/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Ligne"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Remplissage"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombrage"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparence"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Police"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effets de caractère"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Retraits et espacement"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Texte"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animation de texte"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Cotation"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connecteur"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alignement"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Typographie asiatique"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulations"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Mise en évidence"
diff --git a/source/fr/sfx2/messages.po b/source/fr/sfx2/messages.po
index 4716696ceec..9a5b7e2f493 100644
--- a/source/fr/sfx2/messages.po
+++ b/source/fr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-14 16:42+0000\n"
"Last-Translator: Stéphane Guillou <stephane.guillou@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fr/>\n"
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Les macros sont désactivées en raison des paramètres de sécurité des macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Les macros sont signées, mais le document (contenant les événements liés au document) n'est pas signé."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Afficher les macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Afficher les options de sécurité"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Afficher les événements"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris élégant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ruche"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Courbe bleue"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plans bleus"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Candy"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idée jaune"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Oiseau de forêt"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Fraîcheur"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiration"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lumières"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Cultivons la liberté"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Bleu nuit"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Illustration naturelle"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Crayon"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progression"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Crépuscule"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Millésime"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Par défaut"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Lettre commerciale moderne sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Lettre commerciale moderne serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Carte de visite avec logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Chinois simplifié normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japonais normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Supprimer"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tout supprimer"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longueur du mot de passe"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Le mot de passe saisi provoque un problème d'interopérabilité. Veuillez saisir un mot de passe qui est plus court que 52 octets ou plus long que 55 octets."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-clic pour ouvrir l'hyperlien : %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Cliquer pour ouvrir l'hyperlien : %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilisé par : %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Classeur"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Présentation"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dessin"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Récemment utilisés"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Pas de caractères récemment utilisés"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Réinitialiser tous les modèles par dé~faut"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Réinitialiser le modèle par dé~faut de document texte"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Réinitialiser le modèle par dé~faut de feuille de calcul"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Réinitialiser le modèle par dé~faut de présentation"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Réinitialiser le modèle par dé~faut de dessin"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importer"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensions"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Renommer"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Renommer la catégorie"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nouvelle catégorie"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspecteur d'objet UNO"
diff --git a/source/fr/svtools/messages.po b/source/fr/svtools/messages.po
index dc7361a77c9..6997bab0ada 100644
--- a/source/fr/svtools/messages.po
+++ b/source/fr/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 15:26+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fr/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559338263.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Impossible d'établir la connexion Internet à $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Message d'erreur du serveur : $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Message d'erreur du serveur : $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Une erreur Internet générale s'est produite."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Les données Internet requises ne sont pas disponibles dans le cache et ne peuvent pas être transmises, car le mode En ligne n'est pas activé."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Impossible de créer le contenu."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Le nom de fichier est trop long pour le système de fichiers cible."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La syntaxe de la saisie est incorrecte."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Veuillez enregistrer le document dans un format de fichier %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Le nombre maximum de documents ouverts simultanément a atteint sa limite. Pour ouvrir un nouveau document, fermez l'un ou plusieurs des documents ouverts."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Impossible de créer une copie de sauvegarde."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Longueur de données incorrecte."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Impossible d'exécuter la fonction : le chemin contient le répertoire actif."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Impossible d'exécuter la fonction : le périphérique (disque) n'est pas identique."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Le périphérique (disque) n'est pas prêt."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Somme de contrôle incorrecte."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Impossible d'exécuter la fonction : protégé en écriture."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Désactivez d'abord le mode partagé."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Erreur de format de fichier à la position $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Le filtre de ce format de fichier est désactivée dans la configuration. Veuillez contacter votre administrateur système."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Erreur OLE générale."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "L'état actuel de l'objet ne permet pas d'exécuter cette action."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'objet ne prend en charge aucune action."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'objet ne prend pas en charge cette action."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) lors de l'activation de l'objet"
diff --git a/source/fr/svx/messages.po b/source/fr/svx/messages.po
index fd1f8c560f9..2d8286c0461 100644
--- a/source/fr/svx/messages.po
+++ b/source/fr/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-27 01:45+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/fr/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Pas de bordure"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Bordure extérieure seulement"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Bordure extérieure et lignes horizontales"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Bordure extérieure et toutes les lignes intérieures"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Bordure extérieure et lignes verticales"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Bordure extérieure sans changer les lignes intérieures"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Lignes diagonales seulement"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Bordure diagonale descendante"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Bordure diagonale ascendante"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Bordure en croix"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Les 4 bordures"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Bordures gauche et droite seulement"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Bordures haute et basse seulement"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Bordures haute et basse et toutes les lignes horizontales"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Bordure gauche seulement"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Bordure droite seulement"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Bordure haute seulement"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Bordure basse seulement"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Bordures haute et basse et toutes les lignes intérieures"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Bordures gauche et droite et toutes les lignes intérieures"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Vérification de la taille de l'image"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "L'image « %NAME% » a trop peu de pixels pour la taille actuelle (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "L'image « %NAME% » a trop de pixels pour la taille actuelle (%DPIX% x %DPIY% DPI)"
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 360f7a8af3d..d36f07480fd 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-01 14:01+0000\n"
"Last-Translator: jumbo444 <laurent.balland@mailo.fr>\n"
"Language-Team: French <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fr/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Liste 5 suite"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "En-tête et pied de page"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10605,38 +10605,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tableau"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatage"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlien"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Légendes simulées"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numérotation"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Autre"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16437,55 +16443,55 @@ msgid "Frame"
msgstr "Cadre"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Position et taille"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Options"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Adapter"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlien"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordures"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Zone"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparence"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colonnes"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28882,43 +28888,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Rétablir les modifications apportées dans l'onglet affiché ici aux paramètres qui étaient présents lorsque cette boîte de dialogue a été ouverte."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Police"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Effets de caractère"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Position"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Mise en page asiatique"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Surlignage"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordures"
@@ -28930,85 +28936,85 @@ msgid "List Style"
msgstr "Style de liste"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nommer et masquer les styles définis par l'utilisateur"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Choisissez un type de puce prédéfini"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Non ordonné"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Choisissez une liste ordonnée prédéfinie"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordonné"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Choisissez un format de plan prédéfini"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Plan"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Choisissez un symbole de puce graphique prédéfini"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Image"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modifier le retrait, l'espacement et l'alignement des numéros de liste ou des symboles"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Position"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Créez votre propre liste ou format de plan"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personnaliser"
@@ -29020,109 +29026,109 @@ msgid "Paragraph Style"
msgstr "Style de paragraphe"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Retraits et espacement"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alignement"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Enchaînements"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Typographie asiatique"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Police"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Effets de caractère"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Position"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Mise en page asiatique"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Surlignage"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulations"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Lettrines"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Arrière-plan"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparence"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordures"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condition"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Définissez le niveau de plan, le style de liste et la numérotation des lignes pour le style de paragraphe."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Plan & liste"
@@ -29134,55 +29140,55 @@ msgid "Frame Style"
msgstr "Style de cadre"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Options"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Adapter"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Zone"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparence"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordures"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colonnes"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29200,61 +29206,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Page"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Arrière-plan"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparence"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "En-tête"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Pied de page"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordures"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colonnes"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Note de bas de page"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Grille du texte"
diff --git a/source/fur/cui/messages.po b/source/fur/cui/messages.po
index ca985cd1e21..4b3665e5add 100644
--- a/source/fur/cui/messages.po
+++ b/source/fur/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-03-06 07:13+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fur/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Vierç un file CSV, come gnûf sfuei intal sfuei di calcul atuâl, midiant Sfuei ▸ Sfuei dal file."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/fur/sc/messages.po b/source/fur/sc/messages.po
index 2f6c2e1e898..554da8cee66 100644
--- a/source/fur/sc/messages.po
+++ b/source/fur/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/fur/>\n"
@@ -14189,14 +14189,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14419,14 +14420,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23134,91 +23136,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23817,102 +23819,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -23950,49 +23856,49 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr ""
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr ""
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr ""
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr ""
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr ""
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28082,43 +27988,43 @@ msgid "Page Style"
msgstr ""
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr ""
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr ""
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr ""
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr ""
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr ""
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr ""
@@ -28160,55 +28066,55 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr ""
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr ""
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr ""
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr ""
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/fur/sd/messages.po b/source/fur/sd/messages.po
index 090998abc3b..5b47311b2c2 100644
--- a/source/fur/sd/messages.po
+++ b/source/fur/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/fur/>\n"
@@ -9542,97 +9542,97 @@ msgid "_Standard"
msgstr ""
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr ""
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr ""
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr ""
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr ""
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/fur/sfx2/messages.po b/source/fur/sfx2/messages.po
index 6b6593cebd0..01739b63ab7 100644
--- a/source/fur/sfx2/messages.po
+++ b/source/fur/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fur/>\n"
@@ -1560,376 +1560,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr ""
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/fur/svtools/messages.po b/source/fur/svtools/messages.po
index bb233c5030e..f6e1a69c29d 100644
--- a/source/fur/svtools/messages.po
+++ b/source/fur/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fur/>\n"
@@ -2380,16 +2380,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2397,37 +2405,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2435,19 +2443,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2460,43 +2468,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2504,43 +2512,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/fur/svx/messages.po b/source/fur/svx/messages.po
index 6f40748d58c..9ce802e8013 100644
--- a/source/fur/svx/messages.po
+++ b/source/fur/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/fur/>\n"
@@ -10131,134 +10131,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10267,19 +10317,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/fur/sw/messages.po b/source/fur/sw/messages.po
index 51e3f0a4dfa..6028e68299f 100644
--- a/source/fur/sw/messages.po
+++ b/source/fur/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-07-01 16:16+0000\n"
"Last-Translator: tmtfx <f.t.public@gmail.com>\n"
"Language-Team: Friulian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fur/>\n"
@@ -3027,9 +3027,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10594,38 +10594,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16427,55 +16433,55 @@ msgid "Frame"
msgstr ""
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr ""
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr ""
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr ""
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr ""
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr ""
@@ -28872,43 +28878,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr ""
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr ""
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -28920,85 +28926,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr ""
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr ""
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr ""
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29010,109 +29016,109 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr ""
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr ""
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr ""
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr ""
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr ""
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29124,55 +29130,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr ""
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr ""
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr ""
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr ""
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr ""
@@ -29190,61 +29196,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr ""
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr ""
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr ""
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr ""
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr ""
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index cc0178c440c..8bb5db5b182 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-02-18 11:42+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/fy/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Brûk Blêd ▸ Blêd út triem ynfoegje om in CSV triem as nij blêd yn de aktive rekkenblêd te iepenjen."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/fy/sc/messages.po b/source/fy/sc/messages.po
index b0acf734cc7..cb8f84201c5 100644
--- a/source/fy/sc/messages.po
+++ b/source/fy/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-19 08:37+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/fy/>\n"
@@ -14278,14 +14278,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14508,14 +14509,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23225,91 +23227,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23908,102 +23910,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Wiskje"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Gjin râne"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle rânen"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bûten rânen"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Grouwe râne rûnom"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Grouwe ûnderrâne"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dûbele ûnderrâne"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Grouwe boppe- en ûnderrânen"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Grouwe boppe- en dûbele ûnderrânen"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Linker râne"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Rjochter râne"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Boppe râne"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Under râne"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonaal omheech rinnende râne"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonaal omleech rinnende râne"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Boppe- en ûnderrâne"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Linker- en rjochter râne"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24041,49 +23947,49 @@ msgid "Format Cells"
msgstr "Sellen opmeitsje"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Getallen"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Lettertype"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Tekst effekten"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Rjochting"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aziatyske typografy"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Rânen"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Eftergrûn"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Sel befeiliging"
@@ -28172,43 +28078,43 @@ msgid "Page Style"
msgstr "Side styl"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Side"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Rânen"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Eftergrûn"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Koptekst"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Fuottekst"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Blêd"
@@ -28250,55 +28156,55 @@ msgid "Cell Style"
msgstr "Sel styl"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Getallen"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Lettertype"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Tekst effekten"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Rjochting"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziatyske typografy"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Rânen"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Eftergrûn"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Sel befeiliging"
diff --git a/source/fy/sd/messages.po b/source/fy/sd/messages.po
index e1f464be5f2..1108053aa80 100644
--- a/source/fy/sd/messages.po
+++ b/source/fy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-11 05:36+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/fy/>\n"
@@ -9550,97 +9550,97 @@ msgid "_Standard"
msgstr "_Standert"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Line"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Gebiet"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skaad"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Trochsichtich"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Lettertype"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Tekst effekten"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Ynsprong & ôfstân"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekst animaasje"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Ofmjitting"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Ferbinning"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Rjochting"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziatyske typografy"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabs"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Markearring"
diff --git a/source/fy/sfx2/messages.po b/source/fy/sfx2/messages.po
index 524c75206ba..d499bb0d337 100644
--- a/source/fy/sfx2/messages.po
+++ b/source/fy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-10-26 21:41+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/fy/>\n"
@@ -1631,376 +1631,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bijekoer"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauwe bôge"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blaudruk plannen"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Boskfûgel"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ynspiraasje"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ljochten"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblau"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuer yllustraasje"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Poatlead"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Avensaasje"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sinneûndergong"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Yntinsyf"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Gearfetting"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standert"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern saaklike brief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern saaklike brief serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Nammekaartsje mei logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Ienfâldich"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wiskje"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles wiskje"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wachtwurd lingte"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "It wachtwurd dat jo ynfierd ha, feroarsaket ynteroperabiliteit swierrigens. Fier in wachtwurd yn dat koarter is dan 52 bytes of langer dan 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik om ferwizing te iepenjen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik om de ferwizing te iepenjen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(brûkt troch: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/fy/svtools/messages.po b/source/fy/svtools/messages.po
index f2fc8f9499c..2b236649f3a 100644
--- a/source/fy/svtools/messages.po
+++ b/source/fy/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-09-21 10:46+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/fy/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Koe gjin ynternet ferbining mei $(ARG1) ta stân bringe."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Flater melding fan tsjinner: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Flater melding fan tsjinner: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Der barde in algemiene netwurk flater."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "De fersochte ynternet gegevens binne net beskikber yn it lyts ûnthâld en kinne net oerdroegen wurde as de modus ferbining net aktyf is."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "De ynhâld koe net oanmakke wurde."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Triemnamme te lang foar it doel triemsysteem."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Ynkorrekte skriuwwize."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Bewarje it dokumint yn in %PRODUCTNAME %PRODUCTVERSION triem opmaak."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "De maksimum tal dokumint dat tagelyk iepen stean kin is berikt. Jo moatte ien of mear dokuminten slute foardat jo in nij dokumint iepenje kinne."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Koe gjin reservekopy meitsje."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Unjildige gegevens lingte."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funksje net mooglik: paad befettet aktuele map."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funksje net mooglik: net itselde apparaat (stasjon)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Apparaat (stasjon) net ree."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Ferkearde kontrôlesom."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funksje net mooglik: allinne-lêzen."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Deaktivearje earste de modus Diele."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Triem opmaak flater ûntdutsen op $(ARG1)(rige,kolom)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "It filter foar dizze triem yndieling is útskeakele yn de ynstellingen. Nim kontakt op mei jo systeembehearder."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Algemiene OLE flater."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "De aksje kin net útfierd wurde yn de aktuele tastân fan it objekt."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "It objekt stipet gjin aksjes."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "It objekt stipet dizze aksje net."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) by it aktivearjen fan objekt"
diff --git a/source/fy/svx/messages.po b/source/fy/svx/messages.po
index 20c17723890..565369c1344 100644
--- a/source/fy/svx/messages.po
+++ b/source/fy/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-02-19 19:03+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/fy/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index e373b093b05..3dcac132220 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-07-28 00:34+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: Frisian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/fy/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "List 5 ferfolch"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Kop- en fuottekst"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10602,38 +10602,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16434,55 +16440,55 @@ msgid "Frame"
msgstr "Ramt"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opsjes"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Omrinne"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Ferwizing"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Rânen"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Gebiet"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Trochsichtich"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolommen"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28877,43 +28883,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Lettertype"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Tekst effekten"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posysje"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aziatyske yndieling"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Markearring"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Rânen"
@@ -28925,85 +28931,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Oersicht"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Ofbylding"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posysje"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Oanpasse"
@@ -29015,109 +29021,109 @@ msgid "Paragraph Style"
msgstr "Alinea styl"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Ynsprong & ôfstân"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Rjochting"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekst ferrin"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aziatyske typografy"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Lettertype"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Tekst effekten"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posysje"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aziatyske yndieling"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Markearring"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabs"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Inisjalen"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Gebiet"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Trochsichtich"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Rânen"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Betingst"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29129,55 +29135,55 @@ msgid "Frame Style"
msgstr "Ramt styl"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opsjes"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Omrinne"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Gebiet"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Trochsichtich"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Rânen"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolommen"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29195,61 +29201,61 @@ msgid "Standard"
msgstr "Standert"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Side"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Gebiet"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Trochsichtich"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Koptekst"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Fuottekst"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Rânen"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolommen"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fuotnoat"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekst roaster"
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index d14e1548fdf..a408ba2b847 100644
--- a/source/ga/cui/messages.po
+++ b/source/ga/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ga/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ga/sc/messages.po b/source/ga/sc/messages.po
index 3d32238719e..4708d6b7f38 100644
--- a/source/ga/sc/messages.po
+++ b/source/ga/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ga/>\n"
@@ -14283,14 +14283,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14513,14 +14514,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23233,91 +23235,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23916,102 +23918,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Gan Imlíne"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Gach Imlíne"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Imlínte Amuigh"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Imlíne Thiubh Bhosca"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Imlíne Thiubh ag an mBun"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Imlíne Dhúbailte ag an mBun"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Imlíne ag an mBarr, Imlíne Thiubh ag an mBun"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Imlíne ag an mBarr, Imlíne Dhúbailte ag an mBun"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Imlíne Ar Chlé"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Imlíne Ar Dheis"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Imlíne ag an mBarr"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Imlíne ag an mBun"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Imlíne Thrasnánach Suas"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Imlíne Thrasnánach Síos"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Imlínte ag an mBarr/mBun"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Imlínte Ar Chlé agus Ar Dheis"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24049,49 +23955,49 @@ msgid "Format Cells"
msgstr "Formáidigh Cealla"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Uimhreacha"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Cló"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Maisíochtaí Cló"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Ailíniú"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Clóghrafaíocht na hÁise"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Imlínte"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Cúlra"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cosaint Chille"
@@ -28180,43 +28086,43 @@ msgid "Page Style"
msgstr "Stíl Leathanaigh"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Leathanach"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Imlínte"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Cúlra"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Ceanntásc"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Buntásc"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Bileog"
@@ -28258,55 +28164,55 @@ msgid "Cell Style"
msgstr "Stíl Cille"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Uimhreacha"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Cló"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Maisíochtaí Cló"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Ailíniú"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Clóghrafaíocht na hÁise"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Imlínte"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Cúlra"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cosaint Chille"
diff --git a/source/ga/sd/messages.po b/source/ga/sd/messages.po
index d218be5c659..aa818a16135 100644
--- a/source/ga/sd/messages.po
+++ b/source/ga/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ga/>\n"
@@ -9553,97 +9553,97 @@ msgid "_Standard"
msgstr "_Caighdeánach"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Líne"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Méid"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Scáthlíniú"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Trédhearcacht"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Cló"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Maisíochtaí Cló"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Eangú agus Spásáil"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Téacs"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Beochan Téacs"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Toisiú"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Nascóir"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Ailíniú"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Clóghrafaíocht na hÁise"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Táib"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Aibhsiú"
diff --git a/source/ga/sfx2/messages.po b/source/ga/sfx2/messages.po
index d5f9d694009..df0d3ad1761 100644
--- a/source/ga/sfx2/messages.po
+++ b/source/ga/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ga/>\n"
@@ -1618,376 +1618,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Coirceog"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Cuar Gorm"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Gormchló"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fócas"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Éan coille"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspioráid"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Soilse"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Ceannchathair"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm an Mheán Oíche"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Léaráid Nádúir"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peann Luaidhe"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianó"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Punann"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Dul chun cinn"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Luí Gréine"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Seanlaethanta"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Gléineach"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Réamhshocrú"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nua-Aimseartha"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir ghnó nua-aimseartha, sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir ghnó nua-aimseartha, serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cárta gnó le lógó"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Bain"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Glan Uile"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Fad an fhocail faire"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Is cúis le fadhbanna comh-inoibritheachta é an focal faire a chuir tú isteach. Ba chóir duit focal faire níos giorra ná 52 beart nó níos faide ná 55 beart a roghnú."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ga/svtools/messages.po b/source/ga/svtools/messages.po
index 92c102d595e..dfd18af8078 100644
--- a/source/ga/svtools/messages.po
+++ b/source/ga/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ga/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Níorbh fhéidir ceangal Idirlín a bhunú le $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Teachtaireacht earráide ón fhreastalaí: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Teachtaireacht earráide ón fhreastalaí: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Tharla earráid ghinearálta Idirlín."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Níl na sonraí iarrtha ón Idirlíon le fáil sa taisce agus ní féidir iad a tharchur toisc nach bhfuil tú sa mhód Ar Líne."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Níorbh fhéidir an t-inneachar a chruthú."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Tá ainm an chomhaid rófhada don sprioc-chóras comhad."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Comhréir neamhbhailí ionchuir."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Sábháil an cháipéis i bhformáid chomhaid %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Tá uaslíon na gcáipéisí ar féidir bheith ar oscailt ag aon dreas amháin sroichte. Caithfear cáipéis amháin nó níos mó a dhúnadh sular féidir cáipéis nua a oscailt."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Níorbh fhéidir cóip chúltaca a chruthú."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Fad neamhbhailí na sonraí."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Ní cheadaítear an fheidhm seo: tá an chomhadlann reatha sa chonair."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Ní cheadaítear an fheidhm seo: ní hionann an gléas (tiomántán)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Níl an gléas (tiomántán) ullamh."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Suim sheiceála mhícheart."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Ní cheadaítear an fheidhm seo: cosanta ar scríobh."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Ní mór duit an mód comhroinnte a dhíghníomhachtú ar dtús."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Aimsíodh earráid fhormáide sa chomhad ag $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Earráid Ghinearálta OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Ní féidir an gníomh a chur i bhfeidhm agus an réad ina staid reatha."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Ní thacaíonn an réad le haon ghníomh."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Ní thacaíonn an réad leis an ngníomh seo."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) agus réad á ghníomhachtú"
diff --git a/source/ga/svx/messages.po b/source/ga/svx/messages.po
index 04333295dd5..288367d7acd 100644
--- a/source/ga/svx/messages.po
+++ b/source/ga/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ga/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index 733f2dfc844..3970ced5412 100644
--- a/source/ga/sw/messages.po
+++ b/source/ga/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-03-08 13:45+0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ga/>\n"
@@ -3027,11 +3027,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Ceanntásc agus Buntásc"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10621,38 +10621,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16453,55 +16459,55 @@ msgid "Frame"
msgstr "Fráma"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Roghanna"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Timfhill"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipearnasc"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Imlínte"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Méid"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Trédhearcacht"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colúin"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macra"
@@ -28896,43 +28902,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Cló"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Maisíochtaí Cló"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Ionad"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Leagan Amach Áiseach"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Aibhsiú"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Imlínte"
@@ -28944,85 +28950,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Imlíne"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Íomhá"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Ionad"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Saincheap"
@@ -29034,109 +29040,109 @@ msgid "Paragraph Style"
msgstr "Stíl Ailt"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Eangú agus Spásáil"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Ailíniú"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Sruth Téacs"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Clóghrafaíocht na hÁise"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Cló"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Maisíochtaí Cló"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Ionad"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Leagan Amach Áiseach"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Aibhsiú"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Táib"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Ceannlitreacha Anuas"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Méid"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Trédhearcacht"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Imlínte"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Coinníoll"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29148,55 +29154,55 @@ msgid "Frame Style"
msgstr "Stíl Fráma"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Cineál"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Roghanna"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Timfhill"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Méid"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Trédhearcacht"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Imlínte"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colúin"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macra"
@@ -29214,61 +29220,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Leathanach"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Méid"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Trédhearcacht"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Ceanntásc"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Buntásc"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Imlínte"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colúin"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fonóta"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Greille Téacs"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index 446d8587d5a..31447a00aa0 100644
--- a/source/gd/cui/messages.po
+++ b/source/gd/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/gd/>\n"
@@ -2558,10 +2558,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/gd/sc/messages.po b/source/gd/sc/messages.po
index a1182aaaf89..826a3ee2322 100644
--- a/source/gd/sc/messages.po
+++ b/source/gd/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/gd/>\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23230,91 +23232,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23913,102 +23915,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Gun iomall"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "A h-uile iomall"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Iomallan air an taobh a-muigh"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Iomall bogsa tiugh"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Iomall tiugh aig a’ bhonn"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Iomall dùbailte aig a’ bhonn"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Iomall aig a’ bhàrr is tiugh aig a’ bhonn"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Iomall aig a’ bhàrr is dùbailte aig a’ bhonn"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Iomall clì"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Iomall deas"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Iomall aig a’ bharr"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Iomall aig a’ bhonn"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Iomall trastanach suas"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Iomall trastanach sìos"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Iomall aig a’ bharr is aig a’ bhonn"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Iomall deas is clì"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24046,49 +23952,49 @@ msgid "Format Cells"
msgstr "Fòrmataich na ceallan"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Àireamhan"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Cruth-clò"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Èifeachdan cruth-clò"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Co-thaobhadh"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Clò-ghrafachd Àiseanach"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Borders"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Cùlaibh"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Dìon a' chealla"
@@ -28177,43 +28083,43 @@ msgid "Page Style"
msgstr "Stoidhle na duilleige"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Duilleag"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Iomallan"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Cùlaibh"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Bann-cinn"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Bann-coise"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Siota"
@@ -28255,55 +28161,55 @@ msgid "Cell Style"
msgstr "Stoidhle a' chealla"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Àireamhan"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Cruth-clò"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Èifeachdan chruthan-clò"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Co-thaobhadh"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Clò-ghrafachd Àiseanach"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Iomallan"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Cùlaibh"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Dìon a' chealla"
diff --git a/source/gd/sd/messages.po b/source/gd/sd/messages.po
index 4e5259baf89..7325a87c1d1 100644
--- a/source/gd/sd/messages.po
+++ b/source/gd/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/gd/>\n"
@@ -9552,97 +9552,97 @@ msgid "_Standard"
msgstr "_Stannardach"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Loidhne"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Raon"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sgàileadh"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Trìd-shoilleireachd"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Cruth-clò"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Èifeachdan chruthan-clò"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Eagan ⁊ beàrnadh"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teacsa"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Beòthachadh teacsa"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Meudachd"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Ceangladair"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Co-thaobhadh"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Clò-ghrafachd Àiseanach"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabaichean"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Soillseachadh"
diff --git a/source/gd/sfx2/messages.po b/source/gd/sfx2/messages.po
index 6ec55011184..06896e98bec 100644
--- a/source/gd/sfx2/messages.po
+++ b/source/gd/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/gd/>\n"
@@ -1618,376 +1618,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Sgeap"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Lùb ghorm"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Lethbhreac-gorm"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fòcas"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Eun na coille"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Brosnachadh"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Solais"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Baile mòr"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Gorm meadhan na h-oidhche"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Sealladh nàdair"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Peansail"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piàna"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Adhartas"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Laighe na grèine"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Na làithean a dh’aom"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Beòthail"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Résumé"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Bunaiteach"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ùr-nòsach"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Litir gnìomhachais ùr-nòsach sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Litir gnìomhachais ùr-nòsach le serifs"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Cairt-ghnìomhachais le suaicheantas"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Thoir air falbh"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Falamhaich na h-uile"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Faid an fhacail-fhaire"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Tha am facal-faire a chuir thu a-steach ag adhbharachadh duilgheadasan eadar-obrachadh. Cuir a-steach fear a tha nas giorra na 52 bytes no fear a tha nas fhaide na 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/gd/svtools/messages.po b/source/gd/svtools/messages.po
index 303fbde8f3c..ab13efb5884 100644
--- a/source/gd/svtools/messages.po
+++ b/source/gd/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:59+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/gd/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Cha b’ urrainn dhuinn ceangal-lìn a dhèanamh ri $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Teachdaireachd mearachd on fhrithealaiche: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Teachdaireachd mearachd on fhrithealaiche: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Thachair mearachd choitcheann leis an eadar-lìon."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Chan eil an dàta-lìn a chaidh iarraidh san tasgadan agus cha ghabh a thar-chur a chionn ’s nach eil thu sa mhodh air loidhne."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Cha b’ urrainn dhuinn an t-susbaint a chruthachadh."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Tha ainm an fhaidhle ro fhada airson an t-siostaim fhaidhlichean a tha thu ag amas air."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Tha co-chàradh an ion-chuir mì-dhligheach."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Sàbhail an sgrìobhainn san fhòrmat %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Tha na tha ceadaichte de sgrìobhainnean fosgailte aig an aon àm agad mu thràth. Tha agad ri aonan no barrachd dhiubh a dhùnadh mus urrainn dhut tè ùr fhosgladh."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Cha b’ urrainn dhuinn lethbhreac-glèidhidh a chruthachadh."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Faid mhì-dhligheach an dàta."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Foincsean do-dhèanta: tha am pasgan làithreach san t-slighe."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Foincsean do-dhèanta: chan e seo an dearbh-inneal (draibh)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Chan eil an t-inneal (draibh) deiseil."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Checksum ceàrr."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Foincsean do-dhèanta: dìon sgrìobhaidh."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Cuir crìoch air a’ cho-roinneadh an toiseach."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Chaidh mearachd a lorg ann am fòrmat an fhaidhle aig $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Tha a’ chriathrag airson an fhòrmat fhaidhle seo à comas. Cuir fios gu rianaire an t-siostaim agad."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Mearachd OLE choitcheann."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Cha ghabh an gnìomh a choileanadh leis an staid sa bheil an t-oibseact an-dràsta."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Chan eil an t-oibseact a' cur taic ri gnìomh sam bith."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Chan eil an t-oibseact a’ cur taic ris a’ ghnìomh seo."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) a’ gnìomhachadh an oibseict"
diff --git a/source/gd/svx/messages.po b/source/gd/svx/messages.po
index 993cc20e5da..5bc4885979d 100644
--- a/source/gd/svx/messages.po
+++ b/source/gd/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:59+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/gd/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index af92c5304c0..2b5acc782dd 100644
--- a/source/gd/sw/messages.po
+++ b/source/gd/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-08-19 12:58+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Gaelic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/gd/>\n"
@@ -3027,11 +3027,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Bann-cinn is bann-coise"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10614,38 +10614,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16446,55 +16452,55 @@ msgid "Frame"
msgstr "Frèam"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Roghainnean"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Paisg"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Ceangal-lìn"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Iomallan"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Raon"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Trìd-shoilleireachd"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colbhan"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28889,43 +28895,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Cruth-clò"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Èifeachdan cruth-clò"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Ionad"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Co-dhealbhachd Àiseanach"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Soilleireachadh"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Iomallan"
@@ -28937,85 +28943,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Oir-loidhne"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Dealbh"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Ionad"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Gnàthaich"
@@ -29027,109 +29033,109 @@ msgid "Paragraph Style"
msgstr "Stoidhle a’ pharagraf"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Eagan ⁊ beàrnadh"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Co-thaobhadh"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Sruthadh an teacsa"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Clò-ghrafachd Àiseanach"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Cruth-clò"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Èifeachdan cruth-clò"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Ionad"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Co-dhealbhachd Àiseanach"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Soilleireachadh"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabaichean"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Ceann-litrichean a-nuas"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Raon"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Trìd-shoilleireachd"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Iomallan"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Cumha"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29141,55 +29147,55 @@ msgid "Frame Style"
msgstr "Stoidhle an fhrèama"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Seòrsa"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Roghainnean"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Paisg"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Raon"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Trìd-shoilleireachd"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Iomallan"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colbhan"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29207,61 +29213,61 @@ msgid "Standard"
msgstr "Stannardach"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Duilleag"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Raon"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Trìd-shoilleireachd"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Bann-cinn"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Bann-coise"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Iomallan"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colbhan"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Bun-nòta"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Griod an teacsa"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index eca787df15e..e5525c9c557 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-17 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/gl/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Abra un ficheiro CSV como folla nova na folla de cálculo actual mediante Folla ▸ Folla dun ficheiro."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Pode continuar escribindo cos atributos de formato predeterminados despois de aplicar grosa, cursiva ou subliñado premendo %MOD1+Maiús+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index f28dfc12eba..58c0a22ca81 100644
--- a/source/gl/helpcontent2/source/text/shared/00.po
+++ b/source/gl/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-05 20:36+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/gl/>\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Restaurar ao herdado"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Os valores desta lapela restablécense nos correspondentes do estilo indicado en «Herdar de» da lapela Organizador. En todos os casos, e tamén cando o valor de «Herdar de» é «- Ningún -», tamén se retiran os valores da lapela actual indicados en «Contén»."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 174d191476c..da6a81e00ae 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-10 19:29+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/gl/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\"> Devolve a gráfica seleccionado ao seu tamaño orixinal.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05210600.xhp\">Sombra</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 748b471ddb8..4225a0ff81e 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-11 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/gl/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/gl/helpcontent2/source/text/swriter/01.po b/source/gl/helpcontent2/source/text/swriter/01.po
index db560d7afea..afaf1852e70 100644
--- a/source/gl/helpcontent2/source/text/swriter/01.po
+++ b/source/gl/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-14 09:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/gl/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 5e07797f8bd..7fd757cacb2 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-10 09:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/gl/>\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Na lista de estilos de páxina, prema co botón dereito do rato en \"Páxina á esquerda\" e escolla <emph>Modificar</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Prema no separador <emph>Organizador</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7096,13 +7096,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Pode utilizar cabeceiras e pés de páxina diferentes nas diversas páxinas do documento, en tanto que utilicen estilos de páxina diferentes. $[officename] ofrece varios estilos de páxina predefinidos como <emph>Primeira páxina</emph>, <emph>Páxina á esquerda</emph> e <emph>Páxina á dereita</emph>. Alén diso, pode crear estilos de páxina personalizados."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7141,32 +7141,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Prema co botón dereito do rato sobre \"Páxina á dereita\" na lista de estilos de páxina e escolla <emph>Modificar</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Na caixa de diálogo <item type=\"menuitem\">Estilos de páxina</item>, prema na lapela <item type=\"menuitem\">Cabeceira</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\"> Header on </item> e prema no botón <item type=\"menuitem\"> Organizador </item> a ficha."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Na <item type=\"menuitem\"> Seguinte estilo </item> caixa, seleccione \"Páxina Esquerda\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7186,32 +7186,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Na <item type=\"menuitem\"> Page Styles </item> de diálogo, prema no botón <item type=\"menuitem\"> Cabeceira </item> a ficha."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\"> Header on </item> e prema no botón <item type=\"menuitem\"> Organizador </item> a ficha."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Na <item type=\"menuitem\"> Seguinte estilo </item> caixa, seleccione \"Páxina dereita \"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11434,14 +11434,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na lista de estilos de páxina prema co botón dereito do rato nun elemento e escolla <emph>Novo</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Introduza un nome para o estilo de páxina na caixa <emph>Nome</emph>, situada no separador <emph>Organizador</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11587,14 +11587,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Seleccione <emph>Quebra de páxina</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Na <item type=\"menuitem\"> Estilo </item> caixa, seleccione un estilo de páxina que utiliza o fondo da páxina."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11866,13 +11866,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Un <emph>páxina automática pausa</emph> aparece ao final dunha páxina cando o estilo de páxina ten un \"estilo seguinte\" diferente."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12190,14 +12190,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Botón dereito do rato nun estilo de páxina e escolla <emph>Nova</emph>. O novo estilo de páxina inicialmente recibe todas as propiedades do estilo de páxina seleccionado."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "No separador <emph>Organizador</emph>, escriba un nome para o estilo de páxina na caixa <emph>Nome</emph>, como por exemplo \"O meu horizontal\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12334,13 +12334,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Unha páxina Estilos longos"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12370,13 +12370,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Intervalo definido manualmente dun estilo de páxina"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12505,14 +12505,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Na lista de estilos de páxina prema co botón dereito do rato nun elemento e escolla <emph>Novo</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "No separador <emph>Organizador</emph>, introduza un nome na caixa <emph>Nome</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index 45fa3863d3b..2e682d34f3d 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 17:47+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562229906.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Modo de coincidencia"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Correspondencia exacta. Devolve #N/DISP se non existen coincidencias. (predeterminado).\n"
-"-1 - Correspondencia exacta ou o elemento inmediatamente inferior.\n"
-"1 - Correspondencia exacta ou o elemento inmediatamente superior.\n"
-"2 - Correspondencia con comodíns ou expresións regulares."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Modo de correspondencia"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Correspondencia exacta. Devolve #N/DISP se non existen coincidencias. (predeterminado).\n"
-"-1 - Correspondencia exacta ou o elemento inmediatamente inferior.\n"
-"1 - Correspondencia exacta ou o elemento inmediatamente superior.\n"
-"2 - Correspondencia con comodíns ou expresións regulares."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "E_stándar"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Xeral"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Liña"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Área"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Sombreado"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparencia"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectos de tipo de letra"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangrado e espazamento"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Texto"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animación de texto"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensionamento"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliñamento"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Realce"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Eliminar"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Sen bordo"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Todos os bordos"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordos exteriores"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Bordo da caixa groso"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Bordo inferior groso"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Bordo inferior duplo"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Bordos superior e inferior grosos"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Bordos superior e inferior duplos"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Bordo esquerdo"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Bordo dereito"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Bordo superior"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bordo inferior"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Bordo diagonal ascendente"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Bordo diagonal descendente"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bordos superior e inferior"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bordos esquerdo e dereito"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Formatar as celas"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Números"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos do tipo de letra"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Aliñamento"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordos"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fondo"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protección de cela"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Estilo de páxina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Xeral"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Páxina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordos"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fondo"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Cabeceira"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Rodapé"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Folla"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Estilo de cela"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Xeral"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Números"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tipo de letra"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos do tipo de letra"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Aliñamento"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordos"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fondo"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protección de cela"
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index 3a52a035f52..adf96c05c8d 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-04 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/gl/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "E_stándar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Liña"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Área"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sombreado"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparencia"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipografía"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectos do tipo de letra"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangrado e espazamento"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Texto"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animación de texto"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensionado"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Conector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Aliñamento"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Realce"
diff --git a/source/gl/sfx2/messages.po b/source/gl/sfx2/messages.po
index 5b8105b60d8..747da496195 100644
--- a/source/gl/sfx2/messages.po
+++ b/source/gl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-06 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560960742.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "As macros están desactivadas debido á configuración de seguranza das macros."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "As macros están asinadas, mais o documento (que contén eventos de documento) non está asinado."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Mostrar macros"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Mostrar opcións de seguranza"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Mostrar eventos"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris elegante"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Colmea"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva azul"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planos cianotipo"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Caramelo"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idea amarela"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Foco"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Paxaro"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Refrescante"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiración"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luces"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Liberdade a xermolar"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópole"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Azul medianoite"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustración da natureza"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Lapis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Cartafol"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progreso"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solpor"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antigo"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivo"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Currículo"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predeterminado"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Carta comercial moderna, letra sen serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Carta comercial moderna, letra con serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Tarxeta de visita con logotipo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Simple"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Chinés simplificado normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Xaponés normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Retirar"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Limpar todo"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Tamaño do contrasinal"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "O contrasinal introducido provoca problemas de interoperabilidade. Introduza un contrasinal que teña menos de 52 bytes ou máis de 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Prema co botón %{key} para abrir a hiperligazón: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Prema para abrir a hiperligazón: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilizado por: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Documento"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Folla de cálculo"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentación"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Debuxo"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Recentes"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Non hai caracteres recentes"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "~Restabelecer todos os modelos predeterminados"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Restaurar documento de ~texto predeterminado"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Restaurar ~folla de cálculo predeterminada"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Restaurar ~presentación predeterminada"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Restaurar ~debuxo predeterminado"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importar"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensións"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Renomear"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Renomear categoría"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nova categoría"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Inspector de obxectos UNO"
diff --git a/source/gl/svtools/messages.po b/source/gl/svtools/messages.po
index 72900b83b52..76073ab4b96 100644
--- a/source/gl/svtools/messages.po
+++ b/source/gl/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-28 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/gl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559330420.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Non foi posíbel estabelecer unha conexión á Internet con $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Mensaxe de erro do servidor: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Mensaxe de erro do servidor: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Produciuse un erro xeral de Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Os datos solicitados da Internet non están dispoñíbeis na caché e non poden ser transmitidos xa que o modo Na rede non está activado."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Non foi posíbel crear o contido."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "O nome do ficheiro é demasiado extenso para o sistema de ficheiros de destino."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "A sintaxe de entrada dos datos non é válida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Garde o documento nun formato de ficheiro de %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Alcanzouse o máximo número de documentos que poden ser abertos ao mesmo tempo. Hai que pechar un ou máis documentos antes de poder abrir un novo documento."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Non foi posíbel crear unha copia de seguranza."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "O tamaño de datos non é válido."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "A función non é correcta: a ruta contén o directorio actual."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "A función non é válida: o dispositivo (unidade) é diferente."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "O dispositivo (unidade) non está preparado."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Erro na suma de comprobación."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "A función non é válida: está protexida contra escrita."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Desactive primeiro o modo compartido."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Atopado un erro de formato no ficheiro en $(ARG1)(fila,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "O filtro para este formato de ficheiro está desactivado na configuración. Contacte co administrador do sistema."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Erro xeral de OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Non é posíbel executar a acción no estado actual do obxecto."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "O obxecto non admite ningunha acción."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "O obxecto non admite esta acción."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) ao activar o obxecto"
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index 837c535798a..2fcd6240635 100644
--- a/source/gl/svx/messages.po
+++ b/source/gl/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-05-27 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/gl/>\n"
"Language: gl\n"
@@ -8113,7 +8113,7 @@ msgstr "Latín básico"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Suplemento Latin-1"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8149,7 +8149,7 @@ msgstr "Combinación de marcas diacríticas"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Grego e copta"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8749,7 +8749,7 @@ msgstr "Cherokee"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Sílabas aborixes canadenses unificadas"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9151,7 +9151,7 @@ msgstr "Samaritano"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Sílabas aborixes canadenses unificadas estendido"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10003,7 +10003,7 @@ msgstr "Toto"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Sílabas aborixes canadenses unificadas estendido-A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Sen bordos"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Só bordo exterior"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Bordo exterior e liñas horizontais"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Bordo exterior e todas as liñas interiores"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Bordo exterior e liñas verticais"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Bordo exterior sen cambiar as liñas interiores"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Só liñas diagonais"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Bordo diagonal descendente"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Bordo diagonal ascendente"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Bordo en cruz"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Os catro bordos"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Só bordos dereito e esquerdo"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Só bordos superior e inferior"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Bordos superior e inferior e todas as liñas horizontais"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Só bordo esquerdo"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Só bordo dereito"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Só bordo superior"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Só bordo inferior"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Bordos superior e inferior e todas as liñas interiores"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Bordos esquerdo e dereito e todas as liñas interiores"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Retirar dos favoritos"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Falta un carácter"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Engadir aos favoritos"
@@ -10281,19 +10331,19 @@ msgstr "Engadir aos favoritos"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Comprobación do tamaño da imaxe..."
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "A imaxe «%NAME%» ten moi poucos píxeles para o tamaño actual (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "A imaxe «%NAME%» ten demasiados píxeles para o tamaño actual (%DPIX% x %DPIY% DPI)"
@@ -19603,13 +19653,13 @@ msgstr "Elipsoidal"
#: svx/uiconfig/ui/sidebararea.ui:324
msgctxt "sidebararea|transtype"
msgid "Square (Quadratic)"
-msgstr ""
+msgstr "Cadrado (cadrático)"
#. Vqduy
#: svx/uiconfig/ui/sidebararea.ui:325
msgctxt "sidebararea|transtype"
msgid "Rectangular"
-msgstr ""
+msgstr "Rectangular"
#. J46j4
#: svx/uiconfig/ui/sidebararea.ui:329
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index 48b94969353..e8a5e17cc70 100644
--- a/source/gl/sw/messages.po
+++ b/source/gl/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/gl/>\n"
"Language: gl\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Continuación da lista 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Cabeceira e rodapé"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10380,13 +10380,13 @@ msgstr "Permitir que os tabuladores se estendan alén da marxe dereita"
#: sw/inc/strings.hrc:1495
msgctxt "STR_COMPAT_OPT_DO_NOT_MIRROR_RTL_DRAW_OBJS"
msgid "Do not mirror drawing objects anchored in paragraphs with an RTL writing direction"
-msgstr ""
+msgstr "Non espellar obxectos de debuxo ancorados en parágrafos con dirección de escrita de dereita para esquerda"
#. eREXB
#: sw/inc/strings.hrc:1496
msgctxt "STR_COMPAT_OPT_CONTINUOUS_ENDNOTES"
msgid "Render endnotes at the end of document inline, rather than on a separate page"
-msgstr ""
+msgstr "Mostrar as notas finais no final do documento no canto de nunha páxina aparte."
#. LBmQP
#: sw/inc/strings.hrc:1498
@@ -10604,41 +10604,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Táboa"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formato"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperligazón"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Lendas simuladas"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numeración"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Outros"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Prema para actualizar..."
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Marco"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posición e tamaño"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcións"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Axustar"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperligazón"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordos"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Área"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -27756,7 +27762,7 @@ msgstr "Seleccione a táboa que quere empregar para os enderezos de combinación
#: sw/uiconfig/swriter/ui/sidebarquickfind.ui:36
msgctxt "sidebarquickfind|find"
msgid "Find"
-msgstr ""
+msgstr "Localizar"
#. DSVQt
#: sw/uiconfig/swriter/ui/sidebartableedit.ui:46
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Restaurar todos os cambios feitos na lapela que se mostra aquí ás opcións presentes cando se abriu esta caixa de diálogo."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tipo de letra"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efectos do tipo de letra"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posición"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Disposición asiática"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Realce"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordos"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Estilo de lista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nomear e agochar os estilos definidos polo usuario"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Escoller un tipo de viñeta predefinido"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Sen ordenar"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Escoller unha lista ordenada predefinida"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenada"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Escoller un formato de esquema predefinido"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Esquema"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Escoller un símbolo de viñeta predefinido"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imaxe"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modificar o sangrado, espazamento e aliñamento dos números ou viñetas de lista"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posición"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Deseñe o seu propio formato de lista ou de esquema"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalizar"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Estilo de parágrafo"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sangrados e espazamento"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Aliñamento"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Fluxo de texto"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipo de letra"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efectos do tipo de letra"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posición"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Disposición asiática"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Realce"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Maiúsculas capitulares"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Área"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordos"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condición"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Indicar o nivel de esquema, estilo de lista e numeración de liña do estilo de parágrafo."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Esquema e lista"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Estilo de marco"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcións"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Axustar"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Área"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordos"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Estándar"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
-msgstr ""
+msgstr "Xeral"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Páxina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Área"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Cabeceira"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Rodapé"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordos"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota a rodapé"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Grade de texto"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index ec01be000b1..b977eb11677 100644
--- a/source/gu/cui/messages.po
+++ b/source/gu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2572,10 +2572,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index 70344b6a38b..25efc5c758b 100644
--- a/source/gu/helpcontent2/source/text/shared/00.po
+++ b/source/gu/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index aed8226362a..a735502e1c1 100644
--- a/source/gu/helpcontent2/source/text/shared/01.po
+++ b/source/gu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-30 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Gujarati <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/gu/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "આયોજક"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index 1d0fb6a017e..d41a28b9ca5 100644
--- a/source/gu/helpcontent2/source/text/shared/optionen.po
+++ b/source/gu/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/gu/helpcontent2/source/text/swriter/01.po b/source/gu/helpcontent2/source/text/swriter/01.po
index 92d2918d180..52dfcaa29c5 100644
--- a/source/gu/helpcontent2/source/text/swriter/01.po
+++ b/source/gu/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/gu/helpcontent2/source/text/swriter/guide.po b/source/gu/helpcontent2/source/text/swriter/guide.po
index 4b788149c97..15558090f3d 100644
--- a/source/gu/helpcontent2/source/text/swriter/guide.po
+++ b/source/gu/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click \"Right Page\" and choose <emph>Modify</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click \"Right Page\" and choose <emph>Modify</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/gu/sc/messages.po b/source/gu/sc/messages.po
index 3d39b1e511f..719a187291d 100644
--- a/source/gu/sc/messages.po
+++ b/source/gu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14549,14 +14549,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14783,14 +14784,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23669,91 +23671,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24366,104 +24368,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ક્રિનારી નથી"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "રૂપરેખા - કિનારીઓ"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24502,49 +24406,49 @@ msgid "Format Cells"
msgstr "બંધારણ સેલો"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "સંખ્યાઓ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ફોન્ટ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ફોન્ટ અસરો"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ગોઠવણી"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "એશિયાઈ ટાઈપોગ્રાફી"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "પાશ્વભાગ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ખાનાનું રક્ષણ"
@@ -28750,43 +28654,43 @@ msgid "Page Style"
msgstr "પાનાં શૈલી"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "પાનું"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "પાશ્વભાગ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "હેડર"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ફુટર"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "શીટ"
@@ -28828,55 +28732,55 @@ msgid "Cell Style"
msgstr "ખાનાની શૈલી"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "સંખ્યાઓ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ફોન્ટ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ફોન્ટની અસરો"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ગોઠવણી"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "એશિયાઈ ટાઈપોગ્રાફી"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "પાશ્વભાગ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ખાનાનું રક્ષણ"
diff --git a/source/gu/sd/messages.po b/source/gu/sd/messages.po
index 4f354e8123b..984f273ada5 100644
--- a/source/gu/sd/messages.po
+++ b/source/gu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9774,98 +9774,98 @@ msgid "_Standard"
msgstr "મૂળભૂત (_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "લીટી"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "વિસ્તાર"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "પડછાયો પાડી રહ્યા છે"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "પારદર્શકતા"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ફોન્ટ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ફોન્ટ અસર"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "હાંસિયાઓ & જગ્યાઓ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "લખાણ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "લખાણ એનીમેશન"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "માપ આપી રહ્યા છે"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "જોડનાર"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "કતારબંધ ગોઠવણી"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "એશિયાઈ ટાઈપોગ્રાફી"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ટેબ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/gu/sfx2/messages.po b/source/gu/sfx2/messages.po
index 1b970b5eb4e..09bcd9dc20b 100644
--- a/source/gu/sfx2/messages.po
+++ b/source/gu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1631,376 +1631,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "દૂર કરો"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/gu/svtools/messages.po b/source/gu/svtools/messages.po
index 0d29569c6c6..a111dc375f1 100644
--- a/source/gu/svtools/messages.po
+++ b/source/gu/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2394,10 +2394,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) નું નેટવર્ક જોડાણ અધિષ્ઠાપિત કરી શક્યા નહિં."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2405,7 +2413,7 @@ msgstr ""
"સર્વર ભૂલ સંદેશો: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2415,37 +2423,37 @@ msgstr ""
"સર્વર ભૂલ સંદેશો: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "સામાન્ય ઇન્ટરનેટ ભૂલ ઉદ્ભવી."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "અરજી કરેલ ઇન્ટરનેટ માહિતી એ કેશમાં ઉપલબ્ધ નથી અને તે ઓનલાઈન સ્થિતિ તરીકે પરિવહન કરી શકાતી નથી જે સક્રિય પણ થયેલ નથી."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "સમાવિષ્ટ ભાગો બનાવી શકાયા નહિ."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "લક્ષ ફાઈલ સિસ્ટમ માટે ફાઈલનું નામ ખૂબ લાંબુ છે."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ઇનપુટ સિન્ટૅક્સ એ અયોગ્ય છે."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2455,19 +2463,19 @@ msgstr ""
"મહેરબાની કરીને દસ્તાવેજને %PRODUCTNAME %PRODUCTVERSION ફાઈલ બંધારણમાં સંગ્રહો નહિં."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "દસ્તાવેજોની મહત્તમ સંખ્યા કે જે એક જ સમયે ખોલી શકાય છે તે પહોંચી ગયા છે. તમારે એક અથવા ઘણા દસ્તાવેજો બંધ કરવાની જરૂર છે તમે નવું દસ્તાવેજ ખોલી શકો તે પહેલાં."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "બેકઅપની નકલ ને બનાવી શકાતી નથી."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2487,43 +2495,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "અયોગ્ય માહિતીની લંબાઈ."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "કાર્ય શક્ય નથી: પથ વર્તમાન ડિરેક્ટરી સમાવે છે."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "કાર્ય શક્ય નથી: ઉપકરણ (ડ્રાઈવ) સમાન નથી."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ઉપકરણ (ડ્રાઈવ) તૈયાર નથી."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "કાર્ય શક્ય નથી: ન લખી શકાય તેવુ."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2533,47 +2541,47 @@ msgstr ""
"વહેંચવાની સ્થિતિને પહેલાં નિષ્ક્રિય કરો."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "સામાન્ય OLE ભૂલ."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "વસ્તુની વર્તમાન સ્થિતિમાં ક્રિયા ચલાવી શકાતી નથી."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ઓબ્જેક્ટ કોઈપણ ક્રિયાઓને આધાર આપતો નથી."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ઓબ્જેક્ટ આ ક્રિયાને આધાર આપતો નથી."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/gu/svx/messages.po b/source/gu/svx/messages.po
index b0ba5eadadf..657e15a7ea0 100644
--- a/source/gu/svx/messages.po
+++ b/source/gu/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Gujarati <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gu/>\n"
@@ -10218,134 +10218,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10354,19 +10404,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index 9a02a026add..2bf91b75095 100644
--- a/source/gu/sw/messages.po
+++ b/source/gu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3065,9 +3065,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10817,38 +10817,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16719,55 +16725,55 @@ msgid "Frame"
msgstr "ફ્રેમ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "વિકલ્પો"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "લપેટો"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "હાઇપરલિંક"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "વિસ્તાર"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "પારદર્શકતા"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "સ્તંભો"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "મેક્રો"
@@ -29423,44 +29429,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ફોન્ટ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ફોન્ટ અસરો"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "સ્થાન"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "એશિયન લેઆઉટ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "પ્રકાશિત"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "કિનારીઓ"
@@ -29472,85 +29478,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "બાહ્ય કિનારી"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ઈમેજ"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "સ્થાન"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "વૈવિધ્યપૂર્ણ"
@@ -29562,110 +29568,110 @@ msgid "Paragraph Style"
msgstr "ફકરાની શૈલી"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "હાંસિયાઓ & જગ્યાઓ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "કતારબંધ ગોઠવણી"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "લખાણ પ્રવાહ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "એશિયન છાપકામ"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ફોન્ટ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ફોન્ટ અસરો"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "સ્થાન"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "એશિયન લેઆઉટ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "પ્રકાશિત"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ટેબ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "મોટા અક્ષરને પડતા મૂકો"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "વિસ્તાર"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "પારદર્શકતા"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "શરત"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29677,55 +29683,55 @@ msgid "Frame Style"
msgstr "ચોકઠાની શૈલી"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "પ્રકાર"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "વિકલ્પો"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "લપેટો"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "વિસ્તાર"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "પારદર્શકતા"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "સ્તંભો"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "મેક્રો"
@@ -29743,61 +29749,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "પાનું"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "વિસ્તાર"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "પારદર્શકતા"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "હેડર"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ફૂટર"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "કિનારીઓ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "સ્તંભો"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ફુટનોંધ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "લખાણ જાળી"
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index b4df77f7633..e17b88422cc 100644
--- a/source/gug/cui/messages.po
+++ b/source/gug/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/gug/>\n"
@@ -2558,10 +2558,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/gug/helpcontent2/source/text/sbasic/python.po b/source/gug/helpcontent2/source/text/sbasic/python.po
index 3fa6bb0887a..2213b19216c 100644
--- a/source/gug/helpcontent2/source/text/sbasic/python.po
+++ b/source/gug/helpcontent2/source/text/sbasic/python.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-11 11:52+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicpython/es/>\n"
"Language: es\n"
@@ -1751,7 +1751,7 @@ msgctxt ""
"N0478\n"
"help.text"
msgid "This Python example exposes a local XSCRIPTCONTEXT variable to an imported module:"
-msgstr ""
+msgstr "Este ejemplo de Python expone una variable local, XSCRIPTCONTEXT, a un módulo importado:"
#. uwiPp
#: python_import.xhp
@@ -1760,7 +1760,7 @@ msgctxt ""
"N0483\n"
"help.text"
msgid "share_lib = Session.SharedPythonScripts() # Shared scripts location"
-msgstr ""
+msgstr "share_lib = Session.SharedPythonScripts() # Ubicación de las secuencias compartidas"
#. HugAN
#: python_import.xhp
@@ -3632,7 +3632,7 @@ msgctxt ""
"N0121\n"
"help.text"
msgid "Using a Basic macro"
-msgstr ""
+msgstr "Utilizar una macro BASIC"
#. nHPAA
#: python_shell.xhp
@@ -3650,7 +3650,7 @@ msgctxt ""
"N0127\n"
"help.text"
msgid "Using a Python macro"
-msgstr ""
+msgstr "Utilizar una macro Python"
#. 3FCJH
#: python_shell.xhp
@@ -3668,7 +3668,7 @@ msgctxt ""
"N0142\n"
"help.text"
msgid "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Python Interactive Console</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/python/python_interactive_console.png\" id=\"N0143\"><alt id=\"N0143\">Consola interactiva de Python</alt></image>"
#. 8Ei5d
#: python_shell.xhp
diff --git a/source/gug/helpcontent2/source/text/sbasic/shared/03.po b/source/gug/helpcontent2/source/text/sbasic/shared/03.po
index 0ed5106de83..7efb0c49583 100644
--- a/source/gug/helpcontent2/source/text/sbasic/shared/03.po
+++ b/source/gug/helpcontent2/source/text/sbasic/shared/03.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-03-11 16:41+0100\n"
-"PO-Revision-Date: 2024-06-04 09:45+0000\n"
-"Last-Translator: Verenice Martinez Sosa <vereuacm@gmail.com>\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
+"Last-Translator: Dante Espejel <dante.misael.espejel@estudiante.uacm.edu.mx>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared03/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -21733,7 +21733,7 @@ msgctxt ""
"par_id681622028653480\n"
"help.text"
msgid "Previous examples translate in Python as:"
-msgstr ""
+msgstr "Los ejemplos anteriores se traducen en Python como:"
#. ebc4K
#: sf_form.xhp
@@ -21751,7 +21751,7 @@ msgctxt ""
"pyc_id511622808538351\n"
"help.text"
msgid "# Or, alternatively, to access the form by its index ..."
-msgstr ""
+msgstr "# O, alternativamente, para acceder al formulario por su índice ..."
#. QFFzk
#: sf_form.xhp
diff --git a/source/gug/helpcontent2/source/text/scalc/01.po b/source/gug/helpcontent2/source/text/scalc/01.po
index 39e28fb78aa..b5a8a95f58a 100644
--- a/source/gug/helpcontent2/source/text/scalc/01.po
+++ b/source/gug/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2024-06-27 13:51+0000\n"
+"Last-Translator: Dante Espejel <dante.misael.espejel@estudiante.uacm.edu.mx>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564682427.000000\n"
#. sZfWF
@@ -20384,7 +20384,7 @@ msgctxt ""
"par_id3156361\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_DEZIMAL\">Converts text that represents a number in a <link href=\"text/shared/00/00000005.xhp#number_system\">numeral system</link> with the given base radix to a positive integer.</ahelp> The radix must be in the range 2 to 36. Spaces and tabs are ignored. The <emph>Text</emph> field is not case-sensitive."
-msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Convierte el texto que representa un número en un <link href=\"text/shared/00/00000005.xhp#number_system\">sistema numérico</link> con la base que dada a un entero positivo.</ahelp> La base debe estar en el rango de 2 a 36. Se ignoran los espacios y los tabuladores. El campo <emph>Texto</emph> no distingue entre mayúsculas y minúsculas."
+msgstr "<ahelp hid=\"HID_FUNC_DEZIMAL\">Convierte el texto que representa un número en un <link href=\"text/shared/00/00000005.xhp#number_system\">sistema numérico</link> con la base que se dé a un entero positivo.</ahelp> La base debe estar en el intervalo de 2 a 36. Se ignoran los espacios y los tabuladores. El campo <emph>Texto</emph> no distingue entre mayúsculas y minúsculas."
#. Nt52d
#: 04060110.xhp
@@ -25280,7 +25280,7 @@ msgctxt ""
"par_id3156294\n"
"help.text"
msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes place between 0 and the lower limit."
-msgstr "<emph>LímiteSuperior</emph> es opcional. Es el límite superior de la integral. Si falta este valor, el cálculo se realiza entre 0 y el límite inferior."
+msgstr "<emph>Límite superior</emph> es opcional. Es el límite superior de la integral. Si falta este valor, el cálculo se realiza entre 0 y el límite inferior."
#. HyxLa
#: 04060115.xhp
@@ -51380,7 +51380,7 @@ msgctxt ""
"par_idN106F7\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for filters and column or row fields only.</ahelp>"
-msgstr "<ahelp hid=\".\">Abre el<link href=\"text/scalc/01/12090106.xhp\">Opciones del campo de datos</link>cuadro de diálogo. El<emph>Opciones</emph>el botón es visible sólo para los filtros y los campos de columna o fila.</ahelp>"
+msgstr "<ahelp hid=\".\">Abre el cuadro de diálogo <link href=\"text/scalc/01/12090106.xhp\">Opciones de campos de datos</link>. El botón <emph>Opciones</emph> sólo es visible para los filtros y los campos de columna o fila.</ahelp>"
#. pTDtv
#: 12090105.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/00.po b/source/gug/helpcontent2/source/text/shared/00.po
index 249cef430ee..9f3007d979e 100644
--- a/source/gug/helpcontent2/source/text/shared/00.po
+++ b/source/gug/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-16 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/es/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Restablecer valores heredados"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vaya a <emph>Formato ▸ Celdas ▸</emph> pestaña <emph>Fondo</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Vaya a <menuitem>Formato ▸ Estilo de página ▸</menuitem> pestaña <menuitem>Organizador</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Vaya a <menuitem>Estilos ▸ Editar estilo ▸</menuitem> pestaña <menuitem>Organizador</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Vaya a <menuitem>Formato ▸ Estilos ▸ Editar estilo ▸</menuitem> pestaña <menuitem>Organizador</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Vaya a <menuitem>Diapositiva ▸ Propiedades ▸</menuitem> pestaña <menuitem>Página</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/gug/helpcontent2/source/text/shared/01.po b/source/gug/helpcontent2/source/text/shared/01.po
index 4e0d5f0bf0a..9d23d36e7ed 100644
--- a/source/gug/helpcontent2/source/text/shared/01.po
+++ b/source/gug/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563740777.000000\n"
#. 3u8hR
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Devuelve el gráfico seleccionado a su tamaño original.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizador"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organizar; estilos</bookmark_value><bookmark_value>estilos; organizar</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizador</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/gug/helpcontent2/source/text/shared/optionen.po b/source/gug/helpcontent2/source/text/shared/optionen.po
index 7e578864d30..859d40fbaa2 100644
--- a/source/gug/helpcontent2/source/text/shared/optionen.po
+++ b/source/gug/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-11 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/es/>\n"
"Language: es\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Indicador de comentarios</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Indicador de fórmulas</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Puntero del sistema</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objetos/imágenes"
#. DMhEf
#: 01060100.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/01.po b/source/gug/helpcontent2/source/text/swriter/01.po
index 9cd310c0035..d860abc9256 100644
--- a/source/gug/helpcontent2/source/text/swriter/01.po
+++ b/source/gug/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 07:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235661.000000\n"
#. sZfWF
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Utilice la sección <emph>Contiene</emph> del Organizador para ver las propiedades del estilo de carácter."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/gug/helpcontent2/source/text/swriter/guide.po b/source/gug/helpcontent2/source/text/swriter/guide.po
index 3cc0b2ddc48..35a42a2f23d 100644
--- a/source/gug/helpcontent2/source/text/swriter/guide.po
+++ b/source/gug/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 09:45+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Spanish <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/es/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1566235756.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "En la lista de estilos de página, pulse con el botón secundario del ratón sobre «Página izquierda» y seleccione <emph>Modificar</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Pulse en la pestaña <emph>Organizador</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Puede usar cabeceras y pies diferentes en varias páginas del documento, siempre y cuando las páginas usen estilos diferentes. $[officename] proporciona varios estilos de páginas predefinidos, como <emph>Primera página</emph>, <emph>Página izquierda</emph> y <emph>Página derecha</emph>. También se puede crear un estilo de página personalizado."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "En la lista de estilos de página, pulse con el botón secundario del ratón sobre «Página derecha» y seleccione <emph>Modificar</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En el cuadro de diálogo <item type=\"menuitem\">Estilos de página</item>, pulse en la pestaña <item type=\"menuitem\">Cabecera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\">Activar cabecera</item> y pulse en la pestaña <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "En el cuadro <item type=\"menuitem\">Estilo siguiente</item>, seleccione «Página izquierda»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "En la ventana <emph>Estilos</emph>, pulse con el botón secundario del ratón en la opción «Página izquierda» de la lista de estilos de página y, a continuación, pulse en <emph>Modificar</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "En el cuadro de diálogo <item type=\"menuitem\">Estilos de página</item>, pulse en la pestaña <item type=\"menuitem\">Cabecera</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Seleccione <item type=\"menuitem\">Activar cabecera</item> y pulse en la pestaña <item type=\"menuitem\">Organizador</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "En el cuadro <item type=\"menuitem\">Estilo siguiente</item>, seleccione «Página derecha»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la lista de estilos de página, con el botón secundario del ratón pulse en un elemento y elija <emph>Nuevo</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "En la pestaña <emph>Organizador</emph>, asigne un nombre al estilo de página en el cuadro <emph>Nombre</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Seleccione <emph>Salto de página</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Seleccione en el cuadro <item type=\"menuitem\">Estilo</item> un estilo de página que utilice el fondo de la página."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Se inserta un <emph>salto de página automático</emph> al final de una página cuyo estilo de página tiene un valor diferente para el «estilo siguiente»."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Pulse con el botón secundario del ratón sobre un estilo de página y elija <emph>Nuevo</emph>. El nuevo estilo de página obtendrá todas las propiedades del estilo de página seleccionado."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "En el cuadro <emph>Nombre</emph> de la pestaña <emph>Organizador</emph>, asigne un nombre al estilo de página; por ejemplo, «Mi paisaje»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Estilos de una sola página"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Es posible hacer que un estilo de página abarque solamente una página. Un ejemplo de esta clase de estilos es «Primera página». Esta propiedad se define al establecer otro estilo de página como «estilo siguiente» en la pestaña <menuitem>Formato ▸ Estilo de página ▸ Organizador</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Intervalo de un estilo de página definido manualmente"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "En la lista de estilos de página, con el botón secundario del ratón pulse en un elemento y elija <emph>Nuevo</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "En la pestaña <emph>Organizador</emph>, escriba un nombre en el cuadro <emph>Nombre</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index a24a6f7cd1d..0b106e1783e 100644
--- a/source/gug/sc/messages.po
+++ b/source/gug/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-16 15:23+0000\n"
"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14523,14 +14523,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14757,14 +14758,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23560,91 +23562,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24244,102 +24246,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Borde'ỹ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Opavave Bordes"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordes Okápegua"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Mba'yru Pyrusu Rembe"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tembe michĩvéva anambusu"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Mokõi Tembe Michĩvéva"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Tembe michĩve, tuichave ha iñanambusuvéva"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Tembe michĩve, tuichave ha imokõiva"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Tembe asugua"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Tembe Akatuagua"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Tembe yvatevegua"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Tembe Michĩvéva"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Ijykéva tembe peve"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Ijykéva yvy gotyo tembe peve"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Tembe yvatevegua ha michĩvéva"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Opaha asu ha akatuagua"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24377,49 +24283,49 @@ msgid "Format Cells"
msgstr "Formatear Koty'i kuéra"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Papapy kuéra"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Letra Háicha"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos Tipográficos"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografía Asiática"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordes"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Hapykuegua"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Ñepytyvõ Koty'i"
@@ -28539,43 +28445,43 @@ msgid "Page Style"
msgstr "Estilo Rogue"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Togue"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Hapykuegua"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Omoakã"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Py roguégui"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Togue"
@@ -28617,55 +28523,55 @@ msgid "Cell Style"
msgstr "Estilo Koty'i"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Papapy kuéra"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Letra Háicha"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía Asiática"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Hapykuegua"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Ñepytyvõ Koty'ígui"
diff --git a/source/gug/sd/messages.po b/source/gug/sd/messages.po
index 90f8ff9aab2..36aba193a19 100644
--- a/source/gug/sd/messages.po
+++ b/source/gug/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-02 16:44+0000\n"
"Last-Translator: Porfiria Orrego <porrego9@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9620,97 +9620,97 @@ msgid "_Standard"
msgstr "_Estándar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Línea"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Área"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Kuarahy'ã kuéra"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Tesakã"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Letra Háicha"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Sangrías ha Pa'ũ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Moñe'ẽrã"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animación Moñe'ẽrãgui"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensionamiento"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Conector"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alineación"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía asiática"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulaciones"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Sa'y Hi'ári"
diff --git a/source/gug/sfx2/messages.po b/source/gug/sfx2/messages.po
index f8bf30c7d57..063e95e1a4b 100644
--- a/source/gug/sfx2/messages.po
+++ b/source/gug/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1583,376 +1583,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Nohẽ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/gug/svtools/messages.po b/source/gug/svtools/messages.po
index f15b464dcfa..b62eadb2efb 100644
--- a/source/gug/svtools/messages.po
+++ b/source/gug/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2403,16 +2403,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2420,38 +2428,38 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Mba'e nikatúi ojejapo."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2459,19 +2467,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2484,43 +2492,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2528,44 +2536,44 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Jejavy General de OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/gug/svx/messages.po b/source/gug/svx/messages.po
index 1b82721ac60..1a0ae2d4677 100644
--- a/source/gug/svx/messages.po
+++ b/source/gug/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-09-01 16:20+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: Guarani (Paraguayan) <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/gug/>\n"
@@ -10254,134 +10254,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10390,19 +10440,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index 0b4c2f71e30..e15dc588d45 100644
--- a/source/gug/sw/messages.po
+++ b/source/gug/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-08-19 12:02+0200\n"
"Last-Translator: pastora <pastora.leguizamon@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3030,9 +3030,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10638,38 +10638,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16478,55 +16484,55 @@ msgid "Frame"
msgstr "Marco"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcionáke"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Ojeahusta"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperenlace"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordes"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Área"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Tesakã"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Columnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28961,43 +28967,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Letra Háicha"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Ñemohenda"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Disposición Asiática"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Sa'y Hi'ári"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordes"
@@ -29009,85 +29015,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Trazado"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Ta'anga"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Ñemohenda"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Ñemomba'e"
@@ -29099,109 +29105,109 @@ msgid "Paragraph Style"
msgstr "Estilo de Párrafo"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Sangrías ha Pa'ũ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alineación"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Syry Moñe'ẽrã"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografía Asiática"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Letra Háicha"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efectos tipográficos"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Ñemohenda"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Disposición Asiática"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Sa'y Hi'ári"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuladores"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Letras capitulares"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Área"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Tesakã"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordes"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Teko"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29213,55 +29219,55 @@ msgid "Frame Style"
msgstr "Estilo del Marco"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcionáke"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Ojeahusta"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Área"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Tesakã"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordes"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Columnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29279,61 +29285,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Togue"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Área"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Tesakã"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Omoakã"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Py roguégui"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordes"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Columnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Cuadrícula Moñe'ẽrãgui"
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index b31b6ce297c..927acd65bb7 100644
--- a/source/he/cui/messages.po
+++ b/source/he/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-13 16:36+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/he/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 53185f126dd..2af22181bcb 100644
--- a/source/he/helpcontent2/source/text/shared/00.po
+++ b/source/he/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-06-09 21:11+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://weblate.documentfoundation.org/projects/libo_help-master/textshared00/he/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index d018c5dfcab..e90fa37e32e 100644
--- a/source/he/helpcontent2/source/text/shared/01.po
+++ b/source/he/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-30 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/he/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizer"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\">פתיחה</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index 39b9dd43ee8..9dd4f252171 100644
--- a/source/he/helpcontent2/source/text/shared/optionen.po
+++ b/source/he/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/he/helpcontent2/source/text/swriter/01.po b/source/he/helpcontent2/source/text/swriter/01.po
index 2eacd61e350..2dd677816d2 100644
--- a/source/he/helpcontent2/source/text/swriter/01.po
+++ b/source/he/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/he/helpcontent2/source/text/swriter/guide.po b/source/he/helpcontent2/source/text/swriter/guide.po
index 4a2e589df03..ae56cf9d78c 100644
--- a/source/he/helpcontent2/source/text/swriter/guide.po
+++ b/source/he/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "In the list of page styles, right-click \"Left Page\" and choose \\<emph\\>Modify\\</emph\\>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Click the \\<emph\\>Organizer\\</emph\\> tab."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as \\<emph\\>First page\\</emph\\>, \\<emph\\>Left page\\</emph\\> and \\<emph\\>Right page\\</emph\\>, or you can create a custom page style."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Right-click \"Right Page\" in the list of page styles and choose \\<emph\\>Modify\\</emph\\>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the \\<emph\\>Page Styles\\</emph\\> dialog, click the \\<emph\\>Header \\</emph\\>tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select\\<emph\\> Header on\\</emph\\> and click the \\<emph\\>Organizer\\</emph\\> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "In the \\<emph\\>Next Style \\</emph\\>box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "In the \\<emph\\>Page Styles\\</emph\\> dialog, click the \\<emph\\>Header \\</emph\\>tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Select\\<emph\\> Header on\\</emph\\> and click the \\<emph\\>Organizer\\</emph\\> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "In the \\<emph\\>Next Style \\</emph\\>box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose \\<emph\\>New\\</emph\\>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "On the \\<emph\\>Organizer\\</emph\\> tab page, type a name for the page style in the \\<emph\\>Name\\</emph\\> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Select \\<emph\\>Page break\\</emph\\>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "In the \\<emph\\>Style \\</emph\\>box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "An \\<emph\\>automatic page break\\</emph\\> appears at the end of a page when the Page Style has a different \"next style\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Right-click, and choose \\<emph\\>New\\</emph\\>."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "On the \\<emph\\>Organizer\\</emph\\> tab page, type a name for the page style in the \\<emph\\>Name\\</emph\\> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose \\<emph\\>New\\</emph\\>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "On the \\<emph\\>Organizer\\</emph\\> tab, type a name in the \\<emph\\>Name\\</emph\\> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/he/sc/messages.po b/source/he/sc/messages.po
index 463c069e632..e51a777412e 100644
--- a/source/he/sc/messages.po
+++ b/source/he/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-28 12:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/he/>\n"
@@ -14389,14 +14389,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14622,14 +14623,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23548,91 +23550,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24252,105 +24254,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ללא גבול"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "קו מתאר - מסגרת"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-#, fuzzy
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "עמודים שמאליים וימניים"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24388,49 +24291,49 @@ msgid "Format Cells"
msgstr "עיצוב תאים"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "מספרים"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "גופן"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "אפקטי גופנים"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "יישור"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "טיפוגרפית המזרח הרחוק"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "גבולות"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "רקע"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "הגנת תא"
@@ -28637,43 +28540,43 @@ msgid "Page Style"
msgstr "סגנון עמוד"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "עמוד"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "גבולות"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "רקע"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "כותרת עליונה"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "כותרת תחתונה"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "גיליון"
@@ -28717,55 +28620,55 @@ msgid "Cell Style"
msgstr "סגנון תא"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "מספרים"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "גופן"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "אפקטי גופנים"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "יישור"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "טיפוגרפית המזרח הרחוק"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "גבולות"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "רקע"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "הגנת תא"
diff --git a/source/he/sd/messages.po b/source/he/sd/messages.po
index 44cbcc32fdd..ed8fb5837c4 100644
--- a/source/he/sd/messages.po
+++ b/source/he/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-28 12:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/he/>\n"
@@ -9583,99 +9583,99 @@ msgid "_Standard"
msgstr "סטנדרטי"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "שורה"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "שטח"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "הצללה"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "שקיפות"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "גופן"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "אפקטים של גופנים"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "הזחות וריווח"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "טקסט"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "הנפשת טקסט"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "קו ממד"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "מחבר"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "יישור"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "טיפוגרפיה אסייתית"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "לשוניות"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "הדגשה"
diff --git a/source/he/sfx2/messages.po b/source/he/sfx2/messages.po
index 5dc88592964..58f4de8c210 100644
--- a/source/he/sfx2/messages.po
+++ b/source/he/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-05 01:45+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/he/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "תסריטי המאקרו מושבתים עקב הגדרות אבטחת תסריטי מאקרו."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "תסריטי מאקרו חתומים, אך המסמך (שמכיל אירועי מסמך) לא חתום."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "הצגת תסריטי מאקרו"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "הצגת אפשרויות אבטחה"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "הצגת אירועים"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "אלגנטי אפור"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "כוורת"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "עקומה כחולה"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "שרטוט תכנית"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "ממתק"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "רעיון צהוב"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "דנ״א"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "מיקוד"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "ציפור חורש"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "מרעננים"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "השראה"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "אורות"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "חירות מתגברת"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "מטרופוליס"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "כחול של חצות"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "איור של טבע"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "עיפרון"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "פסנתר"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "תיק מסמכים"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "התקדמות"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "שקיעה"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "מיושן"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "חי"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "קורות חיים"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "רזומה"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ברירת מחדל"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "מודרני"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "מכתב עסקי מודרני עם כתב בלתי מעוטר"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "מכתב עסקי מודרני עם כתב מעוטר"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "כרטיס ביקור עם לוגו"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "פשוט"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "ניהול תהליכים עסקיים"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "סינית מסורתית רגיל"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "יפנית רגילה"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "הסרה"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "לנקות הכול"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "אורך ססמה"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "יש ללחוץ לחיצה %{key} כדי לפתוח את ההיפר־קישור: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "לחיצה לפתיחת הקישור: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(בשימוש על ידי: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "מסמך"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "גיליון נתונים"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "מצגת"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "ציור"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "בשימוש לאחרונה"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "אין תווים אחרונים"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "איפוס כל תבניות ~ברירת המחדל"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "איפוס ברירת המחדל של מסמך ~טקסט"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "איפוס ברירת המחדל של ~גיליון נתונים"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "איפוס ברירת המחדל של מ~צגת"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "איפוס ברירת המחדל של ~ציור"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "יי~בוא"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "ה~רחבות"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "שינוי שם"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "שינוי שם קטגוריה"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "קטגוריה חדשה"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "חוקר עצמי UNO"
diff --git a/source/he/svtools/messages.po b/source/he/svtools/messages.po
index 4c96f811ea9..c8b9a217ed1 100644
--- a/source/he/svtools/messages.po
+++ b/source/he/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-05 01:45+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/he/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "לא ניתן ליצור חיבור אינטרנט עם ‪$(ARG1)‬‏‏."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"הודעת השגיאה של השרת: ‏‪$(ARG1)‬‏‏."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"הודעת השגיאה של השרת: ‏‪$(ARG1)‬‏‏."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "אירעה שגיאת אינטרנט כללית."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "נתוני האינטרנט המבוקשים אינם זמינים בזיכרון המטמון ולא זמינים להעברה כי המצב המקוון לא הופעל."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "לא ניתן ליצור את התכנים.‏"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "שם הקובץ ארוך מידי למערכת הקבצים של המטרה.‏"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "תחביר הקלט לא חוקי.‏"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"נא לשמור את המסמך בצורת קובץ ‏%PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "לא ניתן לפתוח מסמך נוסף כי המספר המירבי של מסמכים פתוחים כבר הושג. על מנת לפתוח מסמך נוסף, יש לסגור קודם מסמך פתוח."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "יצירת עותק הגיבוי נכשלה."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "אורך הנתון אינו חוקי."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "אין אפשרות לבצע את התפקוד: הנתיב כולל את הספריה הנוכחית."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "אין אפשרות לבצע את התפקיד: ההתקנים לא זהים."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ההתקן לא מוכן."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "סכום בדיקה שגוי."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "אין אפשרות לבצע את התפקוד: הכתיבה חסומה."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"יש לכבות את אפשרות השיתוף לפני כן."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "נמצאה שגיאת תצורת קובץ במיקום $(ARG1)(שורה,עמודה)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "מסנן סוגי קבצים אלה מושבת בהגדרות. נא ליצור קשר עם הנהלת המערכת שלך."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "שגיאת ‏‪OLE‬‏ כללית."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "לא ניתן לבצע את הפעולה במצב הנוכחי של העצם.‏"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "העצם אינו תומך בשום פעולה."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "העצם לא תומך בפעולה זו."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) בהפעלת עצם"
diff --git a/source/he/svx/messages.po b/source/he/svx/messages.po
index 71d82f43ef3..6059f3f52ba 100644
--- a/source/he/svx/messages.po
+++ b/source/he/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-27 13:30+0000\n"
"Last-Translator: Martin <martin_zone-service258@yahoo.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/he/>\n"
@@ -10195,134 +10195,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10331,19 +10381,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 9e32bfa6a4a..e16961dc75f 100644
--- a/source/he/sw/messages.po
+++ b/source/he/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-04-11 01:45+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/he/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "תוכן רשימה 5"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "כותרת עליונה ותחתונה"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10687,38 +10687,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16600,56 +16606,56 @@ msgid "Frame"
msgstr "מסגרת"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "אפשרויות"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "גלישה"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "קישור"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "גבולות"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "שטח"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "שקיפות"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "עמודות"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29282,43 +29288,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "גופן"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "אפקטי גופנים"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "מיקום"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "מתווה אסיאתי"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "הדגשה"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "גבולות"
@@ -29330,85 +29336,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "מתאר"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "תמונה"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "מיקום"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "התאמה אישית"
@@ -29420,110 +29426,110 @@ msgid "Paragraph Style"
msgstr "סגנון פסקה"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "הזחה וריווח"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "יישור"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "זרימת טקסט"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "טיפוגרפיה אסייתית"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "גופן"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "אפקטי גופנים"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "מיקום"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "מתווה אסיאתי"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "הדגשה"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "טאבים"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "אות פתיח"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "שטח"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "שקיפות"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "גבולות"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "מצב"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29535,56 +29541,56 @@ msgid "Frame Style"
msgstr "סגנון מסגרת"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "סוג"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "אפשרויות"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "גלישה"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "שטח"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "שקיפות"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "גבולות"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "עמודות"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -29604,61 +29610,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "עמוד"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "שטח"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "שקיפות"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "כותרת עליונה"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "כותרת תחתונה"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "גבולות"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "עמודות"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "הערת שוליים"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index c8098299287..c482ae4b770 100644
--- a/source/hi/cui/messages.po
+++ b/source/hi/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2579,10 +2579,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index c21c7b745b4..21e248f15b8 100644
--- a/source/hi/helpcontent2/source/text/shared/00.po
+++ b/source/hi/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index 40afef4a686..a5eb7636e7f 100644
--- a/source/hi/helpcontent2/source/text/shared/01.po
+++ b/source/hi/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "प्रबंधक"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index 8142cc03d6b..fa8374fee2a 100644
--- a/source/hi/helpcontent2/source/text/shared/optionen.po
+++ b/source/hi/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/hi/helpcontent2/source/text/swriter/01.po b/source/hi/helpcontent2/source/text/swriter/01.po
index 3299b52d66d..687ebfba1e6 100644
--- a/source/hi/helpcontent2/source/text/swriter/01.po
+++ b/source/hi/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/hi/helpcontent2/source/text/swriter/guide.po b/source/hi/helpcontent2/source/text/swriter/guide.po
index 5d6d1e06c32..4a890613b47 100644
--- a/source/hi/helpcontent2/source/text/swriter/guide.po
+++ b/source/hi/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,13 +4282,13 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
msgstr ""
#. fYHA2
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/hi/sc/messages.po b/source/hi/sc/messages.po
index d7f499c0aa5..55468e89762 100644
--- a/source/hi/sc/messages.po
+++ b/source/hi/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14473,14 +14473,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14706,14 +14707,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23626,91 +23628,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24330,104 +24332,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "कोई किनारा नहीं"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "ख़ाका - किनारा"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24465,49 +24369,49 @@ msgid "Format Cells"
msgstr "कोष्ठ संरूपित करें"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "संख्या"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "किनारा"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "कोष्ठ सुरक्षा"
@@ -28731,43 +28635,43 @@ msgid "Page Style"
msgstr "पृष्ठ शैली"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "पृष्ठ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "किनारा"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "शीर्षिका"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "पादिका"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "शीट"
@@ -28811,55 +28715,55 @@ msgid "Cell Style"
msgstr "कोष्ठ शैली"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "संख्या"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "किनारा"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "कोष्ठ सुरक्षा"
diff --git a/source/hi/sd/messages.po b/source/hi/sd/messages.po
index 534b3ba6b93..87cb46299bc 100644
--- a/source/hi/sd/messages.po
+++ b/source/hi/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9806,99 +9806,99 @@ msgid "_Standard"
msgstr "मानक"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "रेखा"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "छायांकन"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पारदर्शिता"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "हाशिया व अंतरण"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "पाठ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "पाठ संजीवन"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "आयाम रेखा"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "कनेक्टर"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "टैब्स"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/hi/sfx2/messages.po b/source/hi/sfx2/messages.po
index 2c6268846e6..ef898993820 100644
--- a/source/hi/sfx2/messages.po
+++ b/source/hi/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1621,376 +1621,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाएँ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/hi/svtools/messages.po b/source/hi/svtools/messages.po
index 78e53c5370d..1a32e69732a 100644
--- a/source/hi/svtools/messages.po
+++ b/source/hi/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2390,10 +2390,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) में इंटरनेट कनेक्शन नहीं बनाया जा सका."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2401,7 +2409,7 @@ msgstr ""
".सर्वर त्रुटि संदेश: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2411,37 +2419,37 @@ msgstr ""
"सर्वर त्रुटि संदेश: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "सामान्य इंटरनेट त्रुटि घटित हुई."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "निवेदित इंटरनेट आँकड़ा कैश में नहीं मौजूद है और ऑनलाइन मोड के रूप में नहीं भेजी जा सकती है क्योंकि ऑनलाइन मोड सक्रिय नहीं किया जा सका."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "सामग्री नहीं बनाई जा सकी."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "फ़ाइल नाम लक्ष्य फ़ाइल तंत्र के लिए बहुत बड़ा है."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "इनपुट वाक्यरचना अवैध है."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2451,19 +2459,19 @@ msgstr ""
"कृपया दस्तावेज़ %PRODUCTNAME %PRODUCTVERSION फ़ाइल प्रारूप में सहेजें."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "दस्तावेज़ की अधिकतम संख्या जो कि समान समय पहुंचने पर खोली नहीं जा सकती है. आपको एक या अधिक दस्तावेज़ को बंद करने की जरूरत है इससे पहले कि आप एक नया दस्तावेज़ खोल सकें."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "बैकअप नक़ल बना नहीं सका."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2483,43 +2491,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "अवैध डाटा विस्तार ।"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "प्रकार्य संभव नहीं है: मार्ग में वर्तमान निर्देशिका सम्मिलित है."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "प्रकार्य संभव नहीं: युक्ति (चालन) समरूप नहीं है."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "युक्ति (चालन) तैयार नहीं है."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "प्रकार्य संभव नहीं: लेखन संरक्षित."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2529,47 +2537,47 @@ msgstr ""
"साझाकरण मोड को पहले निष्क्रिय करें."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सामान्य OLE त्रुटि"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "वस्तु की प्रचलित अवस्था में कार्य को पूरा नहीं कर सकते हैं."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "वस्तु कोई कार्य करने में असमर्थित है."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "इस कार्य को वस्तु समर्थन नहीं देता है."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/hi/svx/messages.po b/source/hi/svx/messages.po
index 2fbf60258fa..9ab8fd04092 100644
--- a/source/hi/svx/messages.po
+++ b/source/hi/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Hindi <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/hi/>\n"
@@ -10226,134 +10226,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10362,19 +10412,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index 5d38b3f92af..a45e12d81cc 100644
--- a/source/hi/sw/messages.po
+++ b/source/hi/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3063,9 +3063,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10816,38 +10816,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16737,55 +16743,55 @@ msgid "Frame"
msgstr "ढाँचा"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "विकल्प"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "लपेटें"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरलिंक"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "किनारा"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "स्तंभ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मैक्रो"
@@ -29460,44 +29466,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "स्थिति"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एशियन ख़ाका"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "उभारना"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "किनारा"
@@ -29509,85 +29515,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ख़ाका"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "छवि"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "स्थिति"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29600,110 +29606,110 @@ msgid "Paragraph Style"
msgstr "अनुच्छेद शैली"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "हाशिया व अंतरण"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "पाठ बहाव"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "एशियाई टाइपोग्राफी"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "स्थिति"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एशियन ख़ाका"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "उभारना"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टैब्स"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "कैप्स हटाएँ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "किनारा"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "स्थिति"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29715,55 +29721,55 @@ msgid "Frame Style"
msgstr "ढाँचा शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "प्रकार"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "विकल्प"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "लपेटें"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "किनारा"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "स्तंभ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मैक्रो"
@@ -29781,61 +29787,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पृष्ठ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "शीर्षिका"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "पादिका"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "किनारा"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "स्तंभ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "पाद टीका"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "पाठ जाल"
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index 02c0c9435b3..fb828e9c97f 100644
--- a/source/hr/cui/messages.po
+++ b/source/hr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-10-21 14:17+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hr/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index 121aec9d466..9b65eca9eff 100644
--- a/source/hr/helpcontent2/source/text/shared/00.po
+++ b/source/hr/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-06-29 14:04+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index 6d4ca19e723..021585b7058 100644
--- a/source/hr/helpcontent2/source/text/shared/01.po
+++ b/source/hr/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-07-19 13:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizator"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index 2477bcad61c..74905050bd1 100644
--- a/source/hr/helpcontent2/source/text/shared/optionen.po
+++ b/source/hr/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-07-19 13:30+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/hr/helpcontent2/source/text/swriter/01.po b/source/hr/helpcontent2/source/text/swriter/01.po
index 057b4ea8f7f..5f7844776b4 100644
--- a/source/hr/helpcontent2/source/text/swriter/01.po
+++ b/source/hr/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-07-19 13:17+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/hr/helpcontent2/source/text/swriter/guide.po b/source/hr/helpcontent2/source/text/swriter/guide.po
index 2588f51afdc..f3ab4bc6d0a 100644
--- a/source/hr/helpcontent2/source/text/swriter/guide.po
+++ b/source/hr/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-19 12:35+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://weblate.documentfoundation.org/projects/libo_help-master/textswriterguide/hr/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Odaberite karticu <emph>Mogućnosti</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index 492757bb504..7b89c2176c2 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-10-22 12:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/hr/>\n"
@@ -14276,14 +14276,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14506,14 +14507,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23224,91 +23226,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23907,102 +23909,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Bez obruba"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Svi obrubi"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Vanjski obrubi"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Podebljani pravokutni obrub"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Podebljani donji obrub"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dupli donji obrub"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Gornji i podebljani donji obrubi"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Gornji i dupli donji obrubi"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Lijevi obrub"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Desni obrub"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Gornji obrub"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Donji obrub"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Dijagonalni obrub prema gore"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Dijagonalni obrub prema dolje"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Gornji i donji obrubi"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Lijevi i desni obrubi"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24040,49 +23946,49 @@ msgid "Format Cells"
msgstr "Oblikovanje ćelija"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Brojevi"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Font"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efekti fonta"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Obrub"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Pozadina"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Zaštita ćelije"
@@ -28171,43 +28077,43 @@ msgid "Page Style"
msgstr "Stil stranice"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Stranica"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Obrub"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Pozadina"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Zaglavlje"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Podnožje"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "List"
@@ -28249,55 +28155,55 @@ msgid "Cell Style"
msgstr "Stil ćelije"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Brojevi"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Font"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efekti fonta"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Obrub"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Pozadina"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Zaštita ćelije"
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index 69e717f34fa..b12f5f54cb2 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-04 16:15+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/hr/>\n"
@@ -9551,97 +9551,97 @@ msgid "_Standard"
msgstr "_Standardno"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Područje"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sjenčanje"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Prozirnost"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Font"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efekti fonta"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Uvlake i razmaci"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animacije teksta"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimenzioniranje"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Spojnica"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatori"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Osvjetljavanje"
diff --git a/source/hr/sfx2/messages.po b/source/hr/sfx2/messages.po
index 85c3de7552f..3324f23f4f4 100644
--- a/source/hr/sfx2/messages.po
+++ b/source/hr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-07-04 16:15+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hr/>\n"
@@ -1629,376 +1629,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Košnica"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Plava krivulja"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Tlocrt"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Šumska ptica"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Svjetla"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropola"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Ponoćnoplava"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustracije prirode"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Olovka"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavir"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfelj"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Napredak"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zalazak sunca"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Neka prošla vremena"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Živahno"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Rezime"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Uobičajeno"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderno poslovno pismo u sans-serifu"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderno poslovno pismo u serifu"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Posjetnica s logom"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ukloni"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Očisti sve"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dužina zaporke"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Lozinka koju ste unijeli uzrokuje probleme interoperabilnosti. Unesite zaporku kraću od 52 bajta ili duža od 55 bajta."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-pritisak za otvaranje hiperpoveznice: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Pritisni za otvaranje poveznice: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(koristi se od: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/hr/svtools/messages.po b/source/hr/svtools/messages.po
index 395c0525f9c..71e494b73df 100644
--- a/source/hr/svtools/messages.po
+++ b/source/hr/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-04 16:16+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hr/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nije moguće uspostaviti internetsku vezu sa $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Poruka pogreške na poslužitelju: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Poruka greške na poslužitelju: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Dogodila se opća greška u vezi interneta."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Traženi internet podatak nije dostupan u priručnoj memoriji i ne može se dohvatiti sve dok nije aktiviran način rada Na vezi."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Nije bilo moguće stvoriti sadržaj."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Naziv je datoteke predugačak za odabrani datotečni sustav."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Neispravna sintaksa ulaza."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Spremite dokument u formatu %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Dosegnut je najveći mogući broj istovremeno otvorenih dokumenata. Zatvorite jedan od dokumenata kako biste mogli otvoriti novi."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nije moguće kreirati sigurnosnu kopiju."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Pogrešna dužina podataka."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija nije moguća: putanja sadrži trenutačnu mapu."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija nije moguća: uređaj nije identičan."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Uređaj nije spreman."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Pogrešan kontrolni zbroj."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija nije moguća: zaštita od pisanja."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Prvo isključite dijeljenje."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Pronađena je greška u datotečnome formatu na $(ARG1)(redak, stupac)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filtar izvoza za ovaj datotečni formati onemogućen je u postavkama. Kontaktirajte administratora sustava."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Opća OLE greška."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Radnja ne može biti izvršena u trenutačnom stanju objekta."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekt ne podržava aktivnosti."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekt ne podržava ovu aktivnost."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) aktiviranje objekta"
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index c2234b32b74..b8fcf2a781c 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-10-22 12:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/hr/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index 46e2a241396..4a0fe88fc9d 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-10-22 12:19+0000\n"
"Last-Translator: Milo Ivir <mail@milotype.de>\n"
"Language-Team: Croatian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hr/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Popis 5 nastavak"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Zaglavlje i podnožje"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10609,38 +10609,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16441,55 +16447,55 @@ msgid "Frame"
msgstr "Okvir"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Mogućnosti"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Omatanje"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Poveznica"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Obrub"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Područje"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Stupci"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makronaredbe"
@@ -28884,43 +28890,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efekti fonta"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Položaj"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Azijski raspored"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Isticanje"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Obrub"
@@ -28932,85 +28938,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Struktura"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Slika"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Položaj"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Prilagodi"
@@ -29022,109 +29028,109 @@ msgid "Paragraph Style"
msgstr "Stil odlomka"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Uvlake i razmaci"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Poravnanje"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tijek teksta"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Azijska tipografija"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efekti fonta"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Položaj"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Azijski raspored"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Isticanje"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatori"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Inicijalna slova"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Područje"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Obrub"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Uvjet"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29136,55 +29142,55 @@ msgid "Frame Style"
msgstr "Stil okvira"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Vrsta"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Mogućnosti"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Omatanje"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Područje"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Obrub"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Stupci"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makronaredba"
@@ -29202,61 +29208,61 @@ msgid "Standard"
msgstr "Standardno"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Stranica"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Područje"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Prozirnost"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Zaglavlje"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Podnožje"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Obrub"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Stupci"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fusnota"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Mreža teksta"
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index a760a061061..f39f253e31c 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-25 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-22 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hsb/>\n"
"Language: hsb\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Wočińće w Calc CSV-dataju jako nowu tabelu w aktualnym tabelowym dokumenće přez „Tabela ▸ Tabela z dataje zasadźić“."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Móžeće ze standardnymi formatěrowanskimi atributami dale pisać, po tym zo sće tučne, kursiwny abo podšmórnjene formatěrowanje nałožił, hdyž %MOD1+Umsch+X tłóčiće."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "mjeńšin"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Město toho dokument awtomatisce składować"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Podawa, zo běrowy paket změnjeny dokument sam składuje město toho, zo by nachwilnu wersiju awtomatiskeho wobnowjenja wutworił. Wužiwa samsny časowy interwal kaž awtomatiske wobnowjenje."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/hsb/helpcontent2/source/text/shared/00.po b/source/hsb/helpcontent2/source/text/shared/00.po
index 924dd5eba49..91836a325b4 100644
--- a/source/hsb/helpcontent2/source/text/shared/00.po
+++ b/source/hsb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/hsb/>\n"
"Language: hsb\n"
@@ -609,14 +609,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Na nadrjadowanu předłohu wróćo stajić"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Hódnoty za aktualny rajtark so na wotpowědne hódnoty předłohi stajeja, kotraž je w rajtarku „Rjadować“ pod „Zakład“ podata. We wšěmi padami, tež jeli je w „Zakład “ zapisk „- Žadyn -“ wubrany, so aktualne hódnoty rajtarka we „Wobsahuje“ wotstronjeja."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11479,7 +11479,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Klikńće w rajtarku <menuitem>Nastroje</menuitem> na tłóčatko <menuitem>Nastajenja…</menuitem> a wočińće potom <menuitem>Začitać/Składować – Powšitkowne</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13740,68 +13740,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Wubjerće <emph>Format – Cele… – rajtark: Pozadk</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Format – Předłoha strony… – rajtark: Rjadować</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Předłohi – Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Předłohi– Předłohi rjadować</menuitem>, wočińće kontekstowy meni zapiska a wubjerće <menuitem>Nowy… /Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Wubjerće <menuitem>Format – Předłoha strony… – rajtark: Rjadować</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Předłohi – Předłohi rjadować</menuitem> – wočińće kontekstowy meni zapiska a wubjerće <menuitem>Nowy…/Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Wubjerće <menuitem>Format – Předłohi – Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Format – Předłohi… – Předłohi rjadować</menuitem>, wočińće kontekstowy meni zapiska a wubjerće <menuitem>Nowy… /Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>. (Draw)"
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13812,14 +13812,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Wubjerće <menuitem>Folija – Kajkosće folije… – rajtark: Strona</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wubjerće <menuitem>Napohlad – Formatowe předłohi</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd ⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> – wočińće kontekstowy meni zapiska a wubjerće <menuitem>Nowy…/Předłohu wobdźěłać… – rajtark: Rjadować</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/hsb/helpcontent2/source/text/shared/01.po b/source/hsb/helpcontent2/source/text/shared/01.po
index beef07d51e8..741cb5c73c2 100644
--- a/source/hsb/helpcontent2/source/text/shared/01.po
+++ b/source/hsb/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-05-03 10:37+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/hsb/>\n"
@@ -23451,13 +23451,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23469,13 +23469,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/hsb/helpcontent2/source/text/shared/help.po b/source/hsb/helpcontent2/source/text/shared/help.po
index 248270b5df4..3c8be3c6705 100644
--- a/source/hsb/helpcontent2/source/text/shared/help.po
+++ b/source/hsb/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-22 09:45+0000\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/hsb/>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
#. jdDhb
#: browserhelp.xhp
@@ -31,7 +31,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Knihi LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/hsb/helpcontent2/source/text/shared/optionen.po b/source/hsb/helpcontent2/source/text/shared/optionen.po
index 2c9ff1cf7c7..c2d3b9233e8 100644
--- a/source/hsb/helpcontent2/source/text/shared/optionen.po
+++ b/source/hsb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-23 09:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/hsb/>\n"
"Language: hsb\n"
@@ -931,15 +931,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Město toho dokument awtomatisce składować"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9508,7 +9508,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>cele0; lěsyčne linije pokazać (Calc)</bookmark_value><bookmark_value>ramiki; cele na wobrazowce (Calc)</bookmark_value><bookmark_value>lěsycy; linije pokazać (Calc)</bookmark_value><bookmark_value>barby; lěsyčne linije a cele (Calc)</bookmark_value><bookmark_value>łamanja strony; pokazać (Calc)</bookmark_value><bookmark_value>pomocne linje; pokazać (Calc)</bookmark_value><bookmark_value>pokazać; nulowe hódnoty (Calc)</bookmark_value><bookmark_value>nulowe hódnoty; pokazać (Calc)</bookmark_value><bookmark_value>tabele w tabelowych dokumentach; wuzběhnjenje hódnotow</bookmark_value><bookmark_value>cele; bjez efekta formatěrować (Calc)</bookmark_value><bookmark_value>cele; zabarbić (Calc)</bookmark_value><bookmark_value>kótwički; pokazać (Calc)</bookmark_value><bookmark_value>barby; wobmjezowanje (Calc)</bookmark_value><bookmark_value>tekstowy přeběh w tabelowych celach</bookmark_value><bookmark_value>poćahi; w barbje pokazać (Calc)</bookmark_value><bookmark_value>objekty; w tabelowych dokumentach pokazać</bookmark_value><bookmark_value>wobrazy; w Calc pokazać</bookmark_value><bookmark_value>diagramy; pokazać (Calc)</bookmark_value><bookmark_value>rysowanske objekty; pokazać (Calc)</bookmark_value><bookmark_value>linkowe hłowy; pokazać (Calc)</bookmark_value><bookmark_value>špaltowe hłowy; pokazać (Calc)</bookmark_value><bookmark_value>suwanske lajsty; pokazać (Calc)</bookmark_value><bookmark_value>tabelowe rajtarki; pokazać</bookmark_value><bookmark_value>rajtarki; tabelowe rajtarki pokazać</bookmark_value><bookmark_value>wobrysy; wobrysowe symbole</bookmark_value><bookmark_value>cele; formlowy indikator w celi</bookmark_value><bookmark_value>cele; formlowy pokiw</bookmark_value><bookmark_value>pokazać; komentarowe awtorstwo</bookmark_value><bookmark_value>pokazowak; temowy</bookmark_value><bookmark_value>pokazowak; systemowy</bookmark_value><bookmark_value>wšě pytać; pytanske zjeće pokazać</bookmark_value><bookmark_value>cele; wuzběhnyć</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9625,7 +9625,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Komentarowy indikator</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9661,7 +9661,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Jeli tutón kontrolny kašćik je markěrowany, so awtor komentara a datum a čas, hdyž je so komentar napisał, w komentarowym woknje zjewja, hdyž myšku nad komentarom pohibujeće."
#. tYLiN
#: 01060100.xhp
@@ -9697,7 +9697,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formlowy indikator</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9751,7 +9751,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Wuzběhnjenje špaltow/linkow</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9778,7 +9778,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Celowe wuzběhnjenje wobdźěłać</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9805,7 +9805,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Wobrazowa kótwička</alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9832,7 +9832,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Referency w barbje</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9913,7 +9913,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Temowy kursor</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9940,7 +9940,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Systemowy kursor</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10003,7 +10003,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objekty/wobrazy"
#. DMhEf
#: 01060100.xhp
@@ -16195,7 +16195,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Wubjerće <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME – Nastajenja</menuitem></caseinline><defaultinline><menuitem>Nastroje – Nastajenja…</menuitem></defaultinline></switchinline><menuitem>– %PRODUCTNAME – Rozšěrjene – Ekspertowu konfiguraciju wočinić</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16204,7 +16204,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Klikńće w rajtarku <menuitem>Nastroje</menuitem> na tłóčatko <menuitem>Nastajenja…</menuitem> a wubjerće potom <menuitem>%PRODUCTNAME – Rozšěrjene – Ekspertowu konfiguraciju wočinić</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/hsb/helpcontent2/source/text/swriter/01.po b/source/hsb/helpcontent2/source/text/swriter/01.po
index 4b446b30518..1643d9428fd 100644
--- a/source/hsb/helpcontent2/source/text/swriter/01.po
+++ b/source/hsb/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-10 13:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/hsb/>\n"
@@ -23361,13 +23361,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/hsb/helpcontent2/source/text/swriter/guide.po b/source/hsb/helpcontent2/source/text/swriter/guide.po
index 7e5372b6542..ddfafb7d342 100644
--- a/source/hsb/helpcontent2/source/text/swriter/guide.po
+++ b/source/hsb/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: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/hsb/>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
#. XAt2Y
#: anchor_object.xhp
@@ -4281,14 +4281,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Klikńće w lisćinje předłohow strony z prawej tastu na „Lěwa strona“ a wubjerće <emph>Změnić</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klikńće na rajtark <emph>Rjadować</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7089,14 +7089,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Móžeće rozdźělne hłowowe a nohowe linki na rozdźělnych stronach w swojim dokumenće wužiwać, hdyž strony rozdźělny předłohi strony wužiwaja. $[officename] staja wjacore předdefinowane předłohi strony k dispoziciji, na přikład <emph>Prěnja strona</emph>, <emph>Lěwa strona</emph> a <emph>Prawa strona</emph>, ale móžeće tež swójsku předłohu strony wutworić."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Móžeće tež špihelowane wuhotowanje strony wužiwać, jeli chceće předłoze strony hłowowu linku přidać, kotraž ma rozdźělne nutřkowne a zwonkowne kromy strony. Zo byšće tute nastajenje na předłohu strony nałožił, wubjerće <item type=\"menuitem\">Format – Předłoha strony…</item>, klikńće na rajtark <item type=\"menuitem\">Strona</item> a do wobłuka <item type=\"menuitem\">Wuhotowanske nastajenja</item> a wubjerće „Špihelowany“ w polu <item type=\"menuitem\">Wuhotowanje strony</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7134,32 +7134,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klikńće z prawej tastu na „Prawa strona“ w lisćinje předłohow strony a wubjerće <emph>Změnić</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klikńće w dialogu <item type=\"menuitem\">Předłohi strony</item> na rajtark <item type=\"menuitem\">Hłowowa linka</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Wubjerće <item type=\"menuitem\">Hłowowu linku zapinać</item> a klikńće na rajtark <item type=\"menuitem\">Rjadować</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Wubjerće w polu <item type=\"menuitem\">Přichodna předłoha</item> „Lěwa strona“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7179,32 +7179,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klikńće we woknje <emph>Předłohi</emph> z prawej tastu na „Lěwa strona“ w lisćinje předłohow strony a wubjerće <emph>Změnić</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klikńće w dialogu <item type=\"menuitem\">Předłohi strony</item> na rajtark <item type=\"menuitem\">Hłowowa linka</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Wubjerće <item type=\"menuitem\">Hłowowu linku zapinać</item> a klikńće na rajtark <item type=\"menuitem\">Rjadować</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Wubjerće w polu <item type=\"menuitem\">Přichodna předłoha</item> „Prawa strona“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11427,14 +11427,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Klikńće w lisćinje předłohow strony z prawej tastu zapisk a wubjerće potom <emph>Nowy</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Zapodajće w rajtarku <emph>Rjadować</emph> mjeno za předłohu strony do pola <emph>Mjeno</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11580,14 +11580,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Wubjerće <emph>Łamanje strony</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Wubjerće w polu <item type=\"menuitem\">Předłoha</item> předłohu strony, kotraž pozadk strony wužiwa."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11859,14 +11859,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Awtomatiske łamanje strony</emph> so na kóncu strony zjewi, hdyž předłoha strony ma druhu „přichodnu předłohu“."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Předłoha strony „Prěnja strona“ na přikład ma předłohu „Standardna předłoha strony“ jako přichodnu předłohu. Zo byšće to widźał, tłóčće <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>cmd ⌘+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline>, zo byšće wokno <menuitem>Předłohi</menuitem> wočinił, klikńće na symbol <menuitem>Předłohi strony</menuitem> a klikńće z prawej tastu na zapisk „Prěnja strona“. Wubjerće <menuitem>Předłohu wobdźěłać…</menuitem> z kontekstoweho menija. Na rajtarku <menuitem>Rjadować</menuitem> móžeće předłohu „Přichodna předłoha“ widźeć."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12183,14 +12183,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Klikńće z prawej tastu na předłohu strony a wubjerće <emph>Nowy</emph>. Nowa předłoha strony wšě kajkosće wubraneje předłohi strony dóstanje."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Zapodajće na rajtarku <emph>Rjadować</emph> mjeno za předłohu strony w polu <emph>Mjeno</emph>, na přikład „Mój prěčny format“."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12327,14 +12327,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Předłohi za jednotliwu stronu"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Předłoha strony da so za jenož jednu stronu definować. Předłoha „Prěnja strona“ je přikład za to. Definujće druhu předłohu strony jako „přichodnu předłohu“ na rajtarku <menuitem>Format – Předłoha strony – Rjadować</menuitem>, zo byšće tutu kajkosć nastajił."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12363,14 +12363,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Rozsah płaćiwosće za předłohu strony postajić"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Předłoha strony „Standard“ druhu „přichodnu předłohu“ na <menuitem>Format – Předłoha strony… – rajtark: Rjadować</menuitem> nastaja. Město toho je „přichodna předłoha“ tež na „Standard“ nastajena. Wšě předłohi strony, kotrež samsnu předłohu strony wužiwaja, móža wjacore strony wopřijeć. Niša a wyša kroma wobłuka předłohi strony so přez „łamanja strony z předłohu“ definujetej. Wšě strony mjez dwěmaj někajkimaj „łamanjomaj strony z předłohu“ samsnu předłohu strony wužiwaja."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12498,14 +12498,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Klikńće w lisćinje předłohow strony z prawej tastu zapisk a wubjerće potom <emph>Nowy</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Zapodajće w rajtarku <emph>Rjadować</emph> mjeno do pola <emph>Mjeno</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
@@ -14710,7 +14710,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "In the <item type=\"menuitem\">Find</item> box, type the search term and the regular expression(s) that you want to use in your search."
-msgstr ""
+msgstr "Zapodajće w polu <item type=\"menuitem\">Pytać</item> pytanski wuraz a regularne wurazy, kotrež chceće w swojim pytanju wužiwać."
#. FqLDU
#: search_regexp.xhp
@@ -14719,7 +14719,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "Click <item type=\"menuitem\">Find Next</item> or <item type=\"menuitem\">Find All</item>."
-msgstr ""
+msgstr "Klikńće na <item type=\"menuitem\">Dale pytać</item> abo <item type=\"menuitem\">Wšě pytać</item>."
#. Mh5nR
#: search_regexp.xhp
@@ -14728,7 +14728,7 @@ msgctxt ""
"hd_id3153401\n"
"help.text"
msgid "Regular Expression Examples"
-msgstr ""
+msgstr "Přikłady za regularne wurazy"
#. EBtAG
#: search_regexp.xhp
@@ -14737,7 +14737,7 @@ msgctxt ""
"par_id3149641\n"
"help.text"
msgid "The regular expression for a single character is a period (.)."
-msgstr ""
+msgstr "Regularny wuraz za jednotliwe znamješko je dypk (.)."
#. bDZCd
#: search_regexp.xhp
@@ -14746,7 +14746,7 @@ msgctxt ""
"par_id3153136\n"
"help.text"
msgid "The regular expression for zero or more occurrences of the previous character is an asterisk. For example: \"123*\" finds \"12\" \"123\", and \"1233\"."
-msgstr ""
+msgstr "Regularny wuraz žane abo jedne wustupowanje abo wjace wustupowanjow předchadneho znamješka je hwěžka (*). „123*“ na přikład „12“, „123“ a „1233“ namaka."
#. fSHTB
#: search_regexp.xhp
@@ -14755,7 +14755,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "The regular expression combination to search for zero or more occurrences of any character is a period and asterisk (.*)."
-msgstr ""
+msgstr "Kombinacija regularneho wuraza za pytanje za žanym wustupowanjom, jednym wustupowanjom abo wjace wustupowanjemi někajkeho znamješka je dypk z hwěžku (.*)."
#. iuPn8
#: search_regexp.xhp
@@ -14764,7 +14764,7 @@ msgctxt ""
"par_id3149854\n"
"help.text"
msgid "The regular expression for the end of a paragraph is a dollar sign ($). The regular expression character combination for the start of a paragraph is a caret and a period (^.)."
-msgstr ""
+msgstr "Regularny wuraz za kónc wotstawka je dolarowe znamješko ($). Kombinacija regularnych wurazow za spočatk wotstawka je cirkumfleks z dypkom (^.)."
#. qFSrB
#: search_regexp.xhp
@@ -14773,7 +14773,7 @@ msgctxt ""
"par_id0509200916345545\n"
"help.text"
msgid "The regular expression for a tab character is \\t."
-msgstr ""
+msgstr "Regularny wuraz za tabulator je \\t."
#. peHPz
#: search_regexp.xhp
@@ -14782,7 +14782,7 @@ msgctxt ""
"par_id3153414\n"
"help.text"
msgid "A search using a regular expression will work only within one paragraph. To search using a regular expression in more than one paragraph, do a separate search in each paragraph."
-msgstr ""
+msgstr "Pytanje, w kotrymž regularny wuraz wužiwaće, jenož w jednym wotstawku funguje. Zo byšće z pomocu regularneho wuraza we wjace hač jednym wotstawku pytał, wuwjedźće separatne pytanje w kóždym wotstawku."
#. r7Kkv
#: section_edit.xhp
@@ -14791,7 +14791,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Sections"
-msgstr ""
+msgstr "Wotrězki wobdźěłać"
#. LGVXg
#: section_edit.xhp
@@ -14800,7 +14800,7 @@ msgctxt ""
"bm_id3149816\n"
"help.text"
msgid "<bookmark_value>sections; editing</bookmark_value><bookmark_value>sections;deleting</bookmark_value><bookmark_value>deleting;sections</bookmark_value> <bookmark_value>editing;sections</bookmark_value> <bookmark_value>read-only sections</bookmark_value> <bookmark_value>protecting;sections</bookmark_value> <bookmark_value>converting;sections, into normal text</bookmark_value> <bookmark_value>hiding;sections</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>wotrězki; wobdźěłać</bookmark_value><bookmark_value>wotrězki; zhašeć</bookmark_value><bookmark_value>zhašeć; wotrězki</bookmark_value><bookmark_value>wobdźěłać; wotrězki</bookmark_value><bookmark_value>přećiwo pisanju škitane wotrězki</bookmark_value><bookmark_value>škitać; wotrězki</bookmark_value><bookmark_value>přetworić; wotrězki, do normalneho teksta</bookmark_value><bookmark_value>schować; wotrězkisections</bookmark_value>"
#. bDx6q
#: section_edit.xhp
@@ -14809,7 +14809,7 @@ msgctxt ""
"hd_id3149816\n"
"help.text"
msgid "<variable id=\"section_edit\"><link href=\"text/swriter/guide/section_edit.xhp\">Editing Sections</link></variable>"
-msgstr ""
+msgstr "<variable id=\"section_edit\"><link href=\"text/swriter/guide/section_edit.xhp\">Wotrězki wobdźěłać</link></variable>"
#. CuUp3
#: section_edit.xhp
@@ -14818,7 +14818,7 @@ msgctxt ""
"par_id3155858\n"
"help.text"
msgid "You can protect, hide, and convert sections to normal text in your document."
-msgstr ""
+msgstr "Móžeće wotrězki w swojim dokumenće škitać, schować a do normalneho teksta přetworić."
#. BQbxD
#: section_edit.xhp
@@ -14827,7 +14827,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "Choose <link href=\"text/swriter/01/02170000.xhp\"><emph>Format - Sections</emph></link>."
-msgstr ""
+msgstr "Wubjerće <link href=\"text/swriter/01/02170000.xhp\"><emph>Format – Wotrězki…</emph></link>."
#. sAFMb
#: section_edit.xhp
@@ -14836,7 +14836,7 @@ msgctxt ""
"par_id3149848\n"
"help.text"
msgid "In the <item type=\"menuitem\">Section</item> list, click the section you want to modify. You can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A to select all sections in the list, and you can Shift+click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+click to select some sections."
-msgstr ""
+msgstr "Klikńće w lisćinje <item type=\"menuitem\">Wotrězk</item> do wotrězka, kotryž chceće změnić. Móžeće <switchinline select=\"sys\"><caseinline select=\"MAC\">cmd ⌘</caseinline><defaultinline>Strg</defaultinline></switchinline>+A tłóčić, zo byšće wšě wotrězki w lisćinje wubrał, a móžeće Umsch (⇧)+kliknjenje abo <switchinline select=\"sys\"><caseinline select=\"MAC\">cmd ⌘</caseinline><defaultinline>Strg</defaultinline></switchinline>+kliknjenje wužiwać, zo byšće někotre wotrězki wubrał."
#. 8BHyv
#: section_edit.xhp
@@ -14845,7 +14845,7 @@ msgctxt ""
"par_id3153397\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Přewjedźće jedyn ze slědowacych krokow:"
#. SLABp
#: section_edit.xhp
@@ -14854,7 +14854,7 @@ msgctxt ""
"par_id3153120\n"
"help.text"
msgid "To convert a section into normal text, click <emph>Remove</emph>."
-msgstr ""
+msgstr "Zo byšće wotrězk do normalneho teksta přetworił, klikńće na <emph>Wotstronić</emph>."
#. imN8s
#: section_edit.xhp
@@ -14863,7 +14863,7 @@ msgctxt ""
"par_id3149631\n"
"help.text"
msgid "To make a section read-only, select the <emph>Protected</emph> check box in the <emph>Write Protection</emph> area."
-msgstr ""
+msgstr "Zo byšće wotrězk přećiwo pisanju škitał, wubjerće kontrolny kašćik <emph>Škitany</emph> we wobłuku <emph>Pisanski škit</emph>."
#. tJmPF
#: section_edit.xhp
@@ -14872,7 +14872,7 @@ msgctxt ""
"par_id731641553483773\n"
"help.text"
msgid "Add an optional protection password. The password can be empty and no password will be required to remove protection. If the password is not empty, it will be required to unprotect the section."
-msgstr ""
+msgstr "Přidajće opcionalne hesło za škit. Hesło móže prózdne być a njetrjebaće hesło, zo byšće škit wotstronił. Jeli hesło prózdne njeje, trjebaće jo, zo byšće škit za wotrězk zběhnył."
#. QWTQ9
#: section_edit.xhp
@@ -14881,7 +14881,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "To hide a section, select the <emph>Hide</emph> check box in the <emph>Hide</emph> area."
-msgstr ""
+msgstr "Zo byšće wotrězk schował, wubjerće kontrolny kašćik <emph>Schować</emph> we wobłuku <emph>Schować</emph>."
#. EhAMG
#: section_edit.xhp
@@ -14890,7 +14890,7 @@ msgctxt ""
"bm_id421641501464020\n"
"help.text"
msgid "<bookmark_value>Read-only contents;editing</bookmark_value> <bookmark_value>Protect section;removing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>přećiwo pisanju škitany wobsah; wobdźěłać</bookmark_value><bookmark_value>wotrězk škitać; wotstronić</bookmark_value>"
#. wq7EM
#: section_edit.xhp
@@ -14899,7 +14899,7 @@ msgctxt ""
"hd_id641641501024846\n"
"help.text"
msgid "Editing Read-Only Contents"
-msgstr ""
+msgstr "Přećiwo pisanju škitany wobsah"
#. An8Bs
#: section_edit.xhp
@@ -14908,7 +14908,7 @@ msgctxt ""
"par_id841641501075965\n"
"help.text"
msgid "A warning message is displayed if you try to edit protected sections."
-msgstr ""
+msgstr "Warnowanska zdźělenka so pokazuje, jeli pospytujeće, škitane wotrězki wobdźěłać."
#. kWUgB
#: section_edit.xhp
@@ -14917,7 +14917,7 @@ msgctxt ""
"par_id531641501248838\n"
"help.text"
msgid "To remove protection of a section, do the following:"
-msgstr ""
+msgstr "Zo byšće škit wotrězka wotstronił, čińće tole:"
#. kcCaw
#: section_edit.xhp
@@ -14926,7 +14926,7 @@ msgctxt ""
"par_id681641501272982\n"
"help.text"
msgid "Choose <link href=\"text/swriter/01/02170000.xhp\"><menuitem>Format - Sections</menuitem></link>."
-msgstr ""
+msgstr "Wubjerće <link href=\"text/swriter/01/02170000.xhp\"><menuitem>Format – Wotrězki…</menuitem></link>."
#. R2vBj
#: section_edit.xhp
@@ -14935,7 +14935,7 @@ msgctxt ""
"par_id861641501273184\n"
"help.text"
msgid "Select the section to unprotect in the <menuitem>Section</menuitem> area of the dialog."
-msgstr ""
+msgstr "Wubjerće wotrězk, zo byšće škit we wobłuku <menuitem>Wotrězk</menuitem> dialoga zběhnył."
#. Zy4Tm
#: section_edit.xhp
@@ -14944,7 +14944,7 @@ msgctxt ""
"par_id221641501273326\n"
"help.text"
msgid "Uncheck the <menuitem>Protect</menuitem> option in the <menuitem>Write Protection</menuitem> area of the dialog."
-msgstr ""
+msgstr "Wotstrońće hóčku před nastajenjom <menuitem>Škitać</menuitem> we wobłuku <menuitem>Pisanski škit</menuitem> dialoga."
#. XcjAs
#: section_edit.xhp
@@ -14953,7 +14953,7 @@ msgctxt ""
"par_id791641501273494\n"
"help.text"
msgid "If the section was protected with a non-empty password, type the password into the dialog that opens."
-msgstr ""
+msgstr "Jeli wotrězk je so z njeprózdnym hesłom škitał, zapodajće hesło do dialoga, kotryž so wočinja."
#. kvpGE
#: section_edit.xhp
@@ -14962,7 +14962,7 @@ msgctxt ""
"par_id561641501273767\n"
"help.text"
msgid "Click <menuitem>OK</menuitem> ."
-msgstr ""
+msgstr "Klikńće na <menuitem>W porjadku</menuitem>."
#. qSp6v
#: section_edit.xhp
@@ -14971,7 +14971,7 @@ msgctxt ""
"par_id3156255\n"
"help.text"
msgid "<link href=\"text/swriter/01/02170000.xhp\">Format - Sections</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/02170000.xhp\">Format – Wotrězki…</link>"
#. stACK
#: section_edit.xhp
@@ -14980,7 +14980,7 @@ msgctxt ""
"par_id973540\n"
"help.text"
msgid "<link href=\"text/swriter/guide/protection.xhp\">Protecting Content in %PRODUCTNAME Writer</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/protection.xhp\">Wobsah w %PRODUCTNAME Writer škitać</link>"
#. TDFEb
#: section_insert.xhp
@@ -14989,7 +14989,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Inserting Sections"
-msgstr ""
+msgstr "Wotrězki zasadźić"
#. NUbJg
#: section_insert.xhp
@@ -14998,7 +14998,7 @@ msgctxt ""
"bm_id3149695\n"
"help.text"
msgid "<bookmark_value>sections; inserting</bookmark_value> <bookmark_value>inserting; sections</bookmark_value> <bookmark_value>HTML documents;inserting linked sections</bookmark_value> <bookmark_value>updating;linked sections, manually</bookmark_value> <bookmark_value>links;inserting sections</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>wotrězki; zasadźić</bookmark_value><bookmark_value>zasadźić; wotrězki</bookmark_value><bookmark_value>HTML-dokumenty; zwjazane wotrězki zasadźić</bookmark_value><bookmark_value>aktualizować; zwjazane wotrězki, manuelne</bookmark_value><bookmark_value>zwjazanja; wotrězki zasadźić</bookmark_value>"
#. jVCgD
#: section_insert.xhp
@@ -15007,7 +15007,7 @@ msgctxt ""
"hd_id3149695\n"
"help.text"
msgid "<variable id=\"section_insert\"><link href=\"text/swriter/guide/section_insert.xhp\">Inserting Sections</link></variable>"
-msgstr ""
+msgstr "<variable id=\"section_insert\"><link href=\"text/swriter/guide/section_insert.xhp\">Wotrězki zasadźić</link></variable>"
#. aQxBn
#: section_insert.xhp
@@ -15016,7 +15016,7 @@ msgctxt ""
"par_id3155917\n"
"help.text"
msgid "You can insert new sections, or links to sections in other documents into the current document. If you insert a section as a link, the content of the link changes when you modify the source document."
-msgstr ""
+msgstr "Móžeće nowe wotrězki abo zwjazanja z wotrězkami w druhich dokumentach do aktualneho dokumenta zasadźić. Jeli wotrězk jako zwjazanje zasadźujeće, so wobsah zwjazanja změni, hdyž žórłowy dokument měnjeće."
#. LA4FF
#: section_insert.xhp
@@ -15025,7 +15025,7 @@ msgctxt ""
"hd_id3155863\n"
"help.text"
msgid "To Insert a New Section"
-msgstr ""
+msgstr "Nowy wotrězk zasadźić"
#. sE9KR
#: section_insert.xhp
@@ -15034,7 +15034,7 @@ msgctxt ""
"par_id3149843\n"
"help.text"
msgid "Click in your document where you want to insert a new section, or select the text that you want to convert to a section."
-msgstr ""
+msgstr "Klikńće do swojeho dokumenta tam, hdźež chceće nowy wotrězk zasadźić abo wubjerće tekst, kotryž chceće do wotrězka přetworić."
#. xdcT4
#: section_insert.xhp
@@ -15043,7 +15043,7 @@ msgctxt ""
"par_id3156103\n"
"help.text"
msgid "If you select a text that occurs within a paragraph, the text is automatically converted into a new paragraph."
-msgstr ""
+msgstr "Jeli tekst wuběraće, kotryž we wotstawku wustupuje, so tekst awtomatisce do noweho wotstawka přetwori."
#. E6CWy
#: section_insert.xhp
@@ -15052,7 +15052,7 @@ msgctxt ""
"par_id3149281\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr ""
+msgstr "Wubjerće <emph>Zasadźić – Wotrězk…</emph>."
#. JijGZ
#: section_insert.xhp
@@ -15061,7 +15061,7 @@ msgctxt ""
"par_id3153404\n"
"help.text"
msgid "In the <item type=\"menuitem\">New Section</item> box, type a name for the section."
-msgstr ""
+msgstr "Zapodajće w polu <item type=\"menuitem\">Nowy wotrězk</item> mjeno za wotrězk."
#. fMbYH
#: section_insert.xhp
@@ -15070,7 +15070,7 @@ msgctxt ""
"par_id3153127\n"
"help.text"
msgid "Set the options for the section, and then click <emph>Insert</emph>."
-msgstr ""
+msgstr "Postajće nastajenja za wotrězk a klikńće potom na <emph>Zasadźić</emph>."
#. 6mozi
#: section_insert.xhp
@@ -15079,7 +15079,7 @@ msgctxt ""
"hd_id3149635\n"
"help.text"
msgid "To Insert a Section as a Link"
-msgstr ""
+msgstr "Wotrězk jako zwjazanje zasadźić"
#. WDba2
#: section_insert.xhp
@@ -15088,7 +15088,7 @@ msgctxt ""
"par_id3149648\n"
"help.text"
msgid "Before you can insert a section as link, you must first create sections in the source document."
-msgstr ""
+msgstr "Prjedy hač móžeće wotrězk jako zwjazanje zasadźić, dyrbiće najprjedy wotrězki w žórłowym dokumenće wutworić."
#. RrBvE
#: section_insert.xhp
@@ -15097,7 +15097,7 @@ msgctxt ""
"par_id3149611\n"
"help.text"
msgid "When you open a document that contains linked sections, $[officename] prompts you to update the contents of the sections. To manually update a link, choose <emph>Tools - Update - Links</emph>."
-msgstr ""
+msgstr "Hdyž dokument wočinjeće, kotryž zwjazane wotrězki wobsahuje, $[officename] was namołwja, wobsah wotrězkow aktualizować. Zo byšće zwjazanje manuelnje aktualizował, wubjerće <emph>Nastroje – Aktualizować – Zwjazanja</emph>."
#. BTDeY
#: section_insert.xhp
@@ -15106,7 +15106,7 @@ msgctxt ""
"par_id3149860\n"
"help.text"
msgid "You can also insert linked sections in HTML documents. When you view the page in a web browser, the content of the sections corresponds to the content of the sections at the time the HTML document was last saved."
-msgstr ""
+msgstr "Móžeće tež zwjazane wotrězki do HTML-dokumentow zasadźić. Hdyž sej stronu we webwobhladowaku wobhladujeće, wobsah wotrězkow wobsahej wotrězkow wotpowěduje, kotryž eksistowaše, hdyž je so HTML-dokument posledni raz składował."
#. BFkj7
#: section_insert.xhp
@@ -15115,7 +15115,7 @@ msgctxt ""
"par_id3145104\n"
"help.text"
msgid "Click in your document where you want to insert the linked section."
-msgstr ""
+msgstr "Klikńće w swojim dokumenće tam, hdźež chceće zwjazany wotrězk zasadźić."
#. iLvVC
#: section_insert.xhp
@@ -15124,7 +15124,7 @@ msgctxt ""
"par_id3156241\n"
"help.text"
msgid "Choose <emph>Insert - Section</emph>."
-msgstr ""
+msgstr "Wubjerće <emph>Zasadźić – Wotrězk…</emph>."
#. rAG6C
#: section_insert.xhp
@@ -15133,7 +15133,7 @@ msgctxt ""
"par_id3153363\n"
"help.text"
msgid "In the <item type=\"menuitem\">New Section</item> box, type a name for the section."
-msgstr ""
+msgstr "Zapodajće w polu <item type=\"menuitem\">Nowy wotrězk</item> mjeno za wotrězk."
#. hHrDG
#: section_insert.xhp
@@ -15142,7 +15142,7 @@ msgctxt ""
"par_id3153387\n"
"help.text"
msgid "In the <item type=\"menuitem\">Link</item> area, select the <item type=\"menuitem\">Link</item> check box. <switchinline select=\"sys\"><caseinline select=\"WIN\">Under Windows, you can also select the <item type=\"menuitem\">DDE</item> check box to automatically update the contents of the section when the section in the source document is changed.</caseinline></switchinline>"
-msgstr ""
+msgstr "Wubjerće we wobłuku <item type=\"menuitem\">Zwjazanje</item> kontrolny kašćik <item type=\"menuitem\">Zwjazanje</item>. <switchinline select=\"sys\"><caseinline select=\"WIN\">Pod Windows móžeće tež kontrolny kašćik <item type=\"menuitem\">DDE</item> wubrać, zo byšće wobsah wotrězka awtomatisce aktualizował, hdyž so wotrězk w žórłowym dokumenće měnja.</caseinline></switchinline>"
#. Ag8HZ
#: section_insert.xhp
@@ -15151,7 +15151,7 @@ msgctxt ""
"par_id3154852\n"
"help.text"
msgid "Click the <emph>Browse</emph> button next to the <emph>File name</emph> box."
-msgstr ""
+msgstr "Klikńće na tłóčatko <emph>Přepytać…</emph> pódla pola <emph>Datajowe mjeno</emph>."
#. GpiAN
#: section_insert.xhp
@@ -15160,7 +15160,7 @@ msgctxt ""
"par_id3155882\n"
"help.text"
msgid "Locate the document containing the section that you want to link to, and then click <emph>Insert</emph>."
-msgstr ""
+msgstr "Pytajće dokument, kotryž wotrězk wobsahuje, na kotryž chceće wotkazać, a klikńće potom na <emph>Zasadźić</emph>."
#. PBKii
#: section_insert.xhp
@@ -15169,7 +15169,7 @@ msgctxt ""
"par_id3149978\n"
"help.text"
msgid "In the <item type=\"menuitem\">Section</item> box, select the section that you want to insert."
-msgstr ""
+msgstr "Wubjerće w polu <item type=\"menuitem\">Wotrězk</item> wotrězk, kotryž chceće zasadźić."
#. uFzAW
#: section_insert.xhp
@@ -15178,7 +15178,7 @@ msgctxt ""
"par_id3150003\n"
"help.text"
msgid "Click <emph>Insert</emph>."
-msgstr ""
+msgstr "Klikńće na <emph>Zasadźić</emph>."
#. KgynK
#: sections.xhp
@@ -15187,7 +15187,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Sections"
-msgstr ""
+msgstr "Wotrězki wužiwać"
#. 82paq
#: sections.xhp
@@ -15196,7 +15196,7 @@ msgctxt ""
"bm_id3149832\n"
"help.text"
msgid "<bookmark_value>multi-column text</bookmark_value> <bookmark_value>text; multi-column</bookmark_value> <bookmark_value>columns; on text pages</bookmark_value> <bookmark_value>text columns</bookmark_value> <bookmark_value>sections; columns in/use of</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>wjacešpaltowy tekst</bookmark_value><bookmark_value>tekst; wjacešpaltowy</bookmark_value><bookmark_value>špalty; na tekstowych stronach</bookmark_value><bookmark_value>tekstowe špalty</bookmark_value><bookmark_value>wotrězki; špalty w/wužiwać w</bookmark_value>"
#. CCCC9
#: sections.xhp
@@ -15205,7 +15205,7 @@ msgctxt ""
"hd_id3149832\n"
"help.text"
msgid "<variable id=\"sections\"><link href=\"text/swriter/guide/sections.xhp\">Using Sections</link></variable>"
-msgstr ""
+msgstr "<variable id=\"sections\"><link href=\"text/swriter/guide/sections.xhp\">Wotrězki wužiwać</link></variable>"
#. cEBpE
#: sections.xhp
@@ -15214,7 +15214,7 @@ msgctxt ""
"par_id3153128\n"
"help.text"
msgid "Sections are named blocks of text, including graphics or objects, that you can use in a number of ways:"
-msgstr ""
+msgstr "Wotrězki su pomjenowane tekstowe bloki, inkluziwnje grafiki abo objekty, kotrež móžeće na rozdźělne wašnja wužiwać:"
#. raAEb
#: sections.xhp
@@ -15223,7 +15223,7 @@ msgctxt ""
"par_id3149284\n"
"help.text"
msgid "To prevent text from being edited."
-msgstr ""
+msgstr "Tekst přećiwo wobdźěłanju škitać."
#. 8HQ26
#: sections.xhp
@@ -15232,7 +15232,7 @@ msgctxt ""
"par_id3149630\n"
"help.text"
msgid "To show or hide text."
-msgstr ""
+msgstr "Tekst pokazać abo schować."
#. FXQXd
#: sections.xhp
@@ -15241,7 +15241,7 @@ msgctxt ""
"par_id3149647\n"
"help.text"
msgid "To reuse text and graphics from other $[officename] documents."
-msgstr ""
+msgstr "Tekst a grafiki z druhich dokumentow $[officename] wužiwać."
#. czCXg
#: sections.xhp
@@ -15250,7 +15250,7 @@ msgctxt ""
"par_id3149612\n"
"help.text"
msgid "To insert sections of text that uses a different column layout than the current page style."
-msgstr ""
+msgstr "Tekstowe wotrězki zasadźić, kotrež druhi špaltowe wuhotowanje hač aktualna předłoha strony wužiwaja."
#. J5FBB
#: sections.xhp
@@ -15259,7 +15259,7 @@ msgctxt ""
"par_id3149855\n"
"help.text"
msgid "A section contains at least one paragraph. When you select a text and create a section, a paragraph break is automatically inserted at the end of the text."
-msgstr ""
+msgstr "Wotrězk znajmjeńša jedyn wotstawk wobsahuje. Hdž tekst wuběraće a wotrězk wutworjeće, so awtomatisce wotstawkowe łamanje na kóncu teksta zasadźi."
#. qAYBG
#: sections.xhp
@@ -15268,7 +15268,7 @@ msgctxt ""
"par_id3149872\n"
"help.text"
msgid "You can insert sections from a text document, or an entire text document as a section into another text document. You can also insert sections from a text document as links in another text document, or in the same document."
-msgstr ""
+msgstr "Móžeće wotrězki z tekstoweho dokumenta zasadźić abo cyły tekstowy dokument jako wotrězk do druheho tekstoweho dokumenta. Móžeće tež wotrězki z tekstoweho dokumenta jako zwjazanja do druheho tekstoweho dokumenta abo do samsneho dokumenta zasadźić."
#. kzHjX
#: sections.xhp
@@ -15277,7 +15277,7 @@ msgctxt ""
"par_id3153367\n"
"help.text"
msgid "To insert a new paragraph immediately before or after a section, click in front or behind the section, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option </caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
-msgstr ""
+msgstr "Zo byšće nowy wotstawk hnydom před abo za wotrězkom zasadźił, klikńće před abo za wotrězk a tłóčće potom <switchinline select=\"sys\"><caseinline select=\"MAC\">⌥ option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter."
#. 2DyAy
#: sections.xhp
@@ -15286,7 +15286,7 @@ msgctxt ""
"hd_id3154242\n"
"help.text"
msgid "Sections and Columns"
-msgstr ""
+msgstr "Wotrězki a špalty"
#. bb2v7
#: sections.xhp
@@ -15295,7 +15295,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "You can insert sections into an existing section. For example, you can insert a section containing two columns into a section that contains one column."
-msgstr ""
+msgstr "Móžeće wotrězki do eksistowaceho wotrězka zasadźić. Móžeće na přikład wotrězk, kotryž dwě špalće wobsahuje, do wotrězka zasadźić, kotryž jednu špaltu wobsahuje."
#. xqVLq
#: sections.xhp
@@ -15304,7 +15304,7 @@ msgctxt ""
"par_id3154845\n"
"help.text"
msgid "A section layout, for example on the number of columns, has priority over the page layout defined in a page style."
-msgstr ""
+msgstr "Wotrězkowe wuhotowanje, na přikład ličba špaltow, ma prioritu nad wuhotowanjom strony, kotrež je w předłoze strony definowane."
#. aJngh
#: sections.xhp
@@ -15313,7 +15313,7 @@ msgctxt ""
"par_id3155883\n"
"help.text"
msgid "<link href=\"text/shared/00/00000005.xhp#dde\">DDE</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000005.xhp#dde\">DDE</link>"
#. kDqD6
#: send2html.xhp
@@ -15322,7 +15322,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Saving Text Documents in HTML Format"
-msgstr ""
+msgstr "Tekstowe dokumenty w HTML-formaće składować"
#. xrFxT
#: send2html.xhp
@@ -15331,7 +15331,7 @@ msgctxt ""
"bm_id3145087\n"
"help.text"
msgid "<bookmark_value>text documents; publishing in HTML</bookmark_value> <bookmark_value>HTML documents; creating from text documents</bookmark_value> <bookmark_value>homepage creation</bookmark_value> <bookmark_value>saving;in HTML format</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tekstowe dokumenty; w HTML-formaće wozjewić</bookmark_value><bookmark_value>HTML-dokumenty; z tekstowych dokumentow wutworić</bookmark_value><bookmark_value>internetnu stronu wutworić</bookmark_value><bookmark_value>składować; w HTML-formaće</bookmark_value>"
#. msU7r
#: send2html.xhp
diff --git a/source/hsb/sc/messages.po b/source/hsb/sc/messages.po
index 9f365f5b1e4..e76c5645455 100644
--- a/source/hsb/sc/messages.po
+++ b/source/hsb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/hsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562190965.000000\n"
#. kBovX
@@ -14294,19 +14294,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Modus wotpowědnosće"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Eksaktne wotpowědowanje. Wróći #N/A, jeli wotpowědowanje njeje. (standard).\n"
-"-1 – Eksaktne wotpowědowanje abo přichodny mjeńši zapisk.\n"
-"1 – Eksaktne wotpowědowanje abo přichodny wjetši zapisk.\n"
-"2 – Wotpowědowanje zastupowaceho symbola abo regularneho wuraza."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14532,19 +14529,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Modus wotpowědnosće"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 – Eksaktne wotpowědowanje. Wróći #N/A, jeli wotpowědowanje njej. (standard).\n"
-"-1 – Eksaktne wotpowědowanje abo přichodny mjeńši zapisk.\n"
-"1 – Eksaktne wotpowědowanje abo přichodny wjetši zapisk.\n"
-"2 – Wotpowědowanje zastupowaceho symbola abo regularneho wuraza."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23259,91 +23253,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Powšitkowne"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linija"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Płonina"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Wotsćinjenje"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparenca"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Pismo"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wotstupy"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstowa animacija"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Wotměrjenje"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Wuzběhnjenje"
@@ -23942,102 +23936,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Zhašeć"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Žadyn ramik"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Wšě ramiki"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Wonkowne ramiki"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Tołsty wonkowny ramik"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tołsty delni ramik"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dwójny delni ramik"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Horni a tołsty delni ramik"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Horni a dwójny delni ramik"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Lěwy ramik"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Prawy ramik"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Horni ramik"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Delni ramik"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Ramik diagonalnje horje"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Ramik diagonalnje dele"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Horni a delni ramik"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Lěwy a prawy ramik"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24075,49 +23973,49 @@ msgid "Format Cells"
msgstr "Cele formatěrować"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Ličby"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Pismo"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Pozadk"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Celowy škit"
@@ -28206,43 +28104,43 @@ msgid "Page Style"
msgstr "Předłoha strony"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Powšitkowne"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Strona"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Pozadk"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Hłowowa linka"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Nohowa linka"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Tabela"
@@ -28284,55 +28182,55 @@ msgid "Cell Style"
msgstr "Celowa předłoha"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Powšitkowne"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Ličby"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Pismo"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Pozadk"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Celowy škit"
diff --git a/source/hsb/sd/messages.po b/source/hsb/sd/messages.po
index 0668efa49bc..0f6396ef288 100644
--- a/source/hsb/sd/messages.po
+++ b/source/hsb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 15:26+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/hsb/>\n"
@@ -9560,97 +9560,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Powšitkowne"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Płonina"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Sćin"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparenca"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Pismo"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wotstupy"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstowa animacija"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Wotměrjenje"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Zwjazowak"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Wuzběhnjenje"
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index 2a7ee888dbb..4b4f2180815 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-03 15:26+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559596982.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makra su přez nastajenja makroweje wěstoty znjemóžnjene."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makra su signowane, ale dokument (kotryž dokumentowe podawki wobsahuje) signowany njeje."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Makra pokazać"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Wěstotne nastajenja pokazać"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Podawki pokazać"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Šěry elegantny"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Kołć"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Modra křiwka"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Módropawsowe plany"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Plack"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Žołta ideja"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Lěsny ptačk"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Čerstwosć"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracija"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Swětła"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Rosćaca swoboda"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Połnócna módrina"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Přirodna ilustracija"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pisak"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klawěr"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Aktowka"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Postup"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Chowanje słónca"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Tradicionelny"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Žiwy"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Žiwjenjoběh"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Tabelariski žiwjenjoběh"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderny"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderny wobchodny list bjez serifow"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderny wobchodny list ze serifami"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Wizitka z logom"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Jednory"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Zjednorjene chinske normalne"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japanšćina, normalna"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Wotstronić"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Wšě zhašeć"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Dołhosć hesła"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Hesło, kotrež sće zapodał, problemy za zhromadne dźěło zawinuje. Prošu zapodajće hesło, kotrež je krótše hač 52 bajtow abo dlěše hač 55 bajtow."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-kliknjenje, zo byšće hyperwotkaz wočinił: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikńće, zo byšće hyperwotkaz wočinił: %(link)"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(wužity přez: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Tabelowy dokument"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Prezentacija"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Rysowanka"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Njedawno wužity"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Žane najnowše znamješka"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Wšě ~standardne předłohi wobnowić"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "S~tandardny tekstowy dokument wobnowić"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Stan~dardnu tabelu wobnowić"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Standar~dnu prezentaciju wobnowić"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Standardnu ~rysowanku wobnowić"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importować"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Ro~zšěrjenja"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Přemjenować"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategoriju přemjenować"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nowa kategorija"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Objektowy inspektor UNO"
diff --git a/source/hsb/svtools/messages.po b/source/hsb/svtools/messages.po
index 3f1afb7c3fe..273b79e0c75 100644
--- a/source/hsb/svtools/messages.po
+++ b/source/hsb/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-16 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559327187.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Internetny zwisk z $(ARG1) njeda so nawjazać."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Serwerowa zmylkowa zdźělenka: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Serwerowa zmylkowa zdźělenka: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Powšitkowny internetny zmylk je wustupił."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Požadane internetne daty w pufrowaku k dispoziciji njejsu a njedadźa so přenjesć, dokelž modus online aktiwizowany njeje."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Wobsah njeda so wutworić."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Datajowe mjeno je předołhe za cilowy datajowy system."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Zapodawanska syntaksa je njepłaćiwa."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Prošu składujće dokument w datajowym formaće %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Maksimalna ličba dokumentow, kotraž da so na jedne dobo wočinić, je docpěła. Dyrbiće jedyn dokument abo wjacore dokumenty začinić, prjedy hač móžeće nowy dokument wočinić."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Wěstotna kopija njeda so wutworić."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Njepłaćiwa datowa dołhosć."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija njemóžna: šćežka aktualny zapis njewobsahuje."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija njemóžna: grat (běhadło) identiski njeje."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Grat (běhadło) připrawjeny njeje."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Wopačna kontrolna suma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija njemóžna: přećiwo pisanju škitany."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Znjemóžńće najprjedy dopušćenski modus."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Zmylk datajoweho formata na poziciji $(ARG1)(linka,špalta) namakany."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filter za tutón datajowy format je znjemóžnjeny w konfiguraciji. Prošu stajće so ze swojim systemowym administratorom do zwiska."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Powšitkowny OLE-zmylk."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Akcija njeda so w aktualnym stawje objekta wuwjesć."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekt akcije njepodpěruje."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekt tutu akciju njepodpěruje."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) při aktiwizowanju objekta"
diff --git a/source/hsb/svx/messages.po b/source/hsb/svx/messages.po
index 4ae6641312d..0a77d9492c2 100644
--- a/source/hsb/svx/messages.po
+++ b/source/hsb/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-18 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/hsb/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n % 100 == 1) ? 0 : ((n % 100 == 2) ? 1 : ((n % 100 == 3 || n % 100 == 4) ? 2 : 3));\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559327200.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Žane ramiki"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Jenož wonkowny ramik"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Wonkowny ramik a horiconalne linije"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Wonkowny ramik a wšě nutřkowne linje"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Wonkowny ramik a wertikalne linije"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Wonkowny ramik bjez změny nutřkownych linijow"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Jenož diagonalne linije"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Ramik diagonalnje dele"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Ramik diagonalnje horje"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Skřižowane linije"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Wšě štyri ramiki"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Jenož lěwa a prawa kroma"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Jenož horni a delni ramik"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Hornja a delnja kroma a wšě horicontalne linije"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Jenož lěwy ramik"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Jenož prawy ramik"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Jenož horni ramik"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Jenož delni ramik"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Hornja a delnja kroma a wšě nutřkowne linije"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Lěwa a prawa kroma a wšě nutřkowne linije"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Z faworitow wotstronić"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Falowace znamješko"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Faworitam přidać"
@@ -10281,19 +10331,19 @@ msgstr "Faworitam přidać"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafikowu wulkosć přepruwować"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Wobraz „%NAME%“ ma přemało pikselow za aktualnu wulkosć (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Wobraz „%NAME%“ ma přewjele pikselow za aktualnu wulkosć (%DPIX% x %DPIY% DPI)"
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index 3287d5d445b..d9fa5587c3d 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-18 01:45+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: Upper Sorbian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hsb/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lisćina 5 pokr."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Hłowowa a nohowa linka"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10618,38 +10618,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabela"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatěrowanje"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperwotkaz"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulowane popisy"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Čisłowanje"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Dalše"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Klikńće, zo byšće aktualizował…"
@@ -16450,55 +16456,55 @@ msgid "Frame"
msgstr "Wobłuk"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Pozicija a wulkosć"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Nastajenja"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Wobběh"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperwotkaz"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Ramiki"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Wobłuk"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Špalty"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28895,43 +28901,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Stajće změny, kotrež sće w rajtarku tu přewjedł, na nastajenja wróćo, kotrež eksistowachu, hdyž je so tutón dialog wočinił."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Powšitkowne"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Pismo"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Pozicija"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aziske wuhotowanje"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Wuzběhnjenje"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Ramiki"
@@ -28943,85 +28949,85 @@ msgid "List Style"
msgstr "Lisćinowa předłoha"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Swójske předłohi pomjenować a schować"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Powšitkowne"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Wubjerće předdefinowany naličenski typ"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Njerjadowany"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Wubjerće předdefinowanu čisłowanu lisćinu"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Čisłowany"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Wubjerće předdefinowany rozrjadowanski format"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Rozrjad"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Wubjerće předdefinowany grafiski naličenski symbol"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Wobraz"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Změńće zasunjenje, wotstup a wusměrjenje za lisćinowe čisła abo symbole"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Pozicija"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Wuhotujće swójski lisćinowy abo rozrjadowanski format"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Přiměrić"
@@ -29033,109 +29039,109 @@ msgid "Paragraph Style"
msgstr "Wotstawkowa předłoha"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Powšitkowne"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Zasunjenja a wotstupy"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Wusměrjenje"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstowy běh"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aziska typografija"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Pismo"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Pismowe efekty"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Pozicija"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aziske wuhotowanje"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Wuzběhnjenje"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatory"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Iniciale"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Płonina"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Ramiki"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Wuměnjenje"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Nastajće rozrjadowansku runinu, lisćinowu předłohu a linkowe čisłowanje za wotstawkowu předłohu."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Rozrjad a lisćina"
@@ -29147,55 +29153,55 @@ msgid "Frame Style"
msgstr "Wobłukowa předłoha"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Powšitkowne"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Typ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Nastajenja"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Wobběh"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Płonina"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Ramiki"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Špalty"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29213,61 +29219,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Powšitkowne"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Strona"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Płonina"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparenca"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Hłowowa linka"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Nohowa linka"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Ramiki"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Špalty"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nóžka"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstowa lěsyca"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index a326032e6b4..3714d8471f9 100644
--- a/source/hu/cui/messages.po
+++ b/source/hu/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-25 13:25+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hu/>\n"
@@ -2561,11 +2561,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Nyisson meg egy CSV fájlt új lapként az aktuális munkafüzetben a Munkalap ▸ Munkalap beszúrása fájlból menüponttal."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Az alapértelmezett formázásokkal írhat tovább a félkövér, dőlt, vagy aláhúzás használata után, ha megnyomja a %MOD1+Shift+X kombinációt."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/hu/helpcontent2/source/text/shared/00.po b/source/hu/helpcontent2/source/text/shared/00.po
index ef64525a6ed..9362d95202b 100644
--- a/source/hu/helpcontent2/source/text/shared/00.po
+++ b/source/hu/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index f10142ebd52..de91f827996 100644
--- a/source/hu/helpcontent2/source/text/shared/01.po
+++ b/source/hu/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-01 12:36+0000\n"
"Last-Translator: Armin Timar <timar.armin@gmail.com>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/hu/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">A kijelölt képet az eredeti méretére állítja vissza.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Szervező"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>szervezés; stílusok</bookmark_value><bookmark_value>stílusok; szervezés</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Szervező</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index f67e990e4af..e78526e6732 100644
--- a/source/hu/helpcontent2/source/text/shared/optionen.po
+++ b/source/hu/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-03 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/hu/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/hu/helpcontent2/source/text/swriter/01.po b/source/hu/helpcontent2/source/text/swriter/01.po
index dacca1d74bf..a1337d8fdcf 100644
--- a/source/hu/helpcontent2/source/text/swriter/01.po
+++ b/source/hu/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-29 20:37+0000\n"
"Last-Translator: Armin Timar <timar.armin@gmail.com>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/hu/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/hu/helpcontent2/source/text/swriter/guide.po b/source/hu/helpcontent2/source/text/swriter/guide.po
index 8d711bdeb0e..e791a028ae0 100644
--- a/source/hu/helpcontent2/source/text/swriter/guide.po
+++ b/source/hu/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-01 12:36+0000\n"
"Last-Translator: Armin Timar <timar.armin@gmail.com>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/hu/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Az oldalstílusok listájában kattintson a jobb egérgombbal a \"Bal oldal\" elemre, majd válassza a <emph>Módosítás</emph> menüparancsot."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Kattintson a <emph>Szervező</emph> fülre."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Lehetősége van különböző élőfejeket és élőlábakat használni a dokumentum különböző oldalain mindaddig, amíg az oldalak különböző oldalstílust használnak. A $[officename] számos előre létrehozott oldalstílust tartalmaz, például <emph>Első oldal</emph>, <emph>Bal oldal</emph> és <emph>Jobb oldal</emph>, illetve saját oldalstílust is létrehozhat."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Lehetőség van a tükrözött oldalelrendezés használatára is, ha olyan oldalstílushoz akar élőfejet hozzáadni, amely különböző külső és belső margókkal rendelkezik. Ezen lehetőség oldalstílusként való alkalmazásához válassza a <item type=\"menuitem\">Formátum - Oldalstílus</item> lehetőséget, kattintson az <item type=\"menuitem\">Oldal</item> fülre, majd az <item type=\"menuitem\">Elrendezés beállításai</item> területen válassza a <item type=\"menuitem\">Tükrözött</item> lehetőséget az <item type=\"menuitem\">Oldalelrendezés</item> mezőben."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Az oldalstílusok listájában kattintson a jobb egérgombbal a „Jobb oldal” elemre, majd válassza a <emph>Módosítás</emph> lehetőséget."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Az <item type=\"menuitem\">Oldalstílusok</item> párbeszédablakon kattintson az <item type=\"menuitem\">Élőfej</item> fülre."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Válassza az <item type=\"menuitem\">Élőfej bekapcsolása</item> lehetőséget, majd kattintson a <item type=\"menuitem\">Szervező</item> fülre."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "A <item type=\"menuitem\">Következő stílus</item> listában válassza a „Bal oldal” elemet."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Az <item type=\"menuitem\">Oldalstílusok</item> párbeszédablakon kattintson az <item type=\"menuitem\">Élőfej</item> fülre."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Válassza az <item type=\"menuitem\">Élőfej bekapcsolása</item> lehetőséget, majd kattintson a <item type=\"menuitem\">Szervező</item> fülre."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "A <item type=\"menuitem\">Következő stílus</item> listában válassza a „Jobb oldal” elemet."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Az oldalstílusok listájában kattintson a jobb egérgombbal egy elemre, majd válassza az <emph>Új</emph> lehetőségét."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "A <emph>Szervező</emph> lapon írjon be egy nevet az oldalstílusnak a <emph>Név</emph> mezőbe."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Válassza az <emph>Oldaltörés</emph> lehetőséget."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "A <item type=\"menuitem\">Stílus</item> listában válasszon egy olyan oldalstílust, amely az oldalhátteret használja."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,14 +11860,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Automatikus oldaltörés</emph> történik egy olyan oldal végén, amelyet egy másik oldalstílusú oldal követ."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Például az \"Első oldal\" oldalstílusnak a következő stílusa az \"Alapértelmezett oldalstílus\". Ennek megtekintéséhez nyomja meg a <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> billentyűkombinációt a <menuitem>Stílusok</menuitem> ablak megnyitásához, kattintson a <menuitem>Lapstílusok</menuitem> ikonra, kattintson a jobb gombbal az \"Első oldal\" bejegyzésre. Válassza a <menuitem>Módosítás</menuitem> lehetőséget a helyi menüből. A <menuitem>Szervező</menuitem> lapon megjelenik a \"Következő stílus\"."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Az egér jobb oldali gombjával kattintson egy oldalstílusra, és válassza az <emph>Új</emph> lehetőséget. Az új oldalstílus kezdetben ugyanazokkal a tulajdonságokkal rendelkezik, mint a kiválasztott oldalstílus."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "A <emph>Szervező</emph> lapon írjon be egy nevet az oldalstílusnak a <emph>Név</emph> mezőbe, például „Saját fekvő”."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Egy oldal hosszúságú stílusok"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Az oldalstílus meghatározható úgy is, hogy csak egy oldalra legyen érvényes. Az „Első oldal” stílus erre egy példa. Ezt úgy kell beállítani, hogy egy másik oldalstílust „következő stílusként” kell meghatározni a <menuitem>Formátum - Oldalstílus - Szervező</menuitem> lapon."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Oldalstílus hatókörének kézi beállítása"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Az „Alapértelmezett” oldalstílus nem állít be eltérő „következő stílust” a <menuitem>Formátum - Oldal - Szervező</menuitem> lapon. Ehelyett a „következő stílus” szintén „Alapértelmezett” lesz. Minden oldalstílus, amelyet ugyanaz az oldalstílus követ, több oldalon keresztül átnyúlhat. Az oldalstílusok alsó és felső szegélyét az „oldaltörések stílussal” határozza meg. Minden két „oldaltörések stílussal” közötti oldal ugyanazzal a stílussal rendelkezik."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Az oldalstílusok listájában kattintson a jobb egérgombbal egy elemre, majd válassza az <emph>Új</emph> lehetőségét."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "A <emph>Szervező</emph> lapon írjon be egy nevet a <emph>Név</emph> mezőbe."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/hu/sc/messages.po b/source/hu/sc/messages.po
index 7153eb5f877..a571a17aa9e 100644
--- a/source/hu/sc/messages.po
+++ b/source/hu/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-24 15:41+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/hu/>\n"
@@ -14280,14 +14280,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14510,14 +14511,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23227,91 +23229,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Vonal"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Terület"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Árnyékolás"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Átlátszóság"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Betűkészlet"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Betűhatások"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Behúzás és térköz"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Szöveg"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Szöveg animálása"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Méretvonal"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Igazítás"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulátorok"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Kiemelés"
@@ -23910,102 +23912,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Törlés"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Nincs szegély"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Minden szegély"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Külső szegélyek"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Vastag dobozszegély"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Vastag alsó szegély"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dupla alsó szegély"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Felső és vastag alsó szegély"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Felső és dupla alsó szegély"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Bal oldali szegély"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Jobb oldali szegély"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Felső szegély"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Alsó szegély"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Átlós felső szegély"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Átlós alsó szegély"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Felső és alsó szegély"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bal és jobb szegélyek"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24043,49 +23949,49 @@ msgid "Format Cells"
msgstr "Cellák formázása"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Számok"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Betűkészlet"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Betűhatások"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Igazítás"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Szegélyek"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Háttér"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cellavédelem"
@@ -28174,43 +28080,43 @@ msgid "Page Style"
msgstr "Oldalstílus"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Oldal"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Szegélyek"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Háttér"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Élőfej"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Élőláb"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Munkalap"
@@ -28252,55 +28158,55 @@ msgid "Cell Style"
msgstr "Cellastílus"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Számok"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Betűkészlet"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Betűhatások"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Igazítás"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Szegélyek"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Háttér"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cellavédelem"
diff --git a/source/hu/sd/messages.po b/source/hu/sd/messages.po
index dd1cdbb4b4b..6304c56badd 100644
--- a/source/hu/sd/messages.po
+++ b/source/hu/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-24 15:41+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/hu/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Normál"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Vonal"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Terület"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Árnyékolás"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Átlátszóság"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Betűkészlet"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Betűhatások"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Behúzás és térköz"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Szöveg"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Szöveg animálása"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Méretvonal"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Összekötő"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Igazítás"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulátorok"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Kiemelés"
diff --git a/source/hu/sfx2/messages.po b/source/hu/sfx2/messages.po
index 6cbee3ffab7..940bc78de63 100644
--- a/source/hu/sfx2/messages.po
+++ b/source/hu/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-01-22 01:45+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hu/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "A makrók a makróbiztonsági beállítások miatt le lettek tiltva."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "A makrók alá vannak írva, de a (dokumentumeseményeket tartalmazó) dokumentum nincs aláírva."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Makrók megjelenítése"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Biztonsági beállítások megjelenítése"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Események megjelenítése"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Elegáns szürke"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Méhkas"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kék görbe"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Tervrajzok"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Cukorka"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Sárga ötlet"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNS"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fókusz"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Erdei madár"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frissesség"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiráció"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Fények"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Növekvő szabadság"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolisz"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Éjfélkék"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Természeti illusztráció"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Ceruza"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Zongora"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfólió"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Folyamat"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Napnyugta"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Régiség"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Élénk"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Önéletrajz"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Alapértelmezett"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modern üzleti levél talpatlan betűvel"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Modern üzleti levél talpas betűvel"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Névjegykártya logóval"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Egyszerű"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Egyszerűsített kínai normál"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japán normál"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Eltávolítás"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Összes törlése"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Jelszóhossz"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "A megadott jelszó interoperabilitási problémákat okoz. Adjon meg egy 52 bájtnál rövidebb, vagy 55 bájtnál hosszabb jelszót."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}+kattintás a hiperhivatkozás megnyitásához: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Kattintás a hiperhivatkozás megnyitásához: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(használja: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokumentum"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Munkafüzet"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Bemutató"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Rajz"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Legutóbb használt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Nincsenek legutóbbi karakterek"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "~Minden alapértelmezett sablon visszaállítása"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Alapértelmezett ~szöveges dokumentum visszaállítása"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Alapértelmezett m~unkafüzet visszaállítása"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Alapértelmezett ~bemutató visszaállítása"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Alapértelmezett ~rajz visszaállítása"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importálás"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~Kiegészítők"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Átnevezés"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategória átnevezése"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Új kategória"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO objektumvizsgáló"
diff --git a/source/hu/svtools/messages.po b/source/hu/svtools/messages.po
index 9d30e633e52..f5489441f73 100644
--- a/source/hu/svtools/messages.po
+++ b/source/hu/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-21 01:45+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hu/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nem létesíthető hálózati kapcsolat a(z) $(ARG1) géppel."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"A kiszolgáló hibaüzenete: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"A kiszolgáló hibaüzenete: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Általános hálózathiba."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "A kért adat nem található a gyorsítótárban, és kapcsolat nélküli módban nem szerezhető be a hálózaton keresztül sem."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "A tartalom nem hozható létre."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "A megadott fájlnév túl hosszú a célfájlrendszer számára."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "A beviteli szintaxis érvénytelen."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Mentse a dokumentumot %PRODUCTNAME %PRODUCTVERSION fájlformátumban."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Elérte az egyszerre megnyitható dokumentumok számának maximumát. Új dokumentum megnyitása előtt be kell zárnia egy vagy több dokumentumot."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nem sikerült létrehozni a biztonsági mentést."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Hibás adathossz."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "A művelet nem lehetséges: az útvonal tartalmazza az aktuális könyvtárat."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "A művelet nem hajtható végre: az eszköz (meghajtó) nem egyezik."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Az eszköz (meghajtó) nem áll rendelkezésre."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Hibás ellenőrző-összeg."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "A művelet nem hajtható végre: írásvédett."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Először kapcsolja ki a megosztást."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Fájlformátumhiba ezen a helyen: $(ARG1)(sor, oszlop)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "A fájlformátumhoz tartozó szűrőt a konfigurációban letiltották. Keresse meg a rendszergazdát."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Általános OLE-hiba."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "A művelet nem nem hajtható végre az objektum jelenlegi állapotában."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Az objektum nem támogat egyetlen műveletet sem."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Az objektum nem támogatja ezt a műveletet."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) történt az objektum aktiválása közben."
diff --git a/source/hu/svx/messages.po b/source/hu/svx/messages.po
index 9228aca1462..bff2fa71e56 100644
--- a/source/hu/svx/messages.po
+++ b/source/hu/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-22 01:45+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/hu/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Szegély nélkül"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Csak külső szegély"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Külső szegély és vízszintes vonalak"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Külső szegély és az összes belső vonal"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Külső szegély és függőleges vonalak"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Külső szegély a belső vonalak módosítása nélkül"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Csak átlós vonalak"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Átlós alsó szegély"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Átlós felső szegély"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kereszt szegély"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Mind a négy szegély"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Csak jobb és bal szegély"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Csak fenti és lenti szegély"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Fenti és lenti szegély és az összes vízszintes vonal"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Csak bal oldali szegély"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Csak jobb oldali szegély"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Csak felső szegély"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Csak alsó szegély"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Fenti és lenti szegély és az összes belső vonal"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Jobb és bal szegély és az összes belső vonal"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kép méretének ellenőrzése"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "A(z) „%NAME%” kép túl kevés képpontot tartalmaz az aktuális mérethez (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "A(z) „%NAME%” kép túl sok képpontot tartalmaz az aktuális mérethez (%DPIX% x %DPIY% DPI)"
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index 3d0462c7376..f3448b7cfe0 100644
--- a/source/hu/sw/messages.po
+++ b/source/hu/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-01-25 13:25+0000\n"
"Last-Translator: Gábor Kelemen <gabor.kelemen.extern@allotropia.de>\n"
"Language-Team: Hungarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hu/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lista 5 folytatása"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Élőfej és élőláb"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Táblázat"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formázás"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Szimulált képaláírások"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Számozás"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Egyéb"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Keret"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Pozíció és méret"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Beállítások"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Körbefuttatás"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperhivatkozás"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Szegélyek"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Terület"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Átlátszóság"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Hasábok"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makró"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Visszaállítja az itt látható változtatásokat a párbeszédablak megnyitásakor aktuális értékekre."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Betűkészlet"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Betűhatások"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Pozíció"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Ázsiai tördelés"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Kiemelés"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Szegélyek"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Listastílus"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Felhasználói stílusok elnevezése és elrejtése"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Válasszon előre megadott felsorolásjel-típust"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Rendezetlen"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Válasszon előre megadott rendezett listát"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Rendezett"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Válasszon előre megadott vázlatszintformátumot"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Vázlat"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Válasszon előre megadott grafikus felsorolásjelet"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Kép"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Módosítsa a behúzás, térköz és az igazítás beállításait a listák számaihoz vagy szimbólumaihoz"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Pozíció"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Tervezze meg a saját vázlatszint-formátumát"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Testreszabás"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Bekezdésstílus"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Behúzás és térköz"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Igazítás"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Szövegbeosztás"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Ázsiai tipográfia"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Betűkészlet"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Betűhatások"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Pozíció"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Ázsiai tördelés"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Kiemelés"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulátorok"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Iniciálék"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Terület"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Átlátszóság"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Szegélyek"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Feltétel"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "A bekezdésstílus vázlatszintjének, listastílusának és sorszámozásának beállítása."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Vázlatszintek és listák"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Keret stílusa"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Típus"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Beállítások"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Körbefuttatás"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Terület"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Átlátszóság"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Szegélyek"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Hasábok"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makró"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Szabványos"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Oldal"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Terület"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Átlátszóság"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Élőfej"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Élőláb"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Szegélyek"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Hasábok"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Lábjegyzet"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Szövegrács"
diff --git a/source/hy/cui/messages.po b/source/hy/cui/messages.po
index 24124ad8949..8944a08e5f6 100644
--- a/source/hy/cui/messages.po
+++ b/source/hy/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-25 07:43+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-24 08:28+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/hy/>\n"
"Language: hy\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Բացեք CSV նիշքը որպես նոր թերթ ընթացիկ աղյուսակում Թերթ ▸ Թերթ նիշքից:"
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Դուք կարող եք շարունակել գրել լռելյայն ձևաչափման ատրիբուտներով՝ ձեռքով թավ, շեղ կամ ընդգծված կիրառելուց հետո՝ սեղմելով %MOD1+Shift+X։"
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "րոպեներ"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Փոխարենը ինքնաշխատ կերպով պահպանեք փաստաթուղթը"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Նշում է, որ գրասենյակային փաթեթն ինքն է պահպանում փոփոխված փաստաթուղթը՝ ժամանակավոր AutoRecover տարբերակ ստեղծելու փոխարեն: Օգտագործում է նույն ժամանակային միջակայքը, ինչ անում է AutoRecovery-ը:"
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/hy/sc/messages.po b/source/hy/sc/messages.po
index 358b6ab79d3..34e6c779e5e 100644
--- a/source/hy/sc/messages.po
+++ b/source/hy/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-15 01:45+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/hy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564609380.000000\n"
#. kBovX
@@ -14279,19 +14279,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Համապատասխանեցնել ռեժիմը"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - ճշգրիտ համընկնում: Կվերադարձնի #N/A, եթե համընկնում չկա, (կանխադրված):\n"
-"-1 - Ճշգրիտ համընկնում կամ հաջորդ ավելի փոքր տարր:\n"
-"1 - Ճշգրիտ համընկնում կամ հաջորդ ավելի մեծ տարր:\n"
-"2 - Ներդրվող նշանների կամ սովորական արտահայտությունների համընկնում:"
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14517,19 +14514,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Համապատասխանեցնել ռեժիմը"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - ճշգրիտ համընկնում: Կվերադարձնի #N/A, եթե համընկնում չկա, (կանխադրված):\n"
-"-1 - Ճշգրիտ համընկնում կամ հաջորդ ավելի փոքր տարր:\n"
-"1 - Ճշգրիտ համընկնում կամ հաջորդ ավելի մեծ տարր:\n"
-"2 - Ներդրվող նշանների կամ սովորական արտահայտությունների համընկնում:"
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23241,91 +23235,91 @@ msgid "_Standard"
msgstr "_Ստանդարտ"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Գիծ"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Տարածք"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ստվերում"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Տառատեսակ"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Նահանջներ և բացատներ"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Տեքստ"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Տեքստի անիմացիա"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Չափագրում"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Հավասարեցում"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ասիական տպագրություն"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Սյունատներ"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Գունաընդգծում"
@@ -23924,102 +23918,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Ջնջել"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Չկա եզրագիծ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Բոլոր եզրագծերը"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Եզրագծերից դուրս"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Վանդակի հաստ եզրագիծ"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Ստորին հաստ եզրագիծ"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Ստորին կրկնակի եզրագիծ"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Վերևի և հաստ ներքևի եզրագծերը"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Վերևի և ներքևի կրկնակի եզրագծերը"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Ձախ եզրագիծ"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Աջ եզրագիծ"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Վերևի եզրագիծ"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Ներքևի եզրագիծ"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Անկյունագծային վերև եզրագիծ"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Անկյունագծային ներքև եզրագիծ"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Վերևի և ներքևի եզրագծեր"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Ձախ և աջ եզրագծեր"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24057,49 +23955,49 @@ msgid "Format Cells"
msgstr "Ձևաչափել բջիջները"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Թվեր"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Տառատեսակ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Հավասարեցում"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Ասիական տպագրություն"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Եզրագծեր"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Հետնամաս"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Բջջի պաշտպանություն"
@@ -28188,43 +28086,43 @@ msgid "Page Style"
msgstr "Էջի ոճը"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Էջ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Սահմաններ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Հետնամաս"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Վերնախորագիր"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Տողատակ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Թերթիկ"
@@ -28266,55 +28164,55 @@ msgid "Cell Style"
msgstr "Բջջի ոճ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Թվեր"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Տառատեսակ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Հավասարեցում"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ասիական գրաշարվածք"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Սահմաններ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Հետնամաս"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Բջջի պաշտպանություն"
diff --git a/source/hy/sd/messages.po b/source/hy/sd/messages.po
index 5dfc6adc873..e7e019d3add 100644
--- a/source/hy/sd/messages.po
+++ b/source/hy/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/hy/>\n"
@@ -9557,97 +9557,97 @@ msgid "_Standard"
msgstr "_Ստանդարտ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Գիծ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Տիրույթ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ստվերում"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Տառատեսակ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Նահանջներ և բացատներ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Տեքստ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Տեքստի անիմացիա"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Չափագրում"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Միակցիչ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Հավասարեցում"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ասիական գրաշարվածք"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Սյունատներ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Գունաընդգծում"
diff --git a/source/hy/sfx2/messages.po b/source/hy/sfx2/messages.po
index 59e63020762..b90b87fe39d 100644
--- a/source/hy/sfx2/messages.po
+++ b/source/hy/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/hy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540150326.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Մակրոներն անջատված են \"Մակրո անվտանգություն\" կարգավորումների պատճառով:"
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Մակրոները ստորագրված են, բայց փաստաթուղթը (փաստաթղթային իրադարձություններ պարունակող) ստորագրված չէ։"
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Ցույց տալ մակրոները"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Ցույց տալ անվտանգության ընտրանքները"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Ցույց տալ Իրադարձությունները"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Մոխրագույն նրբագեղ"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Մեղվափեթակ"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Կապույտ կոր"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Նախագծային գծագրեր"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Կոնֆետ"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Դեղին գաղափար"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ԴՆԹ"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Կիզակետ"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Անտառային թռչուն"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Թարմություն"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ոգեշնչում"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Լույսեր"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Աճող ազատությու՞ն։"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Մայր երկիր"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Կեսգիշերային կապույտ"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Բնության նկարազարդում"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Մատիտ"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Դաշնամուր"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Պորտֆոլիո"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Առաջընթաց"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Մայրամուտ"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Հնաոճ"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Վառ"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Ինքնակենսագրություն"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Ամփոփում"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Լռելյայն"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Ժամանակակից"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Ժամանակակից բիզնես նամակ sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Ժամանակակից բիզնես նամակ serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Այցեքարտ տարբերանշանով"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Պարզ"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Պարզեցված չինական նորմալ"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Ճապոնական նորմալ"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Հեռացնել"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Մաքրել բոլորը"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Գաղտնաբառի երկարությունը"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-սեղմեք գերհղումը՝ բացելու համար %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Սեղմեք գերհղումը բացելու համար՝ %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "օգտագործված: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Փաստաթուղթ"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Էլեկտրոնային աղյուսակ"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Ներկայացում"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Գծագրում"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Վերջերս օգտագործված"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Վերջին նիշեր չկան"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Վերականգնել բոլոր կան~խադրված ձևանմուշները"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Վերականգնել կան~խադրված տեքստային փաստաթուղթը"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Վերականգնել կան~խադրված էլեկտրոնային աղյուսակը"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Վերականգնել կան~խադրված շնորհանդեսը"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Վերականգնել կան~խադրված Նկարչությունը"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Ներմուծել"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Ը~նդլայնումներ"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Անվանափոխել"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Անվանափոխել դասը"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Նոր դաս"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO օբյեկտների տեսուչ"
diff --git a/source/hy/svtools/messages.po b/source/hy/svtools/messages.po
index 99c46d8713f..207acd9abdd 100644
--- a/source/hy/svtools/messages.po
+++ b/source/hy/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-16 06:54+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/hy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564207028.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Չհաջողվեց ինտերնետ կապ հաստատել $(ARG1) հետ:"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Կայանի սխալի հաղորդագրությունը՝ $(ARG1):"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Կայանի սխալի հաղորդագրություն՝ $(ARG1):"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Համացանցի ընդհանուր սխալ է տեղի ունեցել:"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Ինտերնետի պահանջվող տվյալները հասանելի չեն քեշում և չեն կարող փոխանցվել, քանի որ Առցանց ռեժիմը ակտիվացված չէ:"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Բովանդակությունը չհաջողվեց ստեղծել:"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Նիշքի անունը չափազանց երկար է թիրախային նիշքային համակարգի համար:"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Մուտքի շարահյուսությունն անվավեր է:"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Խնդրում ենք պահպանել փաստաթուղթը %PRODUCTNAME %PRODUCTVERSION նիշքի ձևաչափով:"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Հասել եք փաստաթղթերի առավելագույն քանակին, որոնք կարող են բացվել միաժամանակ: Նախքան նոր փաստաթուղթ բացելը, դուք պետք է փակեք մեկ կամ մի քանի փաստաթուղթ:"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Չհաջողվեց ստեղծել պահուստային պատճեն:"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Տվյալի սխալ երկարություն:"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Ֆունկցիան հնարավոր չէ. ուղին պարունակում է ընթացիկ գրացուցակ:"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Գործառույթը հնարավոր չէ. սարքը (շարժիչը) նույնական չէ:"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Սարքը (վարորդը) պատրաստ չէ:"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Սխալ ստուգիչ գումար:"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Գործողությունն անհնար է կատարել. գրապաշտպանված վիճակ։"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Նախ անջատեք համօգտագործման ռեժիմը:"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Նիշքի ձևաչափի սխալ է հայտնաբերվել $(ARG1) (տող, սյուն):"
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Այս նիշքի ձևաչափի զտիչը կազմաձևման մեջ անջատված է: Խնդրում ենք կապվել ձեր համակարգի ադմինիստրատորի հետ:"
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Ընդհանուր OLE սխալ:"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Գործողությունը չի կարող կատարվել օբյեկտի ներկայիս վիճակում:"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Օբյեկտը չի աջակցում որևէ գործողություն:"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Օբյեկտը չի աջակցում այս գործողությունը:"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) ակտիվացնող օբյեկտ"
diff --git a/source/hy/svx/messages.po b/source/hy/svx/messages.po
index 6568bf5d661..2cfa09a9639 100644
--- a/source/hy/svx/messages.po
+++ b/source/hy/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-20 01:45+0000\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/hy/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564247892.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Չկան սահմաններ"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Միայն արտաքին սահմանը"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Արտաքին սահման և հորիզոնական գծեր"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Արտաքին սահմանը և բոլոր ներքին գծերը"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Արտաքին սահման և ուղղահայաց գծեր"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Արտաքին սահման՝ առանց ներքին գծերի փոփոխության"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Միայն անկյունագծային գծեր"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Անկյունագծային ներքև եզրագիծ"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Անկյունագծային վերև եզրագիծ"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Խաչուփաչ ուրվագիծ"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Բոլոր չորս սահմանները"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Միայն ձախ և աջ սահմանները"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Միայն վերևի և ներքևի սահմանները"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Վերևի և ներքևի սահմանները և բոլոր հորիզոնական գծերը"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Միայն ձախ սահմանը"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Միայն աջ սահմանը"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Միայն վերևի սահմանը"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Միայն ներքևի սահմանը"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Վերևի և ներքևի սահմանները և բոլոր ներքին գծերը"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Ձախ և աջ սահմանները և բոլոր ներքին գծերը"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Հեռացնել ընտրյալներից"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Բացակայող նիշ"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Ավելացնել ընտրյալների մեջ"
@@ -10281,19 +10331,19 @@ msgstr "Ավելացնել ընտրյալների մեջ"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Գրաֆիկական չափի ստուգում"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "%NAME%' պատկերն ունի շատ քիչ պիքսել ընթացիկ չափի համար՝ (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "%NAME%' պատկերն ունի չափից շատ պիքսել ընթացիկ չափի համար՝ (%DPIX% x %DPIY% DPI)"
diff --git a/source/hy/sw/messages.po b/source/hy/sw/messages.po
index 00b78658900..a3fcfa5d7b6 100644
--- a/source/hy/sw/messages.po
+++ b/source/hy/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 13:39+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 11:46+0200\n"
"Last-Translator: Tigran Zargaryan <tigranflib@gmail.com>\n"
"Language-Team: Armenian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/hy/>\n"
"Language: hy\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Ցուցակ 5 շարունակ."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Տողատակ և Վերնախորագիր"
+msgstr ""
#. uCLQX
#: sw/inc/strings.hrc:139
@@ -10585,38 +10585,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Աղյուսակ"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Ձևաչափում"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Գերհղում"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Մոդելացված ենթագրեր"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Թվագրում"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Այլ"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Սեղմեք թարմացնելու համար..."
@@ -16417,55 +16423,55 @@ msgid "Frame"
msgstr "Շրջանակ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Դիրք և Չափ"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Ընտրանքներ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Փաթաթել"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Գերհղում"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Եզրագծեր"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Տարածք"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Սյունակներ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Մակրո"
@@ -28862,43 +28868,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Վերադարձեք այստեղ ցուցադրված ներդիրում կատարված ցանկացած փոփոխություն այն կարգավորումներին, որոնք առկա էին այս երկխոսությունը բացելիս:"
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Տառատեսակ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Դիրք"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Ասիական դասավորություն"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Գունաընդգծում"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Եզրագծեր"
@@ -28910,85 +28916,85 @@ msgid "List Style"
msgstr "Ցուցակի ոճ"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Անվանեք և թաքցրեք օգտագործողի կողմից սահմանված ոճերը"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Ընտրեք նախապես սահմանված նշիկի տեսակը"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Չպատվիրված"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Ընտրեք նախապես սահմանված կարգավորված ցանկը"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Կարգավորված"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Ընտրեք նախապես սահմանված ուրվագծի ձևաչափը"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Ուրվագիծ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Ընտրեք նախապես սահմանված գրաֆիկական նշիկի նշանը"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Պատկեր"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Փոփոխեք նահանջը, տարածությունը և հավասարեցումը ցուցակի թվերի կամ նշանների համար"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Դիրք"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Նախագծեք ձեր սեփական ցուցակը կամ ուրվագծային ձևաչափը"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Անհատականացնել"
@@ -29000,109 +29006,109 @@ msgid "Paragraph Style"
msgstr "Պարբերության ոճ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Նահանջներ և միջատարածքներ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Հավասարեցում"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Դիրքն էջում"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Ասիական տպագրություն"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Տառատեսակ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Տառատեսակի էֆեկտներ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Դիրք"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Ասիական դասավորություն"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Գունաընդգծում"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Սյունատներ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Գցեք մեծատառերը"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Տարածք"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Եզրագծեր"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Պայման"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Սահմանեք ուրվագծի մակարդակը, ցուցակի ոճը և տողերի համարակալումը պարբերության ոճի համար:"
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Ուրվագիծ և ցուցակ"
@@ -29114,55 +29120,55 @@ msgid "Frame Style"
msgstr "Շրջանակի ոճ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Տեսակ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Ընտրանքներ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Փաթաթել"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Տարածք"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Եզրագծեր"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Սյունակներ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Մակրո"
@@ -29180,61 +29186,61 @@ msgid "Standard"
msgstr "Ստանդարտ"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Ընդհանուր"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Էջ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Տարածք"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Թափանցիկություն"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Վերնախորագիր"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Տողատակ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Եզրագծեր"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Սյունակներ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Տողատակ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Տեքստի ցանց"
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index 412f6227fcd..2197dc6c0a4 100644
--- a/source/id/cui/messages.po
+++ b/source/id/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/id/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Buka berkas CSV sebagai lembar baru di lembar sebar saat ini melalui menu Lembar ▸ Sisipkan Lembar dari Berkas."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Anda dapat melanjutkan menulis dengan atribut pemformatan baku setelah secara manual menerapkan tebal, miring, atau garis bawah dengan menekan %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/id/helpcontent2/source/text/shared/00.po b/source/id/helpcontent2/source/text/shared/00.po
index 5bb3c0fca78..8c39e58b08d 100644
--- a/source/id/helpcontent2/source/text/shared/00.po
+++ b/source/id/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-09-09 14:36+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/id/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13744,67 +13744,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Pilih tab <emph>Format - Sel - Latar Belakang</emph> .</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13816,13 +13816,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 9fb2027a866..a6dba16dfc1 100644
--- a/source/id/helpcontent2/source/text/shared/01.po
+++ b/source/id/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libo 4.3 help shared/01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-10 09:33+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/id/>\n"
@@ -23463,14 +23463,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Mengembalikan grafik yang dipilih ke ukuran aslinya.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organisasikan"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23481,14 +23481,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Pengorganisasi</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index 7a57e2012b2..dbaef686698 100644
--- a/source/id/helpcontent2/source/text/shared/optionen.po
+++ b/source/id/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-04-11 13:27+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/id/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/id/helpcontent2/source/text/swriter/01.po b/source/id/helpcontent2/source/text/swriter/01.po
index 74a86a40b2e..d39d03e8d47 100644
--- a/source/id/helpcontent2/source/text/swriter/01.po
+++ b/source/id/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: swriter 3.6\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-22 14:04+0000\n"
"Last-Translator: jokosu10 <susilo.j8@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/id/>\n"
@@ -23363,13 +23363,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/id/helpcontent2/source/text/swriter/guide.po b/source/id/helpcontent2/source/text/swriter/guide.po
index fe9aa2a2721..b1b1af87ded 100644
--- a/source/id/helpcontent2/source/text/swriter/guide.po
+++ b/source/id/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-07-13 10:35+0000\n"
"Last-Translator: darklinux <taufanlinux@gmail.com>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/id/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Dalam daftar gaya halaman, klik-kanan \"Halaman Kiri\" dan pilih <emph>Modifikasi</emph>"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klik tabulasi <emph>Opsi</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Anda dapat memakai kepala dan kaki yang berbeda pada halaman yang berlainan dalam dokumen Anda, selama halaman-halaman tersebut memakai gaya halaman yang berbeda. $[officename] menyediakan beberapa gaya halaman terpradefinisi, seperti misalnya <emph>Halaman pertama</emph>, <emph>Halaman kiri</emph>, dan <emph>Halaman kanan</emph>, atau Anda dapat membuat gaya halaman ubahan."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klik kanan \"Halaman Kanan\" dalam daftar gaya halaman dan pilih <emph>Mengubah</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Dalam dialog <item type=\"menuitem\">Gaya Halaman</item>, klik tab <item type=\"menuitem\">Kepala</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Pilih <item type=\"menuitem\">Kepala menyala</item> dan klik tab <item type=\"menuitem\">Pengorganisasi</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Dalam kotak <item type=\"menuitem\">Gaya Selanjutnya</item>, pilih \"Halaman Kiri\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Dalam jendela <emph>Gaya</emph>, klik kanan \"Halaman Kiri\" dalam daftar gaya halaman dan pilih <emph>Ubah</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Dalam dialog <item type=\"menuitem\">Gaya Halaman</item>, klik tab <item type=\"menuitem\">Kepala</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Pilih <item type=\"menuitem\">Kepala menyala</item> dan klik tab <item type=\"menuitem\">Pengorganisasi</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Dalam kotak <item type=\"menuitem\">Gaya Selanjutnya</item>, pilih \"Halaman Kanan\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Dalam daftar gaya halaman, klik kanan item, lalu pilih <emph>Baru</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Pada halaman tab <emph> Organizer </emph>, ketikkan nama untuk gaya halaman di kotak <emph> Nama </emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Pilih <emph>Halaman jeda</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Dalam kotak <item type=\"menuitem\"> Style </item>, pilih gaya halaman yang menggunakan latar belakang halaman."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Sebuah <emph>jeda halaman otomatis</emph> muncul di akhir halaman ketika gaya halaman memiliki \"next style\" berbeda."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Klik kanan gaya halaman dan pilih <emph> Baru </emph>. Gaya halaman baru awalnya mendapatkan semua properti dari gaya halaman yang dipilih."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Pada halaman tab <emph> Organizer </emph>, ketikkan nama untuk gaya halaman di kotak <emph> Nama </emph>. sebagai contoh \"Lanskap Saya\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Gaya Panjang Satu Halaman"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Kisaran Gaya Halaman yang Didefinisikan secara Manual"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Dalam daftar gaya halaman, klik kanan item, lalu pilih <emph>Baru</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Pada tab <emph>Pengelola</emph>, ketikkan nama pada kotak <emph>Nama</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index d3f2237c339..9f92fb82413 100644
--- a/source/id/sc/messages.po
+++ b/source/id/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/id/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1550908361.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Modus Cocok"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Pencocokan persis. Akan menghasilkan #N/A jika tidak ada kecocokan. (bawaan).\n"
-"-1 - Pencocokan persis atau item berikutnya yang lebih kecil.\n"
-"1 - Pencocokan persis atau item berikutnya yang lebih besar.\n"
-"2 - Pencocokan wildcard atau ekspresi reguler."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Modus Cocok"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Pencocokan persis. Akan menghasilkan #N/A jika tidak ada kecocokan. (bawaan).\n"
-"-1 - Pencocokan persis atau item berikutnya yang lebih kecil.\n"
-"1 - Pencocokan persis atau item berikutnya yang lebih besar.\n"
-"2 - Pencocokan wildcard atau ekspresi reguler."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Standar"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Umum"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Garis"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Wilayah"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Pembayangan"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparansi"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Fonta"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efek Fonta"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Indentasi & Jarak Antara"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Teks"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animasi Teks"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Penentuan Dimensi"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Perataan"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografi Asia"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tab"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Penyorotan"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Hapus"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Tanpa Garis Batas"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Semua Garis Batas"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Di Luar Garis Batas"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Garis Batas Kotak Tebal"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Garis Batas Terbawah Tebal"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Garis Batas Terbawah Ganda"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Garis Batas Terbawah Tebal dan Teratas"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Garis Batas Terbawah Ganda dan Teratas"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Garis Batas Kiri"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Garis Batas Kanan"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Garis Batas Teratas"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Garis Batas Terbawah"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Garis Batas Melintang Naik"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Garis Batas Melintang Turun"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Garis Batas Teratas dan Terbawah"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Garis Batas Kiri dan Kanan"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Format Sel"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Angka"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Fonta"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efek Fonta"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Perataan"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografi Asia"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Garis Batas"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Latar Belakang"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Perlindungan Sel"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Gaya Halaman"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Umum"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Halaman"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Garis Batas"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Latar Belakang"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Kepala"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Kaki"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Lembar"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Gaya Sel"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Umum"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Angka"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Fonta"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efek Fonta"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Perataan"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografi Asia"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Garis Batas"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Latar Belakang"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Perlindungan Sel"
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index e241cdc03d5..81329993dea 100644
--- a/source/id/sd/messages.po
+++ b/source/id/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/id/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Umum"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Garis"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Wilayah"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Pembayangan"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparansi"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Fonta"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efek Fonta"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Indentasi & Jarak Antara"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teks"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animasi Teks"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Penentuan Dimensi"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Penghubung"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Perataan"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografi Asia"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tab"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Penyorotan"
diff --git a/source/id/sfx2/messages.po b/source/id/sfx2/messages.po
index 3dc28f8cc0a..6c9ed395e09 100644
--- a/source/id/sfx2/messages.po
+++ b/source/id/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-09 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/id/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563639732.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makro dimatikan karena pengaturan Keamanan Makro."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makro ditandatangani, tetapi dokumen (berisi peristiwa dokumen) tidak ditandatangani."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Tampilkan Makro"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Tampilkan Opsi Keamanan"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Tampilkan Peristiwa"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Abu-abu Elegan"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Sarang Lebah"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Kurva Biru"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Rencana Cetak Biru"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Permen"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gagasan Kuning"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Burung hutan"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Segar"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasi"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Cahaya"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Kebebasan yang Tumbuh"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Biru malam"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Ilustrasi Alam"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pensil"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portofolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Perkembangan"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Matahari Terbenam"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Antik"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Terang"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Lanjutkan"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Baku"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Surat bisnis modern sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Surat bisnis modern serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Kartu nama dengan logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Sederhana"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Cina Sederhana Biasa"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Jepang Biasa"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Buang"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Bersihkan Semua"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Panjang kata sandi"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Kata sandi yang anda masukkan menyebabkan masalah interoperabilitas. Silakan masukkan kata sandi yang lebih pendek dari 52 byte, atau lebih panjang dari 55 byte."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik untuk membuka hipertaut: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik untuk membuka hipertaut: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(dipakai oleh: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokumen"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Lembar Sebar"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentasi"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Gambar"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Digunakan baru-baru Ini"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Tidak ada karakter baru-baru ini"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Atur Ulang Semua T~emplat Baku"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Atur Ulang Dokumen Teks Ba~ku"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Atur Ulang Lembar Sebar Ba~ku"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Atur Ulang Presentasi Ba~ku"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Atur Ulang Gambar Ba~ku"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Impor"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~kstensi"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Nama Ulang"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Nama Ulang Kategori"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Kategori Baru"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Pemeriksa Objek UNO"
diff --git a/source/id/svtools/messages.po b/source/id/svtools/messages.po
index 1a96d6ca487..a3ae3e3049f 100644
--- a/source/id/svtools/messages.po
+++ b/source/id/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/id/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n>1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563273342.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Tidak dapat menjalin sambungan Internet ke $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Pesan galat peladen: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Pesan galat peladen: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Galat umum Internet telah terjadi."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Data Internet yang diminta tidak terdapat pada singgahan dan tidak dapat dikirimkan karena modus Daring belum diaktifkan."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Isi tidak dapat dibuat."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Nama berkas terlalu panjang untuk sistem berkas tujuan."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Sintaksis masukan tidak sah."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Silakan simpan dokumen dalam format berkas %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Banyaknya dokumen yang dapat dibuka dalam waktu bersamaan telah dicapai. Anda perlu menutup satu atau lebih dokumen sebelum bisa membuka dokumen baru."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Tidak dapat membuat salinan cadangan."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Panjang data tidak sah."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Fungsi tidak dimungkinkan: jalur mengandung direktori saat ini."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Fungsi tidak dimungkinkan: peranti (drive) tidak identik."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Peranti (drive) tidak siap."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Checksum salah."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Fungsi tidak dimungkinkan: terlindungi dari penulisan."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Nonaktifkan modus berbagi terlebih dahulu."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Galat format berkas ditemukan pada $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Penapis untuk format berkas ini dinonaktifkan dalam konfigurasi. Harap hubungi administrator sistem Anda."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Galat umum OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Tindakan tak dapat dijalankan dalam keadaan objek saat ini."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objek tersebut tidak mendukung tindakan apapun."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objek tidak mendukung tindakan ini."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) saat mengaktifkan objek"
diff --git a/source/id/svx/messages.po b/source/id/svx/messages.po
index f2d892f817f..b29d260dc0b 100644
--- a/source/id/svx/messages.po
+++ b/source/id/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-10 01:45+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/id/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Tanpa Tepi"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Tepi Luar Saja"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Tepi Luar dan Garis Horizontal"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Tepi Luar dan Semua Garis Dalam"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Tepi Luar dan Garis Vertikal"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Tepi Luar Tanpa Mengubah Garis Dalam"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Hanya Garis Diagonal"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Tepi Bawah Diagonal"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Tepi Atas Diagonal"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Tepi Saling-silang"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Semua Empat Tepi"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Hanya Tepi Kiri dan Kanan"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Hanya Tepi Atas dan Bawah"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Tepi Atas dan Bawah, dan Semua Garis Horizontal"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Hanya Tepi Kiri"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Hanya Tepi Kanan"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Hanya Tepi Atas"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Hanya Tepi Bawah"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Tepi Atas dan Bawah, dan Semua Garis Dalam"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Tepi Kiri dan Kanan, dan Semua Garis Dalam"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Hapus dari Favorit"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Karakter yang hilang"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Tambah ke Favorit"
@@ -10281,19 +10331,19 @@ msgstr "Tambah ke Favorit"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Periksa Ukuran Grafik"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Citra '%NAME%' memiliki terlalu sedikit piksel untuk ukuran saat ini (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Citra '%NAME%' memiliki terlalu banyak piksel untuk ukuran saat ini (%DPIX% x %DPIY% DPI)"
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index 837c886ad7a..26541c2caaa 100644
--- a/source/id/sw/messages.po
+++ b/source/id/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-16 23:47+0000\n"
"Last-Translator: Rizal Muttaqin <riz_17_oke@yahoo.co.id>\n"
"Language-Team: Indonesian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/id/>\n"
@@ -3033,11 +3033,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Senarai ke 5 Bersambung"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Kepala dan Kaki"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10608,38 +10608,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabel"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Pemformatan"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hipertaut"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Takarir tersimulasi"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Penomoran"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Lainnya"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16440,55 +16446,55 @@ msgid "Frame"
msgstr "Bingkai"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posisi dan Ukuran"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Pilihan"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Lipat"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipertaut"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Garis Batas"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Wilayah"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparansi"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolom"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28885,43 +28891,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Kembalikan semua perubahan yang dibuat pada tab yang ditampilkan di sini ke pengaturan yang ada saat dialog ini dibuka."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Umum"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Fonta"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efek Fonta"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posisi"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Tata Letak Asia"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Penyorotan"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Garis Batas"
@@ -28933,85 +28939,85 @@ msgid "List Style"
msgstr "Gaya Senarai"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Beri nama dan sembunyikan gaya yang ditentukan pengguna"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Umum"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Pilih jenis bulatan yang telah ditentukan sebelumnya"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Tak Berurut"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Pilih senarai berurut yang telah ditentukan sebelumnya"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Berurut"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Pilih kerangka yang telah ditentukan sebelumnya"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Kerangka"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Pilih simbol bulatan gambar yang sudah ditentukan sebelumnya"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Citra"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Ubah indentasi, penjarakan, dan perataan untuk untuk nomor atau simbol senarai"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posisi"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Desain format senarai atau kerangka Anda sendiri"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Sesuaikan"
@@ -29023,109 +29029,109 @@ msgid "Paragraph Style"
msgstr "Gaya Paragraf"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Umum"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Indentasi & Jarak Antara"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Perataan"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Aliran Teks"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografi Asia"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Fonta"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efek Fonta"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posisi"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Tata Letak Asia"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Penyorotan"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tab"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Kapital Turun"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Wilayah"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparansi"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Garis Batas"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Syarat"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Tetapkan tingkat kerangka, gaya senarai, dan penomoran baris untuk gaya paragraf."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Kerangka & Senarai"
@@ -29137,55 +29143,55 @@ msgid "Frame Style"
msgstr "Gaya Bingkai"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Umum"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Jenis"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Pilihan"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Lipat"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Wilayah"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparansi"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Garis Batas"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolom"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29203,61 +29209,61 @@ msgid "Standard"
msgstr "Standar"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Umum"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Halaman"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Wilayah"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparansi"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Kepala"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Kaki"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Garis Batas"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolom"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Catatan kaki"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Kisi Teks"
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index d217beef230..79e11f66963 100644
--- a/source/is/cui/messages.po
+++ b/source/is/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-13 16:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/is/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/is/helpcontent2/source/text/shared/00.po b/source/is/helpcontent2/source/text/shared/00.po
index 23d23c2e944..56437e7c94f 100644
--- a/source/is/helpcontent2/source/text/shared/00.po
+++ b/source/is/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index a507aaa7ac6..617e6c1f4bd 100644
--- a/source/is/helpcontent2/source/text/shared/01.po
+++ b/source/is/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Stjórnandi"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Skipulag</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 9225fccc510..79763844253 100644
--- a/source/is/helpcontent2/source/text/shared/optionen.po
+++ b/source/is/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/is/helpcontent2/source/text/swriter/01.po b/source/is/helpcontent2/source/text/swriter/01.po
index 9d4ad9d07ec..911cf3ae661 100644
--- a/source/is/helpcontent2/source/text/swriter/01.po
+++ b/source/is/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/is/helpcontent2/source/text/swriter/guide.po b/source/is/helpcontent2/source/text/swriter/guide.po
index a68964311d9..7bd68730407 100644
--- a/source/is/helpcontent2/source/text/swriter/guide.po
+++ b/source/is/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Smelltu á <emph>Valkostir</emph> flipann."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/is/sc/messages.po b/source/is/sc/messages.po
index 482b73b5b6f..6f0f852c0c5 100644
--- a/source/is/sc/messages.po
+++ b/source/is/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-02-02 12:18+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/is/>\n"
@@ -14279,14 +14279,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14509,14 +14510,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23226,91 +23228,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23909,102 +23911,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Eyða"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Enginn jaðar"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Allir jaðrar"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Ytri jaðrar"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Þykkur rammi"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Þykk neðri jaðarlína"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Tvöföld neðri jaðarlína"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Efri og þykk neðri jaðarlína"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Efri og tvöföld neðri jaðarlína"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Vinstri jaðarlína"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Hægri jaðarlína"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Efri jaðarlína"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Neðri jaðarlína"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Jaðar skálína upp"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Jaðar skálína niður"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Efri og neðri jaðrar"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Vinstri og hægri jaðrar"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24042,49 +23948,49 @@ msgid "Format Cells"
msgstr "Sníða reiti"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Tölur"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Letur"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Leturbrellur"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Jöfnun"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asísk stafaframsetning"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Jaðrar"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Bakgrunnur"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Verndun reita"
@@ -28173,43 +28079,43 @@ msgid "Page Style"
msgstr "Síðustíll"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Síða"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Jaðrar"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Bakgrunnur"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Síðuhaus"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Síðufótur"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Blað"
@@ -28251,55 +28157,55 @@ msgid "Cell Style"
msgstr "Snið reits"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Tölur"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Letur"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Leturbrellur"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Jöfnun"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asísk stafaframsetning"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Jaðrar"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Bakgrunnur"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Verndun reita"
diff --git a/source/is/sd/messages.po b/source/is/sd/messages.po
index 699d67f8256..7ceee1c785c 100644
--- a/source/is/sd/messages.po
+++ b/source/is/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-12 17:37+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/is/>\n"
@@ -9557,97 +9557,97 @@ msgid "_Standard"
msgstr "_Staðlað"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Lína"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Flötur"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skygging"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Gegnsæi"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Leturgerð"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Leturbrellur"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Inndráttur og bil"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Texti"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Textahreyfing"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Málsetning"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Tengilína"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Jöfnun"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asísk stafaframsetning"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Flipar"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Áherslulitun"
diff --git a/source/is/sfx2/messages.po b/source/is/sfx2/messages.po
index c90175df3f6..911a09df2e8 100644
--- a/source/is/sfx2/messages.po
+++ b/source/is/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-13 16:36+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/is/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Keyrsla fjölva er óvirk vegna öryggisstillinga fyrir fjölva."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Fjölvar eru undirritaðir, en skjalið (sem inniheldur atvik skjalsins) er ekki undirritað."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Birta fjölva"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Sýna öryggisvalkosti"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Birta atburði"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Fínlegt grátt"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Býflugnabú"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Bláir sveigir"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Kalkipappír"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Sælgæti"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gul hugmynd"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fókus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skógarfugl"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Ferskleiki"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Innblástur"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Ljós"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Vaxandi frelsi"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metrópólis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Miðnæturblátt"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Náttúrumyndir"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blýantur"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Píanó"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Kynningarmappa"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Framvinda"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Sólsetur"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Gamaldags"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Skært"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Ferilskrá"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Kynningarbréf"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Sjálfgefið"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Nútímalegt"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Nútímalegt viðskiptabréf steinskrift (sans-serif)"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Nútímalegt viðskiptabréf krókaletur (serif)"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Nafnspjald með fyrirtækismerki"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Einfalt"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Venjuleg einfölduð kínverska"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Venjuleg Japanska"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjarlægja"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Hreinsa allt"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Lengd lykilorðs"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Lykilorðið sem þú settir inn veldur vandamálum varðandi samhæfingu. Settu inn lykilorð sem er styttra en 52 bæti eða lengra en 55 bæti."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-smella til að opna veftengil: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Smella til að opna veftengil: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(notað af: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Skjal"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Töflureiknir"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Kynning"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Teikning"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Nýlega notað"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Engir nýlegir stafir"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Frumstilla öll sjál~fgefin sniðmát"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Frumstilla sjál~fgefið textaskjal"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Frumstilla sjál~fgefinn töflureikni"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Frumstilla sjál~fgefna kynningu"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Frumstilla sjál~fgefna teikningu"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Flytja ~inn"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Forritsviðau~kar"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Endurnefna"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Endurnefna flokk"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nýr flokkur"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-hlutarýnir"
diff --git a/source/is/svtools/messages.po b/source/is/svtools/messages.po
index f9b35c5c3a3..ce686c3013a 100644
--- a/source/is/svtools/messages.po
+++ b/source/is/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-12 11:38+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/is/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Gat ekki komið á Internet tengingu við $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Netþjónsvilla: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Netþjónsvilla: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Villa kom upp varðandi Internetið."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Umbeðin Internetgögn eru ekki í biðminni og ekki er hægt að senda þau þar sem nettengdur hamur hefur ekki verið virkjaður."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Ekki var hægt að búa til innihaldið."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Nafn skráar er of langt fyrir skráarkerfi áfangastaðar."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Inntak er ógilt."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Vistaðu skjalið á %PRODUCTNAME %PRODUCTVERSION skráasniði."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Hámarksfjölda skjala sem hægt er að opna á sama tíma hefur verið náð. Þú verður að loka einu eða fleiri skjölum áður en þú getur opnað nýtt skjal."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Gat ekki búið til öryggisafrit."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ógild gagnalengd."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Aðgerð ekki möguleg: slóð inniheldur núverandi möppu."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Aðgerð ekki möguleg: tæki (drif) ekki eins."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Tæki (drif) ekki tilbúið."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Röng gátsumma"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Aðgerð ekki möguleg: skrifvarið."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Taktu sameignarham af fyrst."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Skráarsniðsvilla fannst í $(ARG1)(röð,dálkur)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Sían fyrir þetta skráasnið er ekki virk í uppsetningunni. Hafðu samband við kerfisstjóra."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Almenn OLE-villa."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Ekki er hægt að keyra aðgerð í núverandi ástandi hlutarins."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Hluturinn styður ekki neinar aðgerðir."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Hlutur styður ekki þessa aðgerð."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) við að virkja hlut"
diff --git a/source/is/svx/messages.po b/source/is/svx/messages.po
index 8fbf6542848..3078905b11a 100644
--- a/source/is/svx/messages.po
+++ b/source/is/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-13 12:37+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/is/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Engir jaðrar"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Aðeins ytri jaðar"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ytri jaðar og láréttar línur"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ytri jaðar og allar innri línur"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ytri jaðar og lóðréttar línur"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Ytri jaðar án þess að breyta innri línum"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Eingöngu skálínur"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Jaðar skálína niður"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Jaðar skálína upp"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Skákrossaður jaðar"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Allar fjórar hliðar"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Aðeins vinstri og hægri jaðrar"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Aðeins efri og neðri jaðrar"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Efri og neðri jaðrar, og allar láréttar línur"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Aðeins vinstri jaðar"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Aðeins hægri jaðar"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Aðeins efri jaðar"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Aðeins neðri jaðar"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Efri og neðri jaðrar, og allar innri línur"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Vinstri og hægri jaðrar, og allar innri línur"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Athugun á stærð myndefnis"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Myndin '%NAME%' er með of fáa mynddíla miðað við fyrirliggjandi stærð (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Myndin '%NAME%' er með of marga mynddíla miðað við fyrirliggjandi stærð (%DPIX% x %DPIY% DPI)"
diff --git a/source/is/sw/messages.po b/source/is/sw/messages.po
index a130dd15a8e..b9c0f24dd0f 100644
--- a/source/is/sw/messages.po
+++ b/source/is/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-13 12:37+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/is/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Listi 5 framh."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Haus og fótur"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tafla"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Snið"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Tengill"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Tölusetning"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Annað"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Rammi"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Staða og stærð"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Valkostir"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Textaskrið"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Tengill"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Jaðrar"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Flötur"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Gegnsæi"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Dálkar"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Fjölvi"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Letur"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Leturbrellur"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Staða"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asísk framsetning"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Áherslulitun"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Jaðrar"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Stíll lista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Óraðað"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Raðað"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Efnisskipan"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Mynd"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Staða"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Sérsníða"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Málsgreinarstíll"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Inndráttur og bil"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Jöfnun"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Textaflæði"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asísk stafaframsetning"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Letur"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Leturbrellur"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Staða"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asísk framsetning"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Áherslulitun"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Inndráttarmerki"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Höfuðstafir"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Flötur"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Gegnsæi"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Jaðrar"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Skilyrði"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Efnisskipan og listi"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Rammastíll"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tegund"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Valkostir"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Textaskrið"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Flötur"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Gegnsæi"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Jaðrar"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Dálkar"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Fjölvi"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Staðlað"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Síða"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Flötur"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Gegnsæi"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Síðuhaus"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Síðufótur"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Jaðrar"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Dálkar"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Neðanmálsgrein"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Textamöskvi"
diff --git a/source/it/cui/messages.po b/source/it/cui/messages.po
index 1bf5baab33b..996bdbdafd4 100644
--- a/source/it/cui/messages.po
+++ b/source/it/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-11 01:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/it/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Apri un file CSV come nuovo foglio nel foglio elettronico attivo tramite Foglio ▸ Inserisci foglio da file."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Puoi continuare a scrivere con gli attributi di formattazione predefiniti dopo aver applicato manualmente il grassetto, il corsivo o la sottolineatura premendo %MOD1+Maiusc+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index bf2946af931..4e55591832b 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-12 09:45+0000\n"
"Last-Translator: Marco Marega <marco.marega@libreitalia.it>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/it/>\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Ripristina valori ereditati"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "I valori per la scheda corrente sono impostati a quelli trovati nella scheda corrispondente dello stile specificato nel campo \"Eredita da\" in Gestione. Comunque, anche se “Eredita da” è impostato su “- Nessuno -”, i valori della scheda corrente specificati in “Contiene” verranno rimossi."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -13753,68 +13753,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Scegliete <emph>Formato - Celle...</emph>, scheda <emph>Sfondo</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Scegliete <menuitem>Formato - Stile di pagina</menuitem>, scheda <emph>Gestione</emph>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Scegliete <menuitem>Stili - Modifica stile</menuitem>, scheda <emph>Gestione</emph>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Scegliere <menuitem>Stili - Gestisci gli stili</menuitem>, aprire il menu contestuale di una voce e scegliere la scheda <menuitem>Nuovo/Modifica stile - Gestione</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Scegliere <menuitem>Formato - Stile di pagina</menuitem>, scheda <emph>Gestione</emph>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Scegliere <menuitem>Stili - Gestisci gli stili</menuitem>, aprire il menu contestuale di una voce e scegliere la scheda <menuitem>Nuovo/Modifica stile - Gestione</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Scegliete <menuitem>Formato - Stili - Modifica stile</menuitem>, scheda <emph>Gestione</emph>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Scegliere <menuitem>Formato - Stili - Gestisci gli stili</menuitem>, aprire il menu contestuale di una voce e scegliere la scheda <menuitem>Nuovo/Modifica stile - Gestione</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13825,14 +13825,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Scegliete <menuitem>Diapositiva - Proprietà</menuitem>, scheda <menuitem>Pagina</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Scegliere <menuitem>Visualizza - Stili</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Cmd+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline>, aprire il menu contestuale di una voce e scegliere la scheda <menuitem>Nuovo/Modifica stile - Gestione</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index eaf9543e5e1..830628c4ffb 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-26 22:05+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/it/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Ripristina le dimensioni originali dell'immagine selezionata.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Gestione"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>Organizzare; stili</bookmark_value><bookmark_value>Stile; organizzare</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Gestione</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 370d659621b..b2e74f2652c 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-27 09:45+0000\n"
"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/it/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/it/helpcontent2/source/text/swriter/01.po b/source/it/helpcontent2/source/text/swriter/01.po
index 0bf76be985f..40e234f113f 100644
--- a/source/it/helpcontent2/source/text/swriter/01.po
+++ b/source/it/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-21 09:54+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/it/>\n"
@@ -23363,14 +23363,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "La formattazione diretta sovrascrive ogni formattazione fornita da uno stile di carattere. Per rimuovere la formattazione diretta da una selezione utilizzate <menuitem>Formato - Cancella formattazione diretta</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Cmd</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Utilizzate l'area <emph>Contiene</emph> nella scheda Gestione per visualizzare le proprietà dello stile di carattere."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/it/helpcontent2/source/text/swriter/guide.po b/source/it/helpcontent2/source/text/swriter/guide.po
index 9f39bd7ada4..7e64229bb76 100644
--- a/source/it/helpcontent2/source/text/swriter/guide.po
+++ b/source/it/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-18 04:15+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/it/>\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Modifica</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Fate clic sulla scheda <emph>Gestione</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7091,14 +7091,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Se le pagine di un documento utilizzano stili di pagina differenti, anche le intestazioni e i piè di pagina possono avere un aspetto diverso. $[officename] offre vari stili di pagina predefiniti, ad esempio <emph>Prima pagina</emph>, <emph>Pagina sinistra</emph> e <emph>Pagina destra</emph>, ma potete anche creare uno stile di pagina personalizzato."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "È possibile usare anche un'impaginazione speculare se si vuole aggiungere un'intestazione a uno stile di pagina che presenta misure differenti per il margine interno e quello esterno. Per applicare questa opzione a uno stile di pagina, scegliere <item type=\"menuitem\">Formato - Stile di pagina</item>, fare clic sulla scheda <item type=\"menuitem\">Pagina</item> e nell'area <item type=\"menuitem\">Impostazioni di impaginazione</item>, scegliere “Rispecchiato” nella casella <item type=\"menuitem\">Impaginazione</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7136,32 +7136,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Fate clic col pulsante destro del mouse su \"Pagina destra\" e scegliete <emph>Modifica</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Nella finestra di dialogo <item type=\"menuitem\">Stili di pagina</item>, fate clic sulla scheda <item type=\"menuitem\">Intestazione</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Selezionate <item type=\"menuitem\">Attiva riga d'intestazione</item> e fate clic sulla scheda <item type=\"menuitem\">Gestione</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Nella casella <item type=\"menuitem\">Stile successivo</item>, selezionate \"Pagina sinistra\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7181,32 +7181,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Nella finestra <emph>Stili</emph>, fate clic con il pulsante destro del mouse su \"Pagina sinistra\" e scegliete <emph>Cambia</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Nella finestra di dialogo <item type=\"menuitem\">Stili di pagina</item>, fate clic sulla scheda <item type=\"menuitem\">Intestazione</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Selezionate <item type=\"menuitem\">Attiva riga d'intestazione</item> e fate clic sulla scheda <item type=\"menuitem\">Gestione</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Nella casella <item type=\"menuitem\">Stile successivo</item>, selezionate \"Pagina destra\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11429,14 +11429,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Nella scheda <emph>Gestione</emph>, digitate un nome per lo stile di pagina nella casella <emph>Nome</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11582,14 +11582,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Selezionate <emph>Interruzione pagina</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Nella casella <item type=\"menuitem\">Stile</item>, selezionate uno stile di pagina che utilizzi lo sfondo di pagina."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11861,14 +11861,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Un'<emph>interruzione di pagina automatica</emph> viene inserita alla fine di una pagina quando lo stile di pagina utilizza uno \"stile successivo\" differente."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Ad esempio, lo stile di pagina \"Prima pagina\" riporta \"Stile di pagina predefinito\" come stile successivo. Per visualizzarlo, premere <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Cmd+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> per aprire il riquadro <menuitem>Stili</menuitem>, scegliere l'icona <menuitem>Stili di pagina</menuitem>, fare clic col pulsante destro del mouse sulla voce \"Prima pagina\" e selezionare <menuitem>Modifica stile</menuitem> dal menu contestuale. Nella scheda <menuitem>Gestione</menuitem> è visibile la voce \"Stile successivo\"."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12185,14 +12185,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Fate clic col pulsante destro del mouse su uno stile di pagina e scegliete <emph>Nuovo</emph>. Al nuovo stile di pagina inizialmente vengono assegnate tutte le proprietà dello stile di pagina selezionato."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Nella scheda <emph>Gestione</emph>, digitate un nome per lo stile di pagina nella casella <emph>Nome</emph>, ad esempio \"Orizzontale personalizzato\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12329,14 +12329,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Stile di una sola pagina"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Si può definire uno stile di pagina valido soltanto per una singola pagina. Lo stile \"Prima pagina\" è un esempio. Impostate questa proprietà stabilendo nella scheda <menuitem>Formato - Stile di pagina - Gestione</menuitem> che un altro stile di pagina sia lo \"stile successivo\"."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12365,14 +12365,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Intervallo di uno stile di pagina definito manualmente"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Lo stile di pagina \"Predefinito\" non imposta un diverso \"stile successivo\" nella scheda <menuitem>Formato - Stile di pagina - Gestione</menuitem>. Invece, lo \"stile successivo\" è impostato anche per essere \"Predefinito\". Tutti gli stili di pagina che sono impostati col medesimo stile di pagina possono essere applicati a più pagine. I margini inferiore e superiore dell'area dello stile di pagina sono definiti da \"interruzioni dello stile di pagina\". Tutte le pagine comprese tra le due \"interruzioni dello stile di pagina\" hanno il medesimo stile di pagina."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Nell'elenco degli stili di pagina, fate clic col pulsante destro del mouse su un elemento e scegliete <emph>Nuovo</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Nella scheda <emph>Gestione</emph>, digitate un nome nella casella <emph>Nome</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/it/sc/messages.po b/source/it/sc/messages.po
index f12708ef3be..2ab13a93d04 100644
--- a/source/it/sc/messages.po
+++ b/source/it/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-21 01:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/it/>\n"
@@ -14281,14 +14281,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14511,14 +14512,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23228,91 +23230,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linea"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Area"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreggiatura"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Trasparenza"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Tipo di carattere"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effetti carattere"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Rientri e spaziature"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Testo"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Animazione testo"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Quotatura"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Allineamento"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulazioni"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Evidenziazione"
@@ -23911,102 +23913,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Elimina"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Nessun bordo"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Tutti i bordi"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordi esterni"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Bordo casella spesso"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Bordo inferiore spesso"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Bordo inferiore doppio"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Bordi inferiore spesso e superiore"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Bordi inferiore doppio e superiore"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Bordo sinistro"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Bordo destro"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Bordo superiore"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bordo inferiore"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Bordo diagonale in alto"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Bordo diagonale in basso"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bordo superiore e inferiore"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bordo sinistro e destro"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24044,49 +23950,49 @@ msgid "Format Cells"
msgstr "Formato celle"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Numeri"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tipo di carattere"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Effetti carattere"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Allineamento"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordi"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Sfondo"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Protezione celle"
@@ -28175,43 +28081,43 @@ msgid "Page Style"
msgstr "Stile di pagina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pagina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordi"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Sfondo"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Intestazione"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Piè di pagina"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Foglio"
@@ -28253,55 +28159,55 @@ msgid "Cell Style"
msgstr "Stile di cella"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Numeri"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tipo di carattere"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Effetti carattere"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Allineamento"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordi"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Sfondo"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Protezione celle"
diff --git a/source/it/sd/messages.po b/source/it/sd/messages.po
index f8d9c7412c0..b4038f06178 100644
--- a/source/it/sd/messages.po
+++ b/source/it/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-21 01:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/it/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linea"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Area"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombreggiatura"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Trasparenza"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tipo di carattere"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Effetti carattere"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Rientro e spaziature"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Testo"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Testo animato"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Quotatura"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connettore"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Allineamento"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulazioni"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Evidenziazione"
diff --git a/source/it/sfx2/messages.po b/source/it/sfx2/messages.po
index 03f1089b482..7dced61fa7d 100644
--- a/source/it/sfx2/messages.po
+++ b/source/it/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-25 01:45+0000\n"
"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/it/>\n"
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Le macro sono disabilitate a causa delle impostazioni di sicurezza delle macro."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Le macro sono firmate ma il documento (che contiene eventi del documento) non è firmato."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Mostra macro"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Mostra le Opzioni di sicurezza"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Mostra eventi"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grigio elegante"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Alveare"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Curva blu"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Planimetrie"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Caramella"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idea gialla"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fuoco"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Foresta verde"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Fresco"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Ispirazione"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Luci"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Libertà crescente"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropoli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blu notte"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Matita"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianoforte"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Avanzamento"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Tramonto"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivido"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Curriculum"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Predefinito"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderno"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Lettera commerciale moderna senza grazie"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Lettera commerciale moderna con grazie"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Biglietto da visita con logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Semplice"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Cinese semplificato normale"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Giapponese normale"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Rimuovi"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Pulisci tutto"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Lunghezza della password"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "La password che hai inserito crea problemi d'interoperabilità. Digita una password che sia più corta di 52 byte o più lunga di 55."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-clic per aprire il collegamento ipertestuale: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Fai clic per aprire il collegamento ipertestuale: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(utilizzato da: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Documento"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Foglio elettronico"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentazione"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Disegno"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Usato recentemente"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Nessun carattere recente"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Ripristina tutti i modelli pre~definiti"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Ripristina modello documento di testo pre~definito"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Ripristina modello foglio elettronico pre~definito"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Ripristina modello presentazione pre~definito"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Ripristina disegno pre~definito"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importa"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~stensioni"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Rinomina"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Rinomina categoria"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nuova categoria"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "Ispettore oggetti UNO"
diff --git a/source/it/svtools/messages.po b/source/it/svtools/messages.po
index e24a3434637..21486c95688 100644
--- a/source/it/svtools/messages.po
+++ b/source/it/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-06 01:45+0000\n"
"Last-Translator: Elisabetta Manuele <calembour@hotmail.it>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/it/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Impossibile stabilire la connessione Internet a $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Messaggio di errore del server: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Messaggio di errore del server: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Si è verificato un errore generale di Internet."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "I dati di Internet richiesti non si trovano nella cache e non possono essere trasmessi poiché la modalità in linea non è attiva."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Impossibile creare il contenuto."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Il nome del file è troppo lungo per il file system di destinazione."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintassi della digitazione è errata."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Salva il documento in un formato di file %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "È stato raggiunto il numero massimo di documenti che è possibile aprire contemporaneamente. Per aprirne un altro devi chiudere uno o più documenti."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Impossibile creare una copia di sicurezza."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Lunghezza dati non valida."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funzione non possibile: il percorso contiene la cartella corrente."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funzione non possibile: dispositivo (unità) diverso."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Dispositivo (unità) non pronto."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Codice di controllo errato."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funzione non possibile: protetta da scrittura."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Disattiva prima la condivisione."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Errore di formato del file in $(ARG1)(riga,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Il filtro per questo formato di file è disabilitato nella configurazione. Contatta il tuo amministratore di sistema."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Errore generale OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "L'oggetto non può eseguire l'operazione nello stato attuale."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'oggetto non supporta alcuna operazione."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'oggetto non supporta questa operazione."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) nell'attivazione dell'oggetto"
diff --git a/source/it/svx/messages.po b/source/it/svx/messages.po
index fd86e1c000c..0a0a8d80b55 100644
--- a/source/it/svx/messages.po
+++ b/source/it/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-21 01:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/it/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Senza bordi"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Solo bordi esterni"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Bordo esterno e linee orizzontali"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Bordo esterno e tutte le linee interne"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Bordo esterno e linee verticali"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Bordo esterno senza modificare le linee interne"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Solo linee diagonali"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Bordo diagonale in basso"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Bordo diagonale in alto"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Bordo incrociato"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Tutti e quattro i bordi"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Solo il bordo sinistro e destro"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Solo bordi superiore e inferiore"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Bordi superiori e inferiori e tutte le linee orizzontali"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Solo il bordo sinistro"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Solo il bordo destro"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Solo il bordo superiore"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Solo il bordo inferiore"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Bordi superiori e inferiori e tutte le linee interne"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Bordi sinistri e destri e tutte le linee interne"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Controllo dimensioni dell'immagine"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "L'immagine '%NAME%' ha un numero di pixel insufficiente per le dimensioni attuali (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "L'immagine '%NAME%' ha un numero di pixel eccessivo per le dimensioni attuali (%DPIX% x %DPIY% DPI)"
diff --git a/source/it/sw/messages.po b/source/it/sw/messages.po
index a0abae0b6dc..1cb684c7f94 100644
--- a/source/it/sw/messages.po
+++ b/source/it/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-02-21 01:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/it/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Elenco 5 succ."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Intestazione e piè di pagina"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabella"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formattazione"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Collegamento ipertestuale"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Didascalie simulate"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Numerazione"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Altro"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Cornice"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posizione e dimensione"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opzioni"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Scorrimento"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Collegamento ipertestuale"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordi"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Area"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Trasparenza"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colonne"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Ripristina tutte le modifiche apportate all'interno della scheda attiva alle impostazioni presenti all'apertura della finestra di dialogo."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tipo di carattere"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Effetti carattere"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posizione"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Layout asiatico"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Evidenziazione"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordi"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Stile elenco"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Nomina e nascondi gli stili definiti dall'utente"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Scegli un tipo di punto elenco predefinito"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Non ordinato"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Scegli un elenco ordinato predefinito"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordinato"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Scegli un formato di struttura predefinito"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Contorno"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Scegli un simbolo grafico di punto elenco predefinito"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Immagine"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Modifica rientro, spaziatura e allineamento per i numeri o i simboli di elenco"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posizione"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Crea un elenco o un formato di struttura personalizzato"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalizza"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Stile di paragrafo"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Rientri e spaziature"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Allineamento"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Flusso di testo"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tipo di carattere"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Effetti carattere"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posizione"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Layout asiatico"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Evidenziazione"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulazioni"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Capolettere"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Area"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Trasparenza"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordi"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condizione"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Imposta il livello di struttura, lo stile dell'elenco e la numerazione delle righe per lo stile di paragrafo."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Struttura ed elenco"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Stile di cornice"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opzioni"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Scorrimento"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Area"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Trasparenza"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordi"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colonne"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pagina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Area"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Trasparenza"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Riga d'intestazione"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Piè di pagina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordi"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colonne"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nota a piè di pagina"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Griglia di testo"
diff --git a/source/ja/cui/messages.po b/source/ja/cui/messages.po
index 2955341f29e..82c6a2c732e 100644
--- a/source/ja/cui/messages.po
+++ b/source/ja/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 01:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ja/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "CSVファイルを編集中のスプレッドシート内に新規シートとして開くには、 [シート]>[ファイルからシートを挿入] と操作してください。"
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ja/helpcontent2/source/text/scalc/01.po b/source/ja/helpcontent2/source/text/scalc/01.po
index f8a30ee5bbb..b8b80692d93 100644
--- a/source/ja/helpcontent2/source/text/scalc/01.po
+++ b/source/ja/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-16 09:45+0000\n"
-"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
+"PO-Revision-Date: 2024-06-25 09:45+0000\n"
+"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565336452.000000\n"
#. sZfWF
@@ -43646,7 +43646,7 @@ msgctxt ""
"hd_id3154944\n"
"help.text"
msgid "Objects/images"
-msgstr ""
+msgstr "オブジェクト/画像"
#. cCDGR
#: 05070500.xhp
diff --git a/source/ja/helpcontent2/source/text/shared/00.po b/source/ja/helpcontent2/source/text/shared/00.po
index 91f595a8c61..a09ddc1e95e 100644
--- a/source/ja/helpcontent2/source/text/shared/00.po
+++ b/source/ja/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 09:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ja/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"><emph>[書式]>[セル]>[背景]</emph>タブを選択します。</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "<menuitem>[書式]>[ページスタイル]>[管理]</menuitem>タブを選択します。"
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index 1089b0bba6d..02c50f74fec 100644
--- a/source/ja/helpcontent2/source/text/shared/01.po
+++ b/source/ja/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 09:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ja/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">選択した図のサイズを元に戻します。</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "管理"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">管理</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index 5f721a2e841..f92cf609037 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-26 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-25 09:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ja/>\n"
"Language: ja\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "オブジェクト/画像"
#. DMhEf
#: 01060100.xhp
diff --git a/source/ja/helpcontent2/source/text/swriter/01.po b/source/ja/helpcontent2/source/text/swriter/01.po
index fc82c6a7be5..6bd3092e371 100644
--- a/source/ja/helpcontent2/source/text/swriter/01.po
+++ b/source/ja/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 09:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ja/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540153358.000000\n"
#. sZfWF
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ja/helpcontent2/source/text/swriter/guide.po b/source/ja/helpcontent2/source/text/swriter/guide.po
index 67b177b5ca8..46cfefdab54 100644
--- a/source/ja/helpcontent2/source/text/swriter/guide.po
+++ b/source/ja/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-29 09:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ja/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542030464.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "ページスタイルのリストで「左ページ」を右クリックして、<emph>変更</emph> を選択します。"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>管理</emph> タブをクリックします。"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "1 つのドキュメント内に配置するヘッダーやフッターに関しては、ページスタイル単位で使い分けることができます。$[officename] の事前定義されたページスタイルには、<emph>最初のページ</emph>、<emph>左ページ</emph>、<emph>右ページ</emph> などがありますが、その他にカスタムのページスタイルをユーザー定義することもできます。"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "ページスタイルのリスト中の「右ページ」を右クリックして、<emph>変更</emph> を選択します。"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">ページスタイル</item>ダイアログで、<item type=\"menuitem\">ヘッダー</item>タブをクリックします。"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">ヘッダーを付ける</item>を選択し、<item type=\"menuitem\">管理</item>タブを選択します。"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">次のスタイル</item>ボックスで、「左ページ」を選択します。"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">ページスタイル</item>ダイアログで、<item type=\"menuitem\">ヘッダー</item>タブをクリックします。"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">ヘッダーを付ける</item>を選択し、<item type=\"menuitem\">管理</item>タブを選択します。"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">次のスタイル</item>ボックスで、「右ページ」を選択します。"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ページスタイルのリストで、項目を右クリックして、<emph>新規作成</emph> をクリックします。"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>管理</emph> タブページを表示して、<emph>名前</emph> ボックスにページスタイルの名前を入力します。"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>改ページ</emph> を選択します。"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">スタイル</item>ボックスで、そのページ背景を使うページスタイルを選択します。"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>自動改ページ</emph>は、ページスタイルに異なる「次のスタイル」が指定される場合、ページの最後に出現します。"
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "ページスタイルを右クリックして、<emph>新規作成</emph> を選択します。新規ページスタイルは、選択したページスタイルのすべてのプロパティを取得します。"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>管理</emph> タブページを表示して、<emph>名前</emph> ボックスにページスタイルの名前を入力します (例: My Landscape)。"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "1 ページの長さのスタイル"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "手動で定義されたページスタイル範囲"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ページスタイルのリストで、項目を右クリックして、<emph>新規作成</emph> をクリックします。"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>管理</emph> タブをクリックして、ボックス <emph>名前</emph> に名前を入力します。"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ja/sc/messages.po b/source/ja/sc/messages.po
index e71399ab6d2..7f69635cafb 100644
--- a/source/ja/sc/messages.po
+++ b/source/ja/sc/messages.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-09 01:45+0000\n"
-"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-25 01:45+0000\n"
+"Last-Translator: Yoshida Saburo <yosi3260+work@gmail.com>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563888415.000000\n"
#. kBovX
@@ -13974,7 +13974,7 @@ msgstr "複数範囲の参照。"
#: sc/inc/scfuncs.hrc:3297
msgctxt "SC_OPCODE_CHOOSE"
msgid "Selects a value from a list of up to 30 value arguments."
-msgstr "インデックスを使って、引数リストの値(1~29)の中から特定の値を1つ選択します。"
+msgstr "インデックスを使って、引数リストの値(1~30)の中から特定の値を1つ選択します。"
#. G4rK9
#: sc/inc/scfuncs.hrc:3298
@@ -14276,14 +14276,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "一致モード"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14506,14 +14507,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "一致モード"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23222,91 +23224,91 @@ msgid "_Standard"
msgstr "標準(_S)"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "線"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "領域"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "影"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "透明"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "フォント"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "フォント効果"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "インデントと間隔"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "テキスト"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "テキストアニメーション"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "寸法の記入"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "配置"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "日本語の体裁"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "タブ"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "蛍光ペン"
@@ -23906,102 +23908,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "削除"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "枠なし"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "格子"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "外枠"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "太い外枠"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "下太罫線"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "下二重罫線"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "上下太罫線"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "上下二重罫線"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "左罫線"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "右罫線"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "上罫線"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "下罫線"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "斜線(右上へ)"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "斜線(右下へ)"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "上下罫線"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "左右罫線"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24039,49 +23945,49 @@ msgid "Format Cells"
msgstr "セルの書式設定"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "数値"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "フォント"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "フォントの効果"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "配置"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "日本語の体裁"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "罫線"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "背景"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "セルの保護"
@@ -28170,43 +28076,43 @@ msgid "Page Style"
msgstr "ページスタイル"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ページ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "罫線"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "背景"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ヘッダー"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "フッター"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "シート"
@@ -28248,55 +28154,55 @@ msgid "Cell Style"
msgstr "セルスタイル"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "数"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "フォント"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "フォントの効果"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "整列"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "日本語の体裁"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "罫線"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "背景"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "セルの保護"
diff --git a/source/ja/sd/messages.po b/source/ja/sd/messages.po
index c8e592234d8..93eefceedd1 100644
--- a/source/ja/sd/messages.po
+++ b/source/ja/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-24 01:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ja/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "標準(_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "線"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "領域"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "影"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "透明"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "フォント"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "フォント効果"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "インデントと間隔"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "テキスト"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "テキストアニメーション"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "寸法の記入"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "コネクター"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "配置"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "日本語の体裁"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "タブ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "蛍光ペン"
diff --git a/source/ja/sfx2/messages.po b/source/ja/sfx2/messages.po
index 9e383f38e9f..647593146dd 100644
--- a/source/ja/sfx2/messages.po
+++ b/source/ja/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-30 01:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ja/>\n"
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "マクロセキュリティの設定により、マクロが無効になっています。"
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "マクロは署名されていますが、ドキュメント(ドキュメントのイベントを含む)は署名されていません。"
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "マクロを表示"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "セキュリティオプションを表示"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "イベントを表示"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "グレーエレガント"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "ハチの巣"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ブルーカーブ"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "青写真"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "キャンディ"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "イエローアイデア"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "フォーカス"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "森の小鳥"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "フレッシュ"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "インスピレーション"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "輝き"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "グローイング リバティ"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "メトロポリス"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "ミッドナイトブルー"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "自然"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "鉛筆"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "ピアノ"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "ポートフォリオ"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "プログレス"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "サンセット"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "ビンテージ"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "ビビッド"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "履歴書(英文)"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "職務経歴書(英文)"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "標準"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "モダン(英文)"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "ビジネス文書(英文)サンセリフ"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "ビジネス文書(英文)セリフ"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "名刺ロゴ付き(英文)"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "シンプル(英文)"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "中国語簡体字文書 標準"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "日本語文書 標準"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "削除"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "すべて消去"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "パスワードの長さ"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}キーを押しながらクリックでハイパーリンクを開きます: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "クリックしてハイパーリンクを開きます: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(%STYLELIST を使用)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "文書"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "表計算ドキュメント"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "プレゼンテーション"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "図形描画"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "最近使用されたもの"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "最近使用した文字はありません"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "すべて既定にリセット(~F)"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "既定の文書ドキュメントにリセット(~F)"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "既定の表計算ドキュメントにリセット(~F)"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "既定のプレゼンテーションにリセット(~F)"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "既定の図形描画にリセット(~F)"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "インポート(~I)"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "拡張機能(~X)"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "名前の変更"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "カテゴリ名の変更"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "新規カテゴリー"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNOオブジェクト インスペクター"
diff --git a/source/ja/svtools/messages.po b/source/ja/svtools/messages.po
index 196f47dd2e4..24cffc95697 100644
--- a/source/ja/svtools/messages.po
+++ b/source/ja/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 01:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ja/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547910395.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) へのインターネット接続ができませんでした。"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"サーバーエラーメッセージ: $(ARG1)。"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"サーバーエラーメッセージ: $(ARG1)。"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "一般的なインターネットエラーが発生しました。"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "指定したインターネットのデータはキャッシュになく、オンラインモードがアクティブではないために転送できません。"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "内容は作成できませんでした。"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ターゲットのファイル システムのファイル名が長すぎます。"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "この入力のシンタックスは無効です。"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"ドキュメントを%PRODUCTNAME %PRODUCTVERSIONのファイル形式で保存してください。"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "同時に開くことができるドキュメントの最大数に到達しました。新しいドキュメントを開く前に 1 つまたは複数のドキュメントを閉じる必要があります。"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "バックアップ コピーは作成できませんでした。"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "不正なデータ長。"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "機能を使用できません: パスに現在のディレクトリが含まれています。"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "機能を使用できません: デバイス (ドライブ) が同じではありません。"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "デバイス (ドライブ) の準備ができていません。"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "チェックサムが違います。"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "機能が使用できません: 書き込み保護されています。"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"先に共有モードを停止してください。"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "$(ARG1)(行,列) でファイル形式エラーが見つかりました。"
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "このファイル形式のフィルターは設定で無効にされています。システム管理者に問い合わせてください。"
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "一般的OLEエラー。"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "オブジェクトは今の状態ではアクションを実行できません。"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "オブジェクトはアクションをサポートしません。"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "オブジェクトはこのアクションをサポートしません。"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR)オブジェクトをアクティブにしている際"
diff --git a/source/ja/svx/messages.po b/source/ja/svx/messages.po
index 3b47f4086e0..2e7335c3929 100644
--- a/source/ja/svx/messages.po
+++ b/source/ja/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-09 01:45+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ja/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "罫線なし"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "外枠のみ"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "外枠と横罫線"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "外周および内側全ての罫線"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "外枠と縦線"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "斜線のみ"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "斜線(右下へ)"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "斜線(右上へ)"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "交差斜線"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "4辺すべての罫線"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "左右罫線のみ"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "上下罫線のみ"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "左罫線のみ"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "右罫線のみ"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "上罫線のみ"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "下罫線のみ"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "お気に入りから削除"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "文字がありません"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "お気に入りに追加"
@@ -10281,19 +10331,19 @@ msgstr "お気に入りに追加"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ja/sw/messages.po b/source/ja/sw/messages.po
index 40948d9b4f0..988fc67879a 100644
--- a/source/ja/sw/messages.po
+++ b/source/ja/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-05-26 02:29+0000\n"
"Last-Translator: Taichi Haradaguchi <20001722@ymail.ne.jp>\n"
"Language-Team: Japanese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ja/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "箇条書き5続き"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "ヘッダーとフッター"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10597,38 +10597,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "表"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "書式"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "ハイパーリンク"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "番号付け"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "その他"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16430,55 +16436,55 @@ msgid "Frame"
msgstr "枠"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "位置とサイズ"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "オプション"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "折り返し"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ハイパーリンク"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "外枠"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "背景"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "透明"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "段組み"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "マクロ"
@@ -28874,43 +28880,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "このタブで行った変更をダイアログを開いたときの設定まで戻します。"
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "フォント"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "フォントの効果"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "位置"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "日本語レイアウト"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "蛍光ペン"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "外枠"
@@ -28922,85 +28928,85 @@ msgid "List Style"
msgstr "リストスタイル"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "設定された行頭文字を選択"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "箇条書き"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "設定された番号付けを選択"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "番号付け"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "設定されたアウトライン書式を選択"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "アウトライン"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "設定された行頭画像を選択"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "画像"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "位置"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "カスタマイズ"
@@ -29012,109 +29018,109 @@ msgid "Paragraph Style"
msgstr "段落スタイル"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "インデントと間隔"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "配置"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "体裁"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "日本語の体裁"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "フォント"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "フォントの効果"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "位置"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "日本語レイアウト"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "蛍光ペン"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "タブ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ドロップキャップ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "背景"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "透明"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "罫線"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "条件"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "段落スタイルにアウトラインレベル、リストスタイル、行番号を設定します。"
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "アウトラインと箇条書き"
@@ -29126,55 +29132,55 @@ msgid "Frame Style"
msgstr "枠スタイル"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "種類"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "オプション"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "折り返し"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "背景"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "透明"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "罫線"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "段組み"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "マクロ"
@@ -29192,61 +29198,61 @@ msgid "Standard"
msgstr "標準"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ページ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "背景"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "透明"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ヘッダー"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "フッター"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "罫線"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "段組み"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "脚注"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "行数と文字数"
diff --git a/source/jv/cui/messages.po b/source/jv/cui/messages.po
index 90ade42315b..67b83e63ee3 100644
--- a/source/jv/cui/messages.po
+++ b/source/jv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2561,10 +2561,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/jv/sc/messages.po b/source/jv/sc/messages.po
index a74bd8174d8..58a4ee31f5a 100644
--- a/source/jv/sc/messages.po
+++ b/source/jv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14329,14 +14329,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14563,14 +14564,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23390,91 +23392,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24080,102 +24082,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24213,52 +24119,52 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr ""
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "huruf"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "perataan"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr ""
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
#, fuzzy
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "latar"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28424,46 +28330,46 @@ msgid "Page Style"
msgstr ""
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Kācā"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr ""
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
#, fuzzy
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "latar"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
#, fuzzy
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "irahan"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
#, fuzzy
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "suku"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -28508,58 +28414,58 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr ""
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "huruf"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "perataan"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr ""
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
#, fuzzy
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "latar"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/jv/sd/messages.po b/source/jv/sd/messages.po
index 2ce8d9f9379..35ef4fa5387 100644
--- a/source/jv/sd/messages.po
+++ b/source/jv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9670,100 +9670,100 @@ msgid "_Standard"
msgstr "standar"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Baris"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "huruf"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teks"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "perataan"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/jv/sfx2/messages.po b/source/jv/sfx2/messages.po
index 2ed56b40311..a30e634418a 100644
--- a/source/jv/sfx2/messages.po
+++ b/source/jv/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-03-11 23:01+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1594,377 +1594,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Buw~ang"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/jv/svtools/messages.po b/source/jv/svtools/messages.po
index 58227bc96ca..b597e6c0190 100644
--- a/source/jv/svtools/messages.po
+++ b/source/jv/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2411,16 +2411,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2428,37 +2436,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2466,19 +2474,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2491,43 +2499,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,43 +2543,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/jv/svx/messages.po b/source/jv/svx/messages.po
index 9f09bd4d8d5..430fd03d2c3 100644
--- a/source/jv/svx/messages.po
+++ b/source/jv/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-03-11 23:02+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10202,134 +10202,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10338,19 +10388,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/jv/sw/messages.po b/source/jv/sw/messages.po
index bf50437e1b2..fba4a9b45c1 100644
--- a/source/jv/sw/messages.po
+++ b/source/jv/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-03-11 23:03+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3040,9 +3040,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10760,38 +10760,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16700,56 +16706,56 @@ msgid "Frame"
msgstr "bingkai"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opsi"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "tautan"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr ""
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr ""
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29316,45 +29322,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
#, fuzzy
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "huruf"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "posisi"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -29366,88 +29372,88 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "garis wates"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "gambar"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "posisi"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29459,113 +29465,113 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
#, fuzzy
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "perataan"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
#, fuzzy
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "huruf"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "posisi"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr ""
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "kondisi"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29577,55 +29583,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipe"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opsi"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr ""
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr ""
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -29644,63 +29650,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Kācā"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr ""
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "irahan"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
#, fuzzy
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "suku"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr ""
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ka/cui/messages.po b/source/ka/cui/messages.po
index 37ab15ddedc..aeb5ba76d9f 100644
--- a/source/ka/cui/messages.po
+++ b/source/ka/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-11 17:47+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-22 01:45+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ka/>\n"
"Language: ka\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "გახსენით CSV ფაილი ახალი ფურცლის სახით მიმდინარე ელცხრილში მენიუდან ფურცელი -> ფურცელი ფაილიდან."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "შეგიძლიათ გააგრძელოთ წერა ნაგულისხმევი დაფორმატების ატრიბუტებით სისქის, კურსივის ან ხაზგასმის ხელით გადატარებით ღილაკებით %MOD+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "წუთი"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "ამის მაგიერ დოკუმენტის ავტომატური შენახვა"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "მიუთითებს, რომ საოფისე პაკეტი შეცვლილ დოკუმენტს შეინახავს, იმის მაგიერ, რომ შექმნას დროებითი ავტოაღდგენის ვერსია. ინახავს იგივე დროის შუალედს, რასაც ავტოაღდგენა."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/ka/helpcontent2/source/text/shared/00.po b/source/ka/helpcontent2/source/text/shared/00.po
index 5b72f40dce3..ab3f30b51d8 100644
--- a/source/ka/helpcontent2/source/text/shared/00.po
+++ b/source/ka/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index 05dc12cdc1e..93d1079ebba 100644
--- a/source/ka/helpcontent2/source/text/shared/01.po
+++ b/source/ka/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "ორგანიზატორი"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/01060000.xhp\">დამახსოვრება</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index e54aa5d643b..b62d3f7a78b 100644
--- a/source/ka/helpcontent2/source/text/shared/optionen.po
+++ b/source/ka/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/ka/helpcontent2/source/text/swriter/01.po b/source/ka/helpcontent2/source/text/swriter/01.po
index 6d7371325fd..b5fe52c50db 100644
--- a/source/ka/helpcontent2/source/text/swriter/01.po
+++ b/source/ka/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ka/helpcontent2/source/text/swriter/guide.po b/source/ka/helpcontent2/source/text/swriter/guide.po
index 910f0717cd1..65991a489c3 100644
--- a/source/ka/helpcontent2/source/text/swriter/guide.po
+++ b/source/ka/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "დააწკაპუნეთ <emph>ჩანაცვლება</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/ka/sc/messages.po b/source/ka/sc/messages.po
index c3c8881d354..d0225d4158a 100644
--- a/source/ka/sc/messages.po
+++ b/source/ka/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ka/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542023760.000000\n"
#. kBovX
@@ -14279,19 +14279,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "რეჟიმის დამთხვევა"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - ზუსტი დამთხვევა. დააბრუნებს #N/A, თუ დამთხვევა არაა. (ნაგულისხმევი).\n"
-"-1 - ზუსტი დამთხვევა, ან შემდეგი უფრო პატარა ელემენტი.\n"
-"1 - ზუსტი დამთხვევა, ან შემდეგი უფრო დიდი ელემენტი.\n"
-"2 - ვაილდკარდებით ან რეგულარული გამოსახულებებით დამთხვევა."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14517,19 +14514,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "რეჟიმის დამთხვევა"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - ზუსტი დამთხვევა. დააბრუნებს #N/A, თუ დამთხვევა არაა. (ნაგულისხმევი).\n"
-"-1 - ზუსტი დამთხვევა, ან შემდეგი უფრო პატარა ელემენტი.\n"
-"1 - ზუსტი დამთხვევა, ან შემდეგი უფრო დიდი ელემენტი.\n"
-"2 - ვაილდკარდებით ან რეგულარული გამოსახულებებით დამთხვევა."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23241,91 +23235,91 @@ msgid "_Standard"
msgstr "_სტანდარტული"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "ზოგადი"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "ხაზი"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "ალაგი"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "დაჩრდილვა"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "ფონტი"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "შეწევა & დაშორება"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "ტექსტი"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "ტექსტის ანიმაცია"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "განზომილების ხაზი"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "სწორება"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "ტაბულაცია"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "გამოკვეთა"
@@ -23924,102 +23918,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "წაშლა"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "საზღვრების გარეშე"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "ყველა საზღვარი"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "გარე საზღვრები"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "სქელი საზღვარი"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "სქელი ქვედა საზღვარი"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "ორმაგი ქვედა საზღვარი"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "ზედა და სქელი ქვედა საზღვარი"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "ზედა და ორმაგი ქვედა საზღვარი"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "მარცხენა საზღვარი"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "მარჯვენა საზღვარი"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "ზედა საზღვარი"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "ქვედა საზღვარი"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "დიაგონალური მაღლითა საზღვარი"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "დიაგონალური ქვედა საზღვარი"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "ზედა და ქვედა საზღვრები"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "მარჯვენა და მარცხენა საზღვრები"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24057,49 +23955,49 @@ msgid "Format Cells"
msgstr "უჯრედების დაფორმატება"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "რიცხვები"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ფონტი"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "სწორება"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "საზღვრები"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ფონი"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "უჯრედის დაცვა"
@@ -28188,43 +28086,43 @@ msgid "Page Style"
msgstr "გვერდის სტილი"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "ზოგადი"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "გვერდი"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "საზღვრები"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ფონი"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "თავსართი"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ქვედა კოლონტიტული"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ფურცელი"
@@ -28266,55 +28164,55 @@ msgid "Cell Style"
msgstr "უჯრედის სტილი"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "ზოგადი"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "რიცხვები"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ფონტი"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "სწორება"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "საზღვრები"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ფონი"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "უჯრედის დაცვა"
diff --git a/source/ka/sd/messages.po b/source/ka/sd/messages.po
index 77ed1f2c5e9..d6388b277d1 100644
--- a/source/ka/sd/messages.po
+++ b/source/ka/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-04 01:45+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ka/>\n"
@@ -9557,97 +9557,97 @@ msgid "_Standard"
msgstr "_სტანდარტული"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "ზოგადი"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ხაზი"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ალაგი"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "დაჩრდილვა"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ფონტი"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "შეწევა & დაშორება"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ტექსტი"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ტექსტის ანიმაცია"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "განზომილების ხაზი"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "დამაკავშირებელი ხაზი"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "სწორება"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ტაბულაცია"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "გამოკვეთა"
diff --git a/source/ka/sfx2/messages.po b/source/ka/sfx2/messages.po
index 7ccbdf17ed6..4e9db1b8eb3 100644
--- a/source/ka/sfx2/messages.po
+++ b/source/ka/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-04 01:45+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ka/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540150452.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "მაკროები გათიშულია მაკროს უსაფრთხოების პარამეტრების გამო."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "მაკროები ხელმოწერილია, მაგრამ დოკუმენტი (რომელიც დოკუმენტის მოვლენებს შეიცავს) არაა ხელმოწერილი."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "მაკროების ჩვენება"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "უსაფრთხოების პარამეტრების ჩვენება"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "მოვლენების ჩვენება"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "ნაცრისფერი ელეგანტური"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "სკა"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "ლურჯი მრუდი"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "მონახაზები"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "კონფეტი"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "ყვითელი იდეა"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "დნმ"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "ფოკუსი"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "ტყის ჩიტი"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "ქორფები"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "ინსპირაცია"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "სინათლეები"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "ზრდადი თავისუფლება"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "მეტროპოლისი"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "შუაღამის ლურჯი"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "ბუნება"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "ფანქარი"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "პიანინო"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "პორტფოლიო"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "მიმდინარეობა"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "დაისი"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "მოსავალი"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "კაშკაშა"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "გაგრძელება"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "ნაგულისხმევი"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "თანამედროვე"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "თანამედროვე საქმიანი წერილი sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "თანამედროვე საქმიანი წერილი serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "საქმიანი ბარათი ლოგოთი"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "უბრალო"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "გამარტივებული ჩინური ჩვეულებრივი"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "იაპონური ნორმალური"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "წაშლა"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "ყველას გასუფთავება"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "პაროლის სიგრძე"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-დააწკაპუნეთ ჰიპერბმულის გასახსნელად: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "დააწკაპუნეთ ჰიპერბმულის გასახსნელად: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(გამოიყენება სად: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "დოკუმენტი"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "ელცხრილი"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "პრეზენტაცია"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "ნახატი"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "ბოლოს გამოყენებული"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "უახლესი სიმბოლოების გარეშე"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "ყველა ნაგულისხმე~ვი ნიმუშის ჩამოყრა"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "ნ~აგულისხმევი ტექსტური დოკუმენტის ჩამოყრა"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "ნაგულისხმევი ელ~ცხრილის ჩამოყრა"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "ნაგული~სხმევი პრეზენტაციის ჩამოყრა"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "ნაგულისხმე~ვი ნახატის ჩამოყრა"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "შემოტ~ანა"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "~გაფართოებები"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "სახელის გადარქმევა"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "კატეგორიის სახელის გადარქმევა"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "ახალი კატეგორია"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO ობიექტის ინსპექტორი"
diff --git a/source/ka/svtools/messages.po b/source/ka/svtools/messages.po
index 2dc0701c847..8ac44e6fa3d 100644
--- a/source/ka/svtools/messages.po
+++ b/source/ka/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-29 21:15+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ka/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195596.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "ინტერნეტ კავშირის დამყარება $(ARG1)-სთან ვერ ხერხდება."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"სერვერის შეტყობინება შეცდომის შესახებ: $ (ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"სერვერის შეცდომის შეტყობინება: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "მოხდა ზოგადი ინტერნეტ შეცდომა."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "მოთხოვნილი ინტერნეტ მონაცემები მიუწვდომელია კეშში და ვერ გადაიცემა, რადგან ხაზზე ყოფნის რეჟიმი გააქტიურებული არაა."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "შემცველობის შექმნა ვერ მოხერხდა."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "სამიზნე ფაილური სისტემისთვის ფაილის სახელი მეტისმეტად გრძელია."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "შეყვანის სინტაქსი არასწორია."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"გთხოვთ, შეინახეთ დოკუმენტი %PRODUCTNAME %PRODUCTVERSION-ის ფაილის ფორმატში."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "მიღწეულია ერთდროულად გახსნილი დოკუმენტების მაქსიმალური რიცხვი. ახალი დოკუმენტის გასახსნელად საჭიროა დახუროთ ერთი ან მეტი დოკუმენტი."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "მარქაფი ასლის შექმნა შეუძლებელია."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "მონაცემების არასწორი სიგრძე."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ფუნქცია შეუძლებელია: ბილიკი მიმდინარე საქაღალდეს შეიცავს."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ფუნქცია შეუძლებელია: მოწყობილობა (დისკი)არ არის შესაბამისი."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "მოწყობილობა (დისკი) მზად არაა."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "არასწორი საკონტროლო ჯამი."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ფუნქცია შეუძლებელია: დაცულია ჩაწერაზე."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"ჯერ გაზიარება გამორთეთ."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "ფაილის ფორმატში $(ARG1)(მწკრივი, სვეტი) აღმოჩენილია შეცდომა."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "ფილტრი ამ ფაილის ფორმატისთვის გათიშულია კონფიგურაციაში. დაუკავშირდით თქვენს სისტემურ ადმინისტრატორს."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ზოგადი OLE შეცდომა."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ქმედება ობიექტის ამჟამინდელ მდგომარეობაში ვერ გაეშვება."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ობიექტს ქმედების მხარდაჭერა არ გააჩნია."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ობიექტის ქმედების მხარდაჭერა არ გააჩნია."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) ობიექტის გააქტიურებისას"
diff --git a/source/ka/svx/messages.po b/source/ka/svx/messages.po
index 7eaafd9b1c7..eb18761a762 100644
--- a/source/ka/svx/messages.po
+++ b/source/ka/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-19 01:45+0000\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ka/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542023764.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "საზღვრების გარეშე"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "მხოლოდ, გარე საზღვრები"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "გარე საზღვარი და ჰორიზონტალური ხაზები"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "გარე საზღვარი და ყველა შიდა ხაზი"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "გარე საზღვარი და ვერტიკალური ხაზები"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "გარე საზღვარი შიდა ხაზების შეუცვლელად"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "მხოლოდ, დიაგონალური ხაზები"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "დიაგონალური ქვედა საზღვარი"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "დიაგონალური მაღლითა საზღვარი"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "დიაგონალური საზღვარი"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "ოთხივე საზღვარი"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "მხოლოდ, მარცხენა და მარჯვენა საზღვრები"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "მხოლოდ, ზედა და ქვედა საზღვრები"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "ზედა და ქვედა საზღვრებში და ყველა ჰორიზონტალური ხაზი"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "მხოლოდ, მარცხენა საზღვარი"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "მხოლოდ, მარჯვენა საზღვარი"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "მხოლოდ, ზედა საზღვარი"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "მხოლოდ, ქვედა საზღვარი"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "ზედა და ქვედა საზღვრები და ყველა შიდა ხაზი"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "მარცხენა და მარჯვენა საზღვრები და ყველა შიდა ხაზი"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "სანიშნეებიდან წაშლა"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "სიმბოლო ვერ ვიპოვე"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "სანიშნეებში ჩამატება"
@@ -10281,19 +10331,19 @@ msgstr "სანიშნეებში ჩამატება"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "გამოსახულების ზომის შემოწმება"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "გამოსახულებას '%NAME%' მეტისმეტად ცოტა პიქსელი აქვს მიმდინარე ზომისთვის (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "გამოსახულებას '%NAME%' მეტისმეტად ბევრი პიქსელი აქვს მიმდინარე ზომისთვის (%DPIX% x %DPIY% DPI)"
diff --git a/source/ka/sw/messages.po b/source/ka/sw/messages.po
index 6dda05cf51d..a8c4c0d9771 100644
--- a/source/ka/sw/messages.po
+++ b/source/ka/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 13:39+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 11:46+0200\n"
"Last-Translator: Ekaterine Papava <papava.e@gtu.ge>\n"
"Language-Team: Georgian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ka/>\n"
"Language: ka\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "სია 5 გაგრძ."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "ზედა და ქვედა კოლონტიტული"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10590,38 +10590,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "ცხრილი"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "დაფორმატება"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "ჰიპერბმული"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "სიმულირებული წარწერები"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "დანომვრა"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "სხვა"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "დააწკაპუნეთ განახლებისთვის..."
@@ -16422,55 +16428,55 @@ msgid "Frame"
msgstr "ჩარჩო"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "მდებარეობა და ზომა"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "მორგება"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "შემოვლება"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ჰიპერბმული"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "საზღვრები"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ალაგი"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "სვეტები"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "მაკრო"
@@ -28867,43 +28873,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "დააბრუნებს ცვლილებებს, რომელიც აქ ნაჩვენებ ჩანართში შეიტანეთ პარამეტრებში, რომლებიც აქ ნაჩვენები იყო, როცა ეს დიალოგი გაიხსნა."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "ზოგადი"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ფონტი"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "მდგომარეობა"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "აზიური განლაგება"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "გამოკვეთა"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "საზღვრები"
@@ -28915,85 +28921,85 @@ msgid "List Style"
msgstr "სიის სტილი"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "მომხმარებლის სტილების სახელი და დამალვა"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "ზოგადი"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "არჩიეთ წინასწარ აღწერილი მარკერებიდან"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "დაულაგებელი"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "აირჩიეთ წინასწარ აღწერილი დანომრილი სია"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "დალაგებული"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "აირჩიეთ წინასწარ აღწერილი კარკასის ფორმატი"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "კონტური"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "აირჩიეთ წინასწარ აღწერილი გამოსახულების მარკერის სიმბოლო"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "გამოსახულება"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "შეცვალეთ შეწევა, ადგილი გარშემო და სწორება სიის ნომრებისთვის ან სიმბოლოებისთვის"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "მდებარეობა"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "ააწყვეთ საკუთარი სია ან კონტურის ფორმატი"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "მორგება"
@@ -29005,109 +29011,109 @@ msgid "Paragraph Style"
msgstr "აბზაცის სტილი"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "ზოგადი"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "შეწევა & დაშორება"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "სწორება"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "ტექსტის ნაკადი"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "აზიური ტიპოგრაფია"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ფონტი"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ფონტის ეფექტები"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "მდებარეობა"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "აზიური განლაგება"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "გამოკვეთა"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ტაბულაცია"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "აბზაცის ძალიან დიდი ასოთი დაწყება"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ალაგი"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "საზღვრები"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "პირობა"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "კარკასის დონის, სიის სტილის და ხაზის დანომვრის დაყენება აბზაცის სტილისთვის."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "კონტური და სია"
@@ -29119,55 +29125,55 @@ msgid "Frame Style"
msgstr "ჩარჩოს სტილი"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "ზოგადი"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ტიპი"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "მორგება"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "შემოვლება"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ალაგი"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "საზღვრები"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "სვეტები"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "მაკრო"
@@ -29185,61 +29191,61 @@ msgid "Standard"
msgstr "სტანდარტული"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "ზოგადი"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "გვერდი"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ალაგი"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "გამჭვირვალობა"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ზედა კოლონტიტული"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ქვედა კოლონტიტული"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "საზღვრები"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "სვეტები"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "სქოლიო"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "ტექსტის ბადე"
diff --git a/source/kab/cui/messages.po b/source/kab/cui/messages.po
index 0b5a6aee513..8ca9be276a9 100644
--- a/source/kab/cui/messages.po
+++ b/source/kab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/kab/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/kab/sc/messages.po b/source/kab/sc/messages.po
index 4ff57328881..5fed6b4c088 100644
--- a/source/kab/sc/messages.po
+++ b/source/kab/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/kab/>\n"
@@ -14266,14 +14266,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14496,14 +14497,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23218,91 +23220,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23901,104 +23903,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ulac iran"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Lerryuf meṛṛa"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-#, fuzzy
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "&Iri:"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-#, fuzzy
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "&Iri:"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24036,49 +23940,49 @@ msgid "Format Cells"
msgstr "Amsal n texxamin"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Imiḍanen"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Tasefsit"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Isemda n tseftit"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Areyyec"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tira tudlift n Asya"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Lerryuf"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Agilal"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Ammesten n tebniqt"
@@ -28181,43 +28085,43 @@ msgid "Page Style"
msgstr "Aɣanib n usebter"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Asebter"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Lerryuf"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Agilal"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Aqeṛṛu"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Aḍar"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Afer"
@@ -28259,55 +28163,55 @@ msgid "Cell Style"
msgstr "Aɣanib n tebniqt"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Imiḍanen"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Tasefsit"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Isemda n tseftit"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Areyyec"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tira tudlift n Asya"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Lerryuf"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Agilal"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Ammesten n tebniqt"
diff --git a/source/kab/sd/messages.po b/source/kab/sd/messages.po
index b0e16c27261..73e71e3570a 100644
--- a/source/kab/sd/messages.po
+++ b/source/kab/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/kab/>\n"
@@ -9550,97 +9550,97 @@ msgid "_Standard"
msgstr "A_meslugen"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Ajerriḍ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Taɣzut"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Tili"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Tafrawant"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Tasefsit"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Isemda n isekkilen"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Asiẓi akked tallunt"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Aḍris"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Asmussu n uḍris"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Tisekta"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Amaqqan"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Areyyec"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tira n Asya"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tirigliwin"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Sbin-d azal"
diff --git a/source/kab/sfx2/messages.po b/source/kab/sfx2/messages.po
index 1af1c381886..8445bcef8fc 100644
--- a/source/kab/sfx2/messages.po
+++ b/source/kab/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/kab/>\n"
@@ -1616,376 +1616,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Taɣrast"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Tamaknayt tanilit"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Iɣawasen iniliyen"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Asaḍas"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Agḍiḍ n teẓgi"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Tahregt"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Tafat"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Anili n yiḍ"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Unuɣ agaman"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Akeryun"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Apyanu"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Akaram n imahilen"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Akala"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Tafrara"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Azwil n wagim"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Iǧhedd"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Agzul"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Lxṣas"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Atrar"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Tabrat n uzenzu tatrart sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Tabrat n uzenzu tatrart serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Takarḍa n tirzi s ulugut"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Kkes"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Sfeḍ kulec"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Teɣzi n wawal n uɛeddi"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Awal uffir i teskecmeḍ igla-d s wugur n tegramahalant. ttxil-k sekcem awal uffir ur nettɛeddi ddaw n 52 n yiṭamḍanen neɣ ugarn 55 n yiṭamḍanen."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/kab/svtools/messages.po b/source/kab/svtools/messages.po
index 56b825bd92e..d05aff3ff61 100644
--- a/source/kab/svtools/messages.po
+++ b/source/kab/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/kab/>\n"
@@ -2385,10 +2385,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "D awezɣi aɣser n tuqqna internet ɣer $(ARG1)"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2396,7 +2404,7 @@ msgstr ""
"Izen n unezri n uqeddac: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2406,37 +2414,37 @@ msgstr ""
"Izen n unezri n uqeddac: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Yeḍra-d unezri amatu n internet"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Isefka n Internet yettusutren ulac-iten di tkatut ulamek ara ttwaznen acku askar uqqin ur yermid ara."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Agbur ulamek ara d-yenulfu."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Isem n ufaylu bezzaf ɣezzif i wenagraw n yifuyla aniccan."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Taseddast n unekcum d tarmeɣtut."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2446,19 +2454,19 @@ msgstr ""
"yetwafernen. Ttxil-k skels-it s umasal %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Tɛeddaḍ tilist n umḍan n isemliyen i tzemreḍ ad teldiḍ ɣef tikkelt. Ilaq ad tmedleḍ yiwen neɣ ugar n isemliyen iwakken ad tizmireḍ ad teldiḍ isemli amaynut."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "D awezɣi asnulfu n tenɣelt n weḥraz."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2478,43 +2486,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Teɣzi n isefka d tarmeɣtut."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Taneflit d tawezɣit: abrid yella degs ukaram amiran."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Taneflit d tawezɣit: ameɣri mači kifkif."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Ibenk (aḍebsi) ur yewjid ara."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Timerni n usenqed mačči d tameɣtut."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Taneflit d tawezɣit: immesten i tira."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2524,43 +2532,43 @@ msgstr ""
"Sexsi qbel awal n uɛeddi."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Nufa-d anezri n umasal di $(ARG1)(row,col)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Tastayt n umasal-agi yexsi di twila. Ttxil-k nermes anedbal-inek n unagraw."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Anezri OLE amatu."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Addad amiran n tɣawsa ur yesuruf ara aselkem n tigawt-agi."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Taɣawsa ur tezmir ula i yiwet n tigawt."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Taɣawsa ur tezmir ara i tigawt-agi."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) deg usermed n tɣawsa"
diff --git a/source/kab/svx/messages.po b/source/kab/svx/messages.po
index 9f47cc2fba8..d8ee45b2479 100644
--- a/source/kab/svx/messages.po
+++ b/source/kab/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/kab/>\n"
@@ -10174,134 +10174,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10310,19 +10360,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/kab/sw/messages.po b/source/kab/sw/messages.po
index ab37710c20b..dfe2c27421c 100644
--- a/source/kab/sw/messages.po
+++ b/source/kab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-05-22 13:26+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"Language-Team: Kabyle <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/kab/>\n"
@@ -3027,9 +3027,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10597,38 +10597,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16429,55 +16435,55 @@ msgid "Frame"
msgstr "akatar"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Iγewwaṛen"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Asezggi n weḍris"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Afelseɣwen"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Lerryuf"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Tamnaḍt"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Tafrawant"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Tigejda"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Amɣer"
@@ -28872,43 +28878,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Tasefsit"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Isemda n tseftit"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Ideg"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Taneɣruft n asia"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Sbin-d azal"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Lerryuf"
@@ -28920,85 +28926,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Aɣawas"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Tugna"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Ideg"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Sagen"
@@ -29010,109 +29016,109 @@ msgid "Paragraph Style"
msgstr "Aɣanib n tseddart"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Asiẓi akked tallunt"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Areyyec"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Amseḍfer n uḍris"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tira tudlift n Asya"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Tasefsit"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Isemda n tseftit"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Ideg"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Taneɣruft n asia"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Sbin-d azal"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Iccaren"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Isekkilen idelgen"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Tamnaḍt"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Tafrawant"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Lerryuf"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Tawtilt"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29124,55 +29130,55 @@ msgid "Frame Style"
msgstr "Aɣanib n ukatar"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Ṣṣenf"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Iγewwaṛen"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Asezggi n weḍris"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Tamnaḍt"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Tafrawant"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Lerryuf"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Tigejda"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Amɣer"
@@ -29190,61 +29196,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Asebter"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Tamnaḍt"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Tafrawant"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Aqeṛṛu"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Aḍar"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Lerryuf"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Tigejda"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Tazmilt n uḍaṛ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Taferrugt n uḍris"
diff --git a/source/kk/chart2/messages.po b/source/kk/chart2/messages.po
index fe5ecb7ae22..ca55f2cb09f 100644
--- a/source/kk/chart2/messages.po
+++ b/source/kk/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: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2024-05-26 17:38+0000\n"
+"PO-Revision-Date: 2024-06-24 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/kk/>\n"
"Language: kk\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1554998508.000000\n"
#. NCRDD
@@ -929,7 +929,7 @@ msgstr "Аймақ"
#: chart2/inc/strings.hrc:162
msgctxt "STR_TYPE_PIE"
msgid "Pie"
-msgstr "Дөңгелек"
+msgstr "Шеңберлі"
#. GGwEH
#: chart2/inc/strings.hrc:163
diff --git a/source/kk/cui/messages.po b/source/kk/cui/messages.po
index 19ac3afd6cf..947c83e44f4 100644
--- a/source/kk/cui/messages.po
+++ b/source/kk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/kk/>\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "CSV файлын ағымдағы эл. кестеде жаңа парақ ретінде ашу үшін, \"Парақ ▸ Парақты файлдан кірістіру\" мәзірін қолданыңыз."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Жуан, курсив немесе астын сызуды қолмен қолданғаннан кейін %MOD1+Shift+X пернелерін басу арқылы бастапқы пішімдеу атрибуттарымен жазуды жалғастыра аласыз."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
diff --git a/source/kk/sc/messages.po b/source/kk/sc/messages.po
index 59c23501efd..880795a4517 100644
--- a/source/kk/sc/messages.po
+++ b/source/kk/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-08 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/kk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563104974.000000\n"
#. kBovX
@@ -14277,14 +14277,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Сәйкестеу режимі"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14507,14 +14508,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Сәйкестеу режимі"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23223,91 +23225,91 @@ msgid "_Standard"
msgstr "_Стандартты"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Сызық"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Аймақ"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Көлеңкелеу"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Қаріп"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Шегіністер және аралықтар"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Мәтін"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Мәтін анимациясы"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Өлшем сызығы"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Туралау"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Шығысазиялық теру ережелері"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Табуляция"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Түспен ерекшелеу"
@@ -23906,102 +23908,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Өшіру"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Шекарасыз"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Барлық шекаралар"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Сыртқы шекаралар"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Жуан сызықтар"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Жуан астыңғы сызық"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Астыңғы қос сызық"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Үстіңгі және астыңғы жуан сызықтар"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Үстіңгі және астыңғы қос сызықтар"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Сол жақ шекарасы"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Оң жақ шекарасы"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Үстіңгі шекарасы"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Астыңғы шекарасы"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Диагональді жоғарыға"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Диагональді төменге"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Үстіңгі және астыңғы шекаралар"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Сол және оң жақ шекаралары"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24039,49 +23945,49 @@ msgid "Format Cells"
msgstr "Ұяшықтар пішімі"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Сандар"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Қаріп"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Туралау"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Шығысазиялық теру ережелері"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Шектер"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Фон"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Ұяшықты қорғау"
@@ -28170,43 +28076,43 @@ msgid "Page Style"
msgstr "Бет стилі"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Бет"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Шектер"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Жоғарғы колонтитул"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Төменгі колонтитул"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Парақ"
@@ -28248,55 +28154,55 @@ msgid "Cell Style"
msgstr "Ұяшық стилі"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Сандар"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Қаріп"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Туралау"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Шығысазиялық теру ережелері"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Шектер"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Фон"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Ұяшық қорғанысы"
diff --git a/source/kk/sd/messages.po b/source/kk/sd/messages.po
index dd4161a7c3d..8107912fb71 100644
--- a/source/kk/sd/messages.po
+++ b/source/kk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/kk/>\n"
@@ -9557,97 +9557,97 @@ msgid "_Standard"
msgstr "_Стандартты"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Сызық"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Аймақ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Көлеңкелеу"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Қаріп"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Шегіністер және аралықтар"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Мәтін"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Мәтін анимациясы"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Өлшем сызығы"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Байланыстыратын сызық"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Туралау"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Шығысазиялық теру ережелері"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Табуляция"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Түспен ерекшелеу"
diff --git a/source/kk/sfx2/messages.po b/source/kk/sfx2/messages.po
index 76d3a67bff3..5bdd62c10f7 100644
--- a/source/kk/sfx2/messages.po
+++ b/source/kk/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-08 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/kk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563104695.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Макростар \"Макростар қауіпсіздігі\" параметрлеріне байланысты сөндірілген."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Макростарға қол қойылған, бірақ құжатқа (құжат оқиғалары бар) қол қойылмаған."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Макростарды көрсету"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Қауіпсіздік опцияларын көрсету"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Оқиғаларды көрсету"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Сұр элегантты"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Ара ұясы"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Көк қисық сызық"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Сызба"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Кәмпит"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Сары ой"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ДНҚ"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Фокус"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Орман құсы"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Балғындық"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Шабыт"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Шамдар"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Еркіндік"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Урбанистік"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Қараңғы көк"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Табиғат"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Қарындаш"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Рояль"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Прогресс"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Күн батуы"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Баяғы замаңғы"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Жай графика"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Резюме"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Қорытынды"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Бастапқы"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Заманауи"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Заманауи іскерлік хат, кертусіз қаріп"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Заманауи іскерлік хат, кертулермен қаріп"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Логотипі бар визит карточкасы"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Қарапайым"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Жеңілдетілген қытайша қалыпты"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Өшіру"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Барлығын тазарту"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Пароль ұзындығы"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Гиперсілтемені ашу үшін %{key}-шерту керек: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Гиперсілтемені ашу үшін шерту керек: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(қолдануда: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Құжат"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Электрондық кесте"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Презентация"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Сурет"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Жуырдағы"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Жуырдағы таңбалар жоқ"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Барлық үлгілерді бас~тапқыларға қайтару"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Ә~депкі мәтін құжат үлгісін тастау"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Ә~депкі электрондық кесте үлгісін тастау"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Ә~депкі презентация үлгісін тастау"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Ә~депкі сурет үлгісін тастау"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Импорттау"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Кеңе~йтулер"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Атын өзгерту"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Санат атын өзгерту"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Жаңа санат"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO объекттер бақылаушысы"
diff --git a/source/kk/svtools/messages.po b/source/kk/svtools/messages.po
index 379c3d12879..d96edce3667 100644
--- a/source/kk/svtools/messages.po
+++ b/source/kk/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-26 17:38+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/kk/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563104930.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) торабымен интернет байланысын орнату мүмкін емес."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Сервер қатесі: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Сервер қатесі: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Интернеттің ортақ қатесі орын алды."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Сұралған Интернет деректері кэште жоқ және оларды жіберу мүмкін емес, өйткені байланысу режимі іске қосылмаған."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Құрамасын жасау мүмкін емес."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Файл аты мақсат файлдық жүйесі үшін тым ұзын."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Енгізу синтаксисі қате."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Құжаты %PRODUCTNAME %PRODUCTVERSION пішімінде сақтаңыз."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Ашуға болатын құжаттар санының максималды шамасына жеттік. Жаңа құжатты ашу үшін, бір немесе бірнеше құжатты жабыңыз."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Қор көшірмесін жасау мүмкін емес."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Деректер ұзындығы қате."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Функцияны орындау мүмкін емес: орналасуда ағымдағы бума бар болып тұр."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Функцияны орындау мүмкін емес: басқа құрылғы (диск)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Құрылғы (диск) дайын емес."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Бақылау сомасы қате."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Әрекетті орындау мүмкін емес: жазудан қорғалған."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Алдымен ортақ қолдану режимін сөндіріңіз."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "$(ARG1)(жол,баған) орнында файл пішімінің қатесі."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Бұл пішім сүзгісі баптауларда сөндірілген. Жүйелік әкімшіңізге хабарласыңыз."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Жалпы OLE қатесі."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Бұл күйде объект бұл әрекетті орындай алмайды."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Бұл объект ешқандай әрекетті қолдамайды."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Объект бұл әрекетті қолдамайды."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "Объектті белсендіру кезіндегі $(ERR)"
diff --git a/source/kk/svx/messages.po b/source/kk/svx/messages.po
index 058ba0c0258..ce9f5a4e42c 100644
--- a/source/kk/svx/messages.po
+++ b/source/kk/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/kk/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Шекарасыз"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Тек сыртқы шекара"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Сыртқы шекара мен горизонталды сызықтар"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Сыртқы шекара мен барлық ішкі сызықтар"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Сыртқы шекара мен вертикалды сызықтар"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Сыртқы шекара, ішкі сызықтарды өзгертпей"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Тек диагональды сызықтар"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Диагональді төменге"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Диагональді жоғарыға"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Айқас шекара"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Барлық төрт шекара"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Тек сол жақ пен оң жақ шекаралары"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Тек жоғарғы және төменгі шекаралар"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Жоғарғы және төменгі шекаралар және барлық горизонталды сызықтар"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Тек сол жақ шекарасы"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Тек оң жақ шекарасы"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Тек жоғарғы шекарасы"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Тек төменгі шекарасы"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Жоғарғы және төменгі шекаралар және барлық ішкі сызықтар"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Сол және оң жақ шекаралар және барлық ішкі сызықтар"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Графика өлшемдерін тексеру"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "\"%NAME%\" суретінің ағымдағы өлшемі үшін тым аз пиксель бар (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "\"%NAME%\" суретінің ағымдағы өлшемі үшін тым көп пиксель бар (%DPIX% x %DPIY% DPI)"
diff --git a/source/kk/sw/messages.po b/source/kk/sw/messages.po
index c38ab35c8a4..b99bff27ae8 100644
--- a/source/kk/sw/messages.po
+++ b/source/kk/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-18 01:45+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: Kazakh <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/kk/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Тізім 5 жалғасы"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Жоғарғы және төменгі колонтитулдар"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10597,38 +10597,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Кесте"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Пішімдеу"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Гиперсілтеме"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Нөмірлеу"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Басқа"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16429,55 +16435,55 @@ msgid "Frame"
msgstr "Фрейм"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Орны және өлшемі"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Опциялар"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Аймалау"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Гиперсілтеме"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Шекаралар"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Аймақ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Бағандар"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Макрос"
@@ -28874,43 +28880,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Ағымдағы бетте жасалған кез келген өзгерістерді осы сұхбат терезесі ашылған кезде болған параметрлерге қайтару."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Қаріп"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Орналасуы"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Шығысазиялық мәтіннің белгіленуі"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Түспен ерекшелеу"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Шекаралар"
@@ -28922,85 +28928,85 @@ msgid "List Style"
msgstr "Тізім стилі"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Пайдаланушы анықтаған стильдерді атау және жасыру"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Алдын ала анықталған маркер түрін таңдау"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Маркерлер"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Алдын ала анықталған нөмірленген тізімді таңдау"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Реттелген"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Алдын ала анықталған нөмірлеу құрылымын таңдау"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Құрылымы"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Алдын ала анықталған маркерді таңдау"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Сурет"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Тізім нөмірлері немесе таңбалары үшін шегініс, аралықты және туралауды өзгерту"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Орналасу"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Өз тізіміңізді немесе нөмірлеу құрылымын жасаңыз"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Баптау"
@@ -29012,109 +29018,109 @@ msgid "Paragraph Style"
msgstr "Абзац стилі"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Шегіністер және аралықтар"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Туралау"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Бетте"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Шығысазиялық теру ережелері"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Қаріп"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Қаріп эффекттері"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Орналасу"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Шығысазиялық мәтіннің белгіленуі"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Түспен ерекшелеу"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Табуляция"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Әріпше"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Аймақ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Шекаралар"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Шарт"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Абзац стилі үшін құрылым деңгейін, тізім стилін және жол нөмірлеуін орнату."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Құрылым және тізім"
@@ -29126,55 +29132,55 @@ msgid "Frame Style"
msgstr "Фрейм стилі"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Түрі"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Опциялар"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Аймалау"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Аймақ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Шекаралар"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Бағандар"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Макрос"
@@ -29192,61 +29198,61 @@ msgid "Standard"
msgstr "Қалыпты"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Бет"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Аймақ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Мөлдірлілігі"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Жоғарғы колонтитул"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Төменгі колонтитул"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Шекаралар"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Бағандар"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Нұсқама"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Мәтіндік тор"
diff --git a/source/kl/cui/messages.po b/source/kl/cui/messages.po
index 89ff3f3cc35..b3b29d311c6 100644
--- a/source/kl/cui/messages.po
+++ b/source/kl/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-12 13:12+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Greenlandic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/kl/>\n"
@@ -2558,10 +2558,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/kl/sc/messages.po b/source/kl/sc/messages.po
index b930ad2619e..cdf6b9c8c52 100644
--- a/source/kl/sc/messages.po
+++ b/source/kl/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14310,14 +14310,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14543,14 +14544,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23361,91 +23363,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24049,102 +24051,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24182,52 +24088,52 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr ""
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "skrifttype"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "naligiisitsineq"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr ""
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
#, fuzzy
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "tunuliaqut"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28379,44 +28285,44 @@ msgid "Page Style"
msgstr ""
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Qupperneq"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr ""
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
#, fuzzy
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "tunuliaqut"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr ""
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr ""
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr ""
@@ -28460,58 +28366,58 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr ""
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "skrifttype"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "naligiisitsineq"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr ""
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
#, fuzzy
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "tunuliaqut"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/kl/sd/messages.po b/source/kl/sd/messages.po
index 7f5538772ee..d2230645b27 100644
--- a/source/kl/sd/messages.po
+++ b/source/kl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9647,100 +9647,100 @@ msgid "_Standard"
msgstr "Tamanut atugassiaq"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "titarneq"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "skrifttype"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Allagaq"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "naligiisitsineq"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/kl/sfx2/messages.po b/source/kl/sfx2/messages.po
index 8bd7d09bb76..77658914ce6 100644
--- a/source/kl/sfx2/messages.po
+++ b/source/kl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-12-12 13:11+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Greenlandic <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/kl/>\n"
@@ -1586,377 +1586,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "peeruk"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/kl/svtools/messages.po b/source/kl/svtools/messages.po
index 28fb7cca167..9792a3a3844 100644
--- a/source/kl/svtools/messages.po
+++ b/source/kl/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2410,16 +2410,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2427,37 +2435,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2465,19 +2473,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2490,43 +2498,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2534,43 +2542,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/kl/svx/messages.po b/source/kl/svx/messages.po
index a91cc088e4f..3ec1e720499 100644
--- a/source/kl/svx/messages.po
+++ b/source/kl/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10206,134 +10206,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10342,19 +10392,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/kl/sw/messages.po b/source/kl/sw/messages.po
index b5bb299012d..fb274890e1d 100644
--- a/source/kl/sw/messages.po
+++ b/source/kl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3039,9 +3039,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10728,38 +10728,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16658,56 +16664,56 @@ msgid "Frame"
msgstr "sinaa"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Qinigassat"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "innersuussissut"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr ""
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr ""
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29242,45 +29248,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
#, fuzzy
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "skrifttype"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "sumiiffik"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -29292,88 +29298,88 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "titarneq"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "asseq"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "sumiiffik"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29385,112 +29391,112 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
#, fuzzy
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "naligiisitsineq"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
#, fuzzy
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "skrifttype"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "sumiiffik"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr ""
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr ""
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29502,55 +29508,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Suussuseq"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Qinigassat"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr ""
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr ""
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -29569,61 +29575,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Qupperneq"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr ""
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr ""
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr ""
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr ""
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index be6282be94e..3a06d3f1984 100644
--- a/source/km/cui/messages.po
+++ b/source/km/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2571,10 +2571,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/km/helpcontent2/source/text/shared/00.po b/source/km/helpcontent2/source/text/shared/00.po
index f4eb432dac7..bba318cac60 100644
--- a/source/km/helpcontent2/source/text/shared/00.po
+++ b/source/km/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 00\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -611,13 +611,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13742,67 +13742,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13814,13 +13814,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index 7fc5347c747..e61414af6ee 100644
--- a/source/km/helpcontent2/source/text/shared/01.po
+++ b/source/km/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-09 08:19+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">ត្រឡប់​​ក្រាហ្វិក​ ដែល​បាន​ជ្រើស​ទៅ​ទំហំ​ដើម​របស់​វា ។</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "អ្នក​រៀបចំ​"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">អ្នក​រៀប​ចំ</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index 65810921aa3..469392d857c 100644
--- a/source/km/helpcontent2/source/text/shared/optionen.po
+++ b/source/km/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: optionen\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-09 08:20+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -935,13 +935,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/km/helpcontent2/source/text/swriter/01.po b/source/km/helpcontent2/source/text/swriter/01.po
index 333788fa6ee..1e451bec8ac 100644
--- a/source/km/helpcontent2/source/text/swriter/01.po
+++ b/source/km/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 01\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -23363,13 +23363,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/km/helpcontent2/source/text/swriter/guide.po b/source/km/helpcontent2/source/text/swriter/guide.po
index 90130c14cdf..6068e9f05d9 100644
--- a/source/km/helpcontent2/source/text/swriter/guide.po
+++ b/source/km/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -4283,14 +4283,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "ក្នុង​បញ្ជី​រចនាប័ទ្ម​ទំព័រ ចុច​កណ្តុរ​ស្តាំ​លើ \"ទំព័រ​ឆ្វេង\" និង​ ជ្រើស <emph>កែប្រែ</emph> ។"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "ចុច​ផ្ទាំង <emph>រៀបចំ</emph> ។"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7091,13 +7091,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "អ្នក​អាច​ប្រើ​បឋមកថា និង បាតកថា​ផ្សេង​ៗ​គ្នា លើ​ទំព័រ​ខុស​គ្នា​ក្នុង​ឯកសារ​របស់​អ្នក ដ៏រាបណា​​ទំព័រ​ប្រើ​រចនា​ទំព័រ​ផ្សេង​ៗ​គ្នា ។ $[officename] ផ្តល់​នូវ​រចនាប័ទ្ម​ទំព័រ​ដែល​កំណត់​ជា​មុន​ជា​ច្រើន ដូចជា <emph>ទំព័រ​ទី​មួយ</emph> <emph>ទំព័រ​ឆ្វេង</emph> និង <emph>ទំព័រ​ស្តាំ</emph> ឬ​អ្នក​អាច​បង្កើត​រចនាប័ទ្ម​ទំព័រ​ផ្ទាល់​ខ្លួន ។"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7136,32 +7136,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "ចុច​កណ្តុរ​ស្តាំ​លើ \"ទំព័រ​ស្តាំ\" ក្នុង​បញ្ជី​របស់​រចនាប័ទ្ម​ទំព័រ និង ​ជ្រើស​ <emph>កែប្រែ</emph> ។"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">រចនាប័ទ្ម​ទំព័រ​</item> ចុច​ផ្ទាំង <item type=\"menuitem\">បឋមកថា</item>  ។"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "ជ្រើស <item type=\"menuitem\">បើក​បឋមកថា</item> ហើយ​ចុច​ផ្ទាំង <item type=\"menuitem\">អ្នក​រៀបចំ</item> ។"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">រចនាប័ទ្ម​បន្ទាប់</item> ជ្រើស \"ទំព័រ​ឆ្វេង\" ។"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7181,32 +7181,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">រចនាប័ទ្ម​ទំព័រ​</item> ចុច​ផ្ទាំង <item type=\"menuitem\">បឋមកថា</item>  ។"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "ជ្រើស <item type=\"menuitem\">បើក​បឋមកថា</item> ហើយ​ចុច​ផ្ទាំង <item type=\"menuitem\">អ្នក​រៀបចំ</item> ។"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">រចនាប័ទ្ម​បន្ទាប់</item> ជ្រើស \"ទំព័រ​ស្ដាំ\" ។"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11429,14 +11429,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ក្នុង​បញ្ជី​នៃ​រចនាប័ទ្ម​ទំព័រ ចុច​កណ្តុរ​ស្តាំ​លើ​ធាតុ​មួយ និង​បន្ទាប់មក​ ​ជ្រើស <emph>ថ្មី</emph> ។"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "លើ​ទំព័រ​ផ្ទាំង <emph>រៀបចំ</emph> វាយ​បញ្ចូល​ឈ្មោះ សម្រាប់​រចនាប័ទ្ម​ទំព័រ​ក្នុង​ប្រអប់ <emph>ឈ្មោះ</emph> ។"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11582,14 +11582,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "ជ្រើស <emph>បំបែក​ទំព័រ</emph> ។"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "នៅ​ក្នុង​ប្រអប់ <item type=\"menuitem\">រចនាប័ទ្ម</item> ជ្រើស​រចនាប័ទ្ម​ទំព័រ ដែល​ប្រើ​ផ្ទៃ​ខាងក្រោយ​ទំព័រ ។"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11861,13 +11861,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>បំបែក​ទំព័រ​ដោយ​ស្វ័យ​ប្រវត្តិ</emph> បង្ហាញ​នៅ​ចុង​ទំព័រ​ នៅពេល​ដែល​រចនាប័ទ្ម​ទំព័រ​មាន​ \"រចនាប័ទ្មបន្ទាប់\" ។"
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12185,14 +12185,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "ចុច​កណ្ដុរ​ស្ដាំ​លើ​រចនាប័ទ្ម​ទំព័រ ហើយ​ជ្រើស <emph>ថ្មី</emph> ។ រចនាប័ទ្ម​ទំព័រ​ថ្មី​ទទួល​លក្ខណសម្បត្តិ​របស់​រចនា​ប័ទ្ម​ទំព័រ​ដែល​បាន​ជ្រើស​​តាំង​ពី​ពេល​ចាប់ផ្ដើម ។"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "នៅ​លើ​ទំព័រ​ផ្ទាំង <emph>​រៀបចំ</emph> វាយ​ឈ្មោះ​រចនាប័ទ្ម​ទំព័រ​នៅ​ក្នុង​ប្រអប់ <emph>ឈ្មោះ</emph> ។ ឧទាហរណ៍ \"ផ្ដេក​របស់​ខ្ញុំ\" ។"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12329,13 +12329,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "រចនាប័ទ្ម​វែង​មួយ​ទំព័រ"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12365,13 +12365,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "កំណត់​ជួរ​រចនាប័ទ្ម​ទំព័រ​ដោយ​ដៃ"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12500,14 +12500,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "ក្នុង​បញ្ជី​នៃ​រចនាប័ទ្ម​ទំព័រ ចុច​កណ្តុរ​ស្តាំ​លើ​ធាតុ​មួយ និង​បន្ទាប់មក​ ​ជ្រើស <emph>ថ្មី</emph> ។"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "លើ​ផ្ទាំង <emph>​រៀបចំ</emph> វាយ​ឈ្មោះ​មួយ​ក្នុង​ប្រអប់ <emph>ឈ្មោះ</emph> ។"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/km/sc/messages.po b/source/km/sc/messages.po
index 571c123f927..b4fc5a2b6eb 100644
--- a/source/km/sc/messages.po
+++ b/source/km/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14519,14 +14519,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14752,14 +14753,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23670,91 +23672,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24367,104 +24369,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "គ្មាន​ស៊ុម​"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "គ្រោង-ស៊ុម"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24503,49 +24407,49 @@ msgid "Format Cells"
msgstr "ធ្វើ​ទ្រង់​ទ្រាយ​ក្រឡា"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "លេខ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ពុម្ពអក្សរ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "តម្រឹម"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ស៊ុម"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ការពារ​ក្រឡា"
@@ -28748,43 +28652,43 @@ msgid "Page Style"
msgstr "រចនាប័ទ្ម​ទំព័រ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ទំព័រ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ស៊ុម"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "បឋមកថា​"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "បាតកថា​"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "សន្លឹក"
@@ -28826,55 +28730,55 @@ msgid "Cell Style"
msgstr "រចនាប័ទ្ម​ក្រឡា"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "លេខ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ពុម្ពអក្សរ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "តម្រឹម"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ស៊ុម"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ការពារ​ក្រឡា"
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index ffc98495887..ea88fa317e4 100644
--- a/source/km/sd/messages.po
+++ b/source/km/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9765,97 +9765,97 @@ msgid "_Standard"
msgstr "ស្តង់ដារ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "បន្ទាត់"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ផ្ទៃ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ស្រមោល"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ភាព​​ថ្លា"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ពុម្ពអក្សរ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ចូល​បន្ទាត់ & គម្លាត"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "អត្ថបទ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ចលនា​អត្ថបទ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ការ​កំណត់​វិមាត្រ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "បន្ទាត់​​តភ្ជាប់"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "តម្រឹម"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ថេប"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/km/sfx2/messages.po b/source/km/sfx2/messages.po
index 6d91319d262..1f2fe402a86 100644
--- a/source/km/sfx2/messages.po
+++ b/source/km/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1627,377 +1627,383 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
#, fuzzy
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "យកចេញ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/km/svtools/messages.po b/source/km/svtools/messages.po
index 589252d8345..324b81d14ec 100644
--- a/source/km/svtools/messages.po
+++ b/source/km/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2395,10 +2395,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "មិន​អាច​បង្កើត​ការ​តភ្ជាប់​អ៊ីនធឺណិត​ទៅកាន់ $(ARG1) បាន​ទេ ។"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2406,7 +2414,7 @@ msgstr ""
"សារ​កំហុស​ម៉ាស៊ីន​បម្រើ ៖ $(ARG1) ។"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2416,37 +2424,37 @@ msgstr ""
"សារ​កំហុស​ម៉ាស៊ីន​បម្រើ ៖ $(ARG1) ។"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "កំហុស​អ៊ីនធឺណិត​ទូទៅ​បាន​កើតឡើង ។"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ទិន្នន័យ​អ៊ីនធឺណិត​ដែល​បាន​ស្នើ មិន​មាន​នៅ​ក្នុង​ឃ្លាំង​សម្ងាត់ និង​មិន​អាច​ត្រូវ​បាន​បញ្ជូន​ទេ ដោយសារតែ របៀប​លើ​បណ្ដាញ មិន​ត្រូវ​បាន​ធ្វើ​ឲ្យ​សកម្ម ។"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "មិន​អាច​បង្កើត​មាតិកា ។"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ឈ្មោះ​ឯកសារ​វែង​ពេក សម្រាប់​ប្រព័ន្ធ​ឯកសារ​គោលដៅ ​។"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "វាក្យសម្ពន្ធ​ដែល​បាន​បញ្ចូល​មិន​ត្រឹមត្រូវ"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2456,19 +2464,19 @@ msgstr ""
"សូម​រក្សាទុក​ឯកសារ​ក្នុង​ទ្រង់ទ្រាយ​ឯកសារ %PRODUCTNAME %PRODUCTVERSION ។"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "បាន​ឈានដល់​ចំនួន​អតិបរមា​នៃ​ឯកសារ ដែល​អ្នក​អាច​បើក​ក្នុង​ពេល​ជាមួយ​គ្នា​ហើយ ។ អ្នក​ត្រូវតែ​បិទ​ឯកសារ​មួយ ឬ ច្រើន​សិន​មុន​នឹង​អ្នក​អាច​បើក​ឯកសារ​ថ្មី ។"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "មិន​អាច​បង្កើត​ច្បាប់​បម្រុង​ទុក ។"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2488,43 +2496,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ប្រវែង​ទិន្នន័យ​មិន​ត្រឹមត្រូវ ។"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "​​មិន​អាច​ធ្វើ​អនុគមន៍ ៖ ផ្លូវ​មាន​ថត​បច្ចុប្បន្ន ។"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "មិន​អាច​ធ្វើ​អនុគមន៍ ៖ មិន​ស្គាល់​ឧបករណ៍ (​ដ្រាយ​) ។"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ឧបករណ៍​ (​ដ្រាយ​) មិន​ទាន់​រួច ។"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "មិន​អាច​ធ្វើ​អនុគមន៍​ ៖ ត្រូវ​បាន​ការពារ​មិន​ឲ្យ​សរសេរ​ចូល​ ។"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2534,47 +2542,47 @@ msgstr ""
"ធ្វើ​ឲ្យ​របៀប​ចែករំលែក​អសកម្ម​សិន ។"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "កំហុស OLE ទូទៅ ។"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "មិន​អាច​ប្រតិបត្តិ​សកម្មភាព ក្នុង​សភាព​បច្ចុប្បន្ន​របស់​វត្ថុ ។"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "វត្ថុ​មិន​គាំទ្រ​អំពើ​អ្វី​ទាំងអស់ ។"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "វត្ថុ​មិន​គាំទ្រ​អំពើ​នេះ​ឡើយ ។"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/km/svx/messages.po b/source/km/svx/messages.po
index ea9cdd3a47f..237b0cb44c7 100644
--- a/source/km/svx/messages.po
+++ b/source/km/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Central Khmer <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/km/>\n"
@@ -10220,134 +10220,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10356,19 +10406,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index e68409c36aa..68b9138d128 100644
--- a/source/km/sw/messages.po
+++ b/source/km/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-20 17:21+0000\n"
"Last-Translator: Andras Timar <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3064,9 +3064,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10811,38 +10811,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16716,55 +16722,55 @@ msgid "Frame"
msgstr "ស៊ុម"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ជម្រើស​"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "រុំ"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "តំណខ្ពស់"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ស៊ុម​"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "តំបន់"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ភាព​ថ្លា"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ជួរឈរ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ម៉ាក្រូ"
@@ -29421,44 +29427,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ទីតាំង"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ប្លង់​អាស៊ី"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "​បន្លិច"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ស៊ុម​"
@@ -29470,85 +29476,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "គ្រោង"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "រូបភាព"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ទីតាំង"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ប្ដូរ​តាម​តម្រូវ​ការ"
@@ -29560,110 +29566,110 @@ msgid "Paragraph Style"
msgstr "រចនាប័ទ្ម​កថាខណ្ឌ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ចូល​បន្ទាត់ & គម្លាត"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "លំហូរ​​អត្ថបទ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "មុទ្ទវិទ្យា​អាស៊ី"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ពុម្ព​អក្សរ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "បែបផែន​ពុម្ពអក្សរ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ទីតាំង"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ប្លង់​អាស៊ី"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "​បន្លិច"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ថេប"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "អក្សរ​ធំ​ដើម​អត្ថបទ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "តំបន់"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ភាព​ថ្លា"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ស៊ុម​"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "លក្ខខណ្ឌ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29675,55 +29681,55 @@ msgid "Frame Style"
msgstr "រចនាប័ទ្ម​ស៊ុម"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ប្រភេទ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ជម្រើស​"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "រុំ"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "តំបន់"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ភាព​ថ្លា"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ស៊ុម​"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ជួរឈរ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ម៉ាក្រូ"
@@ -29741,61 +29747,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ទំព័រ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "តំបន់"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ភាព​ថ្លា"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "បឋមកថា"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "បាតកថា"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ស៊ុម​"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ជួរឈរ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "លេខ​យោង"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "ក្រឡា​អត្ថបទ"
diff --git a/source/kmr-Latn/cui/messages.po b/source/kmr-Latn/cui/messages.po
index 5a156297696..4fdc445878f 100644
--- a/source/kmr-Latn/cui/messages.po
+++ b/source/kmr-Latn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Kurmanji <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kmr_LATN/>\n"
@@ -2587,10 +2587,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/kmr-Latn/sc/messages.po b/source/kmr-Latn/sc/messages.po
index 640b185606a..66bc828b429 100644
--- a/source/kmr-Latn/sc/messages.po
+++ b/source/kmr-Latn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14478,14 +14478,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14708,14 +14709,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23625,91 +23627,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24327,103 +24329,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Bê sînor"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24463,52 +24368,52 @@ msgid "Format Cells"
msgstr "Teşeyê bide çavî"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Numre"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Cûrenivîs"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efektên Curenivîsê"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Hîzakirin"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Çapberiya Asyayî"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Kêlek"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Zemîn"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28736,44 +28641,44 @@ msgid "Page Style"
msgstr "Teşeya Rûpel"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Rûpel"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Kêlek"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Zemîn"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Agahiya jor"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Agahiya jêr"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Rûpel"
@@ -28817,58 +28722,58 @@ msgid "Cell Style"
msgstr "Teşeyên Şaneyê"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Numre"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Cûrenivîs"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efektên Curenivîsê"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Hîzakirin"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Çapberiya Asyayî"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Kêlek"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Zemîn"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/kmr-Latn/sd/messages.po b/source/kmr-Latn/sd/messages.po
index 1228f0755c3..9445cb1bf90 100644
--- a/source/kmr-Latn/sd/messages.po
+++ b/source/kmr-Latn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9816,101 +9816,101 @@ msgid "_Standard"
msgstr "Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Rêzik"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Qad"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Shading"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Zelaltî"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Cûrenivîs"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efektên Curenivîsê"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Nivîs"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Zindîkirina nivîsan"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Xêza pîvandine"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
#, fuzzy
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Girêdanker"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Hîzakirin"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Çapberiya Asyayî"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/kmr-Latn/sfx2/messages.po b/source/kmr-Latn/sfx2/messages.po
index 0f5428bdea5..76e4ef5e6b1 100644
--- a/source/kmr-Latn/sfx2/messages.po
+++ b/source/kmr-Latn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1619,376 +1619,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Rake"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/kmr-Latn/svtools/messages.po b/source/kmr-Latn/svtools/messages.po
index 53123424e43..51a5be8264c 100644
--- a/source/kmr-Latn/svtools/messages.po
+++ b/source/kmr-Latn/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2400,16 +2400,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Naverok çênebû."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Navê pelê, ji bo pergala pela hedef zêde dirêj e."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Pêyvrêzkirina têketinê şaş e."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"Ji kerema xwe ji bo şêweyê belgeyê şêweya belgeya %PRODUCTNAME %PRODUCTVERSION hilbijêrin."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Hun gihîştin sînora hejmara belgeyên ku di demekî de dikarin bên vekirin. Beriya vekirina belgeyekî nû divê hun yek an zêdetir belgeyên vekirî bigirin."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nikare kopiya cîgir ava bike."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Dirêjahiya daneyê ya nederbasdar."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Fonksiyon nayê bikar anîn: riya daneyan pêristên derbasdar dihundirîne."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Fonksiyon ne gengaz e, cîhaz (pêşkêşker) ne wek hev e."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Cîhaz (ajokar) ne amade ye."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Fonksiyon ne gengaz e: nivîsandin parastî ye."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"Pêşî moda parvekirinê neçalak bikin."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Çewtiya OLE ya giştî."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Çalakî di cihê bireserê yê niha de nayê xebitandin."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Bireser piştgirî nade tu çalakiyan."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Bireser piştgirî nade vê çalakiyê."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/kmr-Latn/svx/messages.po b/source/kmr-Latn/svx/messages.po
index 7807640ec29..ba90d795fb9 100644
--- a/source/kmr-Latn/svx/messages.po
+++ b/source/kmr-Latn/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Kurmanji <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kmr_LATN/>\n"
@@ -10307,134 +10307,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10443,19 +10493,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/kmr-Latn/sw/messages.po b/source/kmr-Latn/sw/messages.po
index 6e107c8a5cc..e262ff8b6d9 100644
--- a/source/kmr-Latn/sw/messages.po
+++ b/source/kmr-Latn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3085,9 +3085,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10845,38 +10845,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16896,56 +16902,56 @@ msgid "Frame"
msgstr "Çarçove"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Vebijêrk"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~Belavbûna nivîsê"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hîperlînk"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Sînor"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Qad"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Zelaltî"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Sitûn"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -29786,45 +29792,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Cûrenivîs"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efektên Curenivîsê"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Cih"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Pergala Asyayê"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Kirpandin"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Sînor"
@@ -29836,85 +29842,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Xêza bingehîn"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Wêne"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Cih"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29927,113 +29933,113 @@ msgid "Paragraph Style"
msgstr "(Şêwaza Paragrafê: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Hîzakirin"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Çapberiya Asyayî"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Cûrenivîs"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efektên Curenivîsê"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Cih"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Pergala Asyayê"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Kirpandin"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Hilfirîn"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Tîpên Serî"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Qad"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Zelaltî"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Sînor"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Merc"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30046,56 +30052,56 @@ msgid "Frame Style"
msgstr "Şêwaza Çarçevê"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Cure"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Vebijêrk"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Belavbûna nivîsê"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Qad"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Zelaltî"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Sînor"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Sitûn"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -30114,61 +30120,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Rûpel"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Qad"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Zelaltî"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Agahiya jor"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Agahiya jêr"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Sînor"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Sitûn"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Jêrenot"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/kn/cui/messages.po b/source/kn/cui/messages.po
index d67a78b653d..d233d02e784 100644
--- a/source/kn/cui/messages.po
+++ b/source/kn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-07-09 15:34+0000\n"
"Last-Translator: yogiks <yogesh@itforchange.net>\n"
"Language-Team: Kannada <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/kn/>\n"
@@ -2570,10 +2570,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/kn/sc/messages.po b/source/kn/sc/messages.po
index 451726d306a..73c389be538 100644
--- a/source/kn/sc/messages.po
+++ b/source/kn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-06-06 01:50+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14652,14 +14652,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14886,14 +14887,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23822,91 +23824,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24519,104 +24521,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ಅಂಚು ಇಲ್ಲ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "ಹೊರರೇಖೆ - ಅಂಚುಗಳು"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24655,49 +24559,49 @@ msgid "Format Cells"
msgstr "ಕೋಶ‌ಗಳನ್ನು ರೂಪಿಸು"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ಸಂಖ್ಯೆಗಳು"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ಅಕ್ಷರಶೈಲಿ ಪರಿಣಾಮಗಳು"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ಹೊಂದಿಕೆ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "ಏಷಿಯಾದ ಮುದ್ರಣಕಲೆ"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ಹಿನ್ನೆಲೆ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ಕೋಶ ರಕ್ಷಣೆ"
@@ -28916,43 +28820,43 @@ msgid "Page Style"
msgstr "ಪುಟದ ಶೈಲಿ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ಪುಟ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ಹಿನ್ನೆಲೆ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ಶಿರೋಲೇಖ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ಅಡಿಲೇಖ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ಹಾಳೆ"
@@ -28994,55 +28898,55 @@ msgid "Cell Style"
msgstr "ಕೋಶ ಶೈಲಿ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ಸಂಖ್ಯೆಗಳು"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ಅಕ್ಷರ ಶೈಲಿ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ಅಕ್ಷರ ಶೈಲಿಯ ಪ್ರಭಾವಗಳು"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ಹೊಂದಾಣಿಕೆ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ಏಷ್ಯನ್ ಮುದ್ರಣಕಲೆ"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ಹಿನ್ನೆಲೆ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ಕೋಶ ರಕ್ಷಣೆ"
diff --git a/source/kn/sd/messages.po b/source/kn/sd/messages.po
index fcd3bc1d7ed..6d5965da26d 100644
--- a/source/kn/sd/messages.po
+++ b/source/kn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-06-06 09:09+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9779,98 +9779,98 @@ msgid "_Standard"
msgstr "ಸಾಮಾನ್ಯ (_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ಸಾಲು"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ಪ್ರದೇಶ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ನೆರಳು ವಿನ್ಯಾಸ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ಪಾರದರ್ಶಕತೆ"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ಅಕ್ಷರಶೈಲಿ ಪರಿಣಾಮ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ಇಂಡೆಂಟುಗಳು ಮತ್ತು ಅಂತರ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ಪಠ್ಯ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ಪಠ್ಯ ಚಿತ್ರಸಂಚಲನ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ಉದ್ದಳತೆ ನಿರ್ಧರಿಸುವಿಕೆ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "ಜೋಡಕ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ಹೊಂದಾಣಿಕೆ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ಏಷಿಯಾದ ಮುದ್ರಣಕಲೆ"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ಟ್ಯಾಬ್‌ಗಳು"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/kn/sfx2/messages.po b/source/kn/sfx2/messages.po
index 6f3e22c1b6a..cee0443cf91 100644
--- a/source/kn/sfx2/messages.po
+++ b/source/kn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1637,376 +1637,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ತೆಗೆದುಹಾಕು"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/kn/svtools/messages.po b/source/kn/svtools/messages.po
index 11ec1925e50..fe7b142cfce 100644
--- a/source/kn/svtools/messages.po
+++ b/source/kn/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2396,10 +2396,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1)ದೊಂದಿಗೆ ಅಂತರಜಾಲ ಸಂಪರ್ಕವನ್ನು ಸಾಧಿಸಲಾಗಲಿಲ್ಲ."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2407,7 +2415,7 @@ msgstr ""
"ಪರಿಚಾರಕ ದೋಷ ಸಂದೇಶ: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgstr ""
"ಪರಿಚಾರಕ ದೋಷ ಸಂದೇಶ: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "ಸಾಮಾನ್ಯವಾದ ಅಂತರಜಾಲ ದೋಷವು ಎದುರಾಗಿದೆ."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ಮನವಿ ಸಲ್ಲಿಸಲಾದ ಅಂತರಜಾಲ ಮಾಹಿತಿಯು ಕ್ಯಾಶೆಯಲ್ಲಿ ಲಭ್ಯವಿಲ್ಲ ಹಾಗು ಆನ್‌ಲೈನ್‌ ವಿಧಾನವು ಸಕ್ರಿಯಗೊಂಡಿಲ್ಲದ ಕಾರಣ ಅದನ್ನು ವರ್ಗಾಯಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ವಿವರಗಳನ್ನು ರಚಿಸಲಾಗಲಿಲ್ಲ."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ಗುರಿಯ ಕಡತ ವ್ಯವಸ್ಥೆಯ ಕಡತದ ಹೆಸರು ಅತಿ ಧೀರ್ಘವಾಗಿದೆ."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ಇನ್‌ಪುಟ್‌ ಸಿಂಟಾಕ್ಸ್‍ ಅಮಾನ್ಯವಾಗಿದೆ."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"ದಯವಿಟ್ಟು ದಸ್ತಾವೇಜನ್ನು %PRODUCTNAME %PRODUCTVERSION ಕಡತದ ರೂಪದಲ್ಲಿ ಉಳಿಸಿ."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ಒಂದೇ ಸಮಯದಲ್ಲಿ ಒಟ್ಟಿಗೆ ತೆರೆಯಬಹುದಾದ ದಸ್ತಾವೇಜುಗಳ ಗರಿಷ್ಟ ಸಂಖ್ಯೆಯ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ. ನೀವು ಒಂದು ಹೊಸ ದಸ್ತಾವೇಜನ್ನು ತೆರೆಯುವ ಮೊದಲು ಒಂದು ಅಥವ ಹೆಚ್ಚಿನ ದಸ್ತಾವೇಜುಗಳನ್ನು ಮುಚ್ಚಬೇಕು."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ಪರ್ಯಾಯ(ಬ್ಯಾಕ್ಅಪ್‌) ಪ್ರತಿಯನ್ನು ರಚಿಸಲಾಗಲಿಲ್ಲ."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ಅಮಾನ್ಯವಾದ ದತ್ತಾಂಶ ಉದ್ದ."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ಕಾರ್ಯಭಾರ ಸಾಧ್ಯವಿಲ್ಲ. ಮಾರ್ಗವು ಪ್ರಸ್ತುತ ಕೋಶವನ್ನು ಹೊಂದಿದೆ."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ಕಾರ್ಯಭಾರ ಸಾಧ್ಯವಿಲ್ಲ. ಸಾಧನ(ಡ್ರೈವ್‌) ಒಂದೇ ರೀತಿಯಾಗಿಲ್ಲ."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ಸಾಧನ(ಡ್ರೈವ್‌) ಸಿಧ್ದವಾಗಿಲ್ಲ."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ಕಾರ್ಯಭಾರ ಸಾಧ್ಯವಿಲ್ಲ. ಬರೆಯುದಂತೆ ಸಂರಕ್ಷಿತವಾಗಿದೆ."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"ಹಂಚಿಕಾ ಕ್ರಮವನ್ನು ಮೊದಲು ಅಶಕ್ತಗೊಳಿಸಿ."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ಸಾಮಾನ್ಯ OLE ದೋಷ."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ವಸ್ತುವಿನ ಪ್ರಸ್ತುತ ಸ್ಥಿತಿಯಲ್ಲಿ ಕ್ರಿಯೆಯನ್ನು ನಿರ್ವಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ಈ ವಸ್ತು ಯಾವುದೆ ಕ್ರಿಯೆಗಳನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ವಸ್ತು ಈ ಕ್ರಿಯೆಯನ್ನು ಬೆಂಬಲಿಸುವುದಿಲ್ಲ."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/kn/svx/messages.po b/source/kn/svx/messages.po
index 8190c06ddd8..40431fb3ee9 100644
--- a/source/kn/svx/messages.po
+++ b/source/kn/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Kannada <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kn/>\n"
@@ -10235,134 +10235,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10371,19 +10421,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/kn/sw/messages.po b/source/kn/sw/messages.po
index f873734ff04..ff1d5b5bf67 100644
--- a/source/kn/sw/messages.po
+++ b/source/kn/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-06-06 16:00+0000\n"
"Last-Translator: Omshivaprakash <omshivaprakash@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3072,9 +3072,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10849,38 +10849,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16822,57 +16828,57 @@ msgid "Frame"
msgstr "ಚೌಕಟ್ಟು"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ಆಯ್ಕೆಗಳು"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "ಆವರಿಕೆ"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ಹೈಪರ್ಲಿಂಕ್"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "ವಿಸ್ತೀರ್ಣ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ಪಾರದರ್ಶಕತೆ"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ಲಂಬಸಾಲುಗಳು"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ಮ್ಯಾಕ್ರೋ"
@@ -29634,44 +29640,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ಅಕ್ಷರಶೈಲಿ ಪರಿಣಾಮಗಳು"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ಸ್ಥಾನ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ಏಷಿಯಾದ ರೂಪವಿನ್ಯಾಸ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ಹೈಲೈಟಿಂಗ್"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
@@ -29683,85 +29689,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ಹೊರರೇಖೆ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ಚಿತ್ರ"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ಸ್ಥಾನ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ಅಗತ್ಯಾನುಗುಣಗೊಳಿಸಿ"
@@ -29774,113 +29780,113 @@ msgid "Paragraph Style"
msgstr "ಪ್ಯಾರಾಗ್ರಾಫ್ ಶೈಲಿ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ಇಂಡೆಂಟುಗಳು ಮತ್ತು ಅಂತರ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ಹೊಂದಿಕೆ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "ಪಠ್ಯದ ಹರಿವು"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
#, fuzzy
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "ಏಷಿಯಾದ ಮುದ್ರಣಕಲೆ"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ಅಕ್ಷರಶೈಲಿ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ಅಕ್ಷರಶೈಲಿ ಪರಿಣಾಮಗಳು"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ಸ್ಥಾನ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ಏಷಿಯಾದ ರೂಪವಿನ್ಯಾಸ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ಹೈಲೈಟಿಂಗ್"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ಟ್ಯಾಬ್‌ಗಳು"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ದೊಡ್ಡ ಅಕ್ಷರಗಳನ್ನು (ಕ್ಯಾಪ್ಸ್‍) ಬಿಟ್ಟುಬಿಡು"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ವಿಸ್ತೀರ್ಣ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ಪಾರದರ್ಶಕತೆ"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "ನಿಬಂಧನೆ(~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29893,57 +29899,57 @@ msgid "Frame Style"
msgstr "ಚೌಕಟ್ಟಿನ ಶೈಲಿ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ಬಗೆ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ಆಯ್ಕೆಗಳು"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "ಆವರಿಕೆ"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ವಿಸ್ತೀರ್ಣ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ಪಾರದರ್ಶಕತೆ"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ಲಂಬಸಾಲುಗಳು"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ಮ್ಯಾಕ್ರೋ"
@@ -29962,63 +29968,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ಪುಟ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ವಿಸ್ತೀರ್ಣ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ಪಾರದರ್ಶಕತೆ"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ಹೆಡರ್"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ಅಡಿಲೇಖ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ಅಂಚುಗಳು"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ಲಂಬಸಾಲುಗಳು"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ಅಡಿಬರಹ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ko/cui/messages.po b/source/ko/cui/messages.po
index f55f5f34f66..d2a704047d8 100644
--- a/source/ko/cui/messages.po
+++ b/source/ko/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-03 10:21+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ko/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ko/helpcontent2/source/text/shared/00.po b/source/ko/helpcontent2/source/text/shared/00.po
index b85fdaf4296..35a557e79af 100644
--- a/source/ko/helpcontent2/source/text/shared/00.po
+++ b/source/ko/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-09 08:10+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index d8ac5f0652b..616de86c907 100644
--- a/source/ko/helpcontent2/source/text/shared/01.po
+++ b/source/ko/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ko/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">선택한 그림을 원래 크기로 되돌립니다.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "관리"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">관리</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index 30b1f6e250a..9afb15fb89e 100644
--- a/source/ko/helpcontent2/source/text/shared/optionen.po
+++ b/source/ko/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-30 09:45+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/ko/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/ko/helpcontent2/source/text/swriter/01.po b/source/ko/helpcontent2/source/text/swriter/01.po
index 763f31f83c6..168d60d4bfa 100644
--- a/source/ko/helpcontent2/source/text/swriter/01.po
+++ b/source/ko/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-08-09 08:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ko/helpcontent2/source/text/swriter/guide.po b/source/ko/helpcontent2/source/text/swriter/guide.po
index eaf5d02a592..6cc39bda19b 100644
--- a/source/ko/helpcontent2/source/text/swriter/guide.po
+++ b/source/ko/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-03-15 06:14+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "페이지 스타일 목록에서 마우스 오른쪽 버튼을 눌러 \"왼쪽 페이지\"를 클릭하고 <emph>수정</emph>을 선택합니다."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>관리</emph> 탭을 클릭합니다."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "페이지에서 다양한 페이지 스타일을 사용하는 경우 문서에서 다양한 페이지에 다양한 머리글과 바닥글을 사용할 수 있습니다. $[officename]에서 <emph>첫 페이지</emph>, <emph>왼쪽 페이지</emph>, <emph>오른쪽 페이지</emph> 같은 몇 가지 미리 정의된 페이지 스타일을 제공하거나 사용자가 사용자 정의 페이지 스타일을 만들 수 있습니다."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "페이지 스타일 목록에서 마우스 오른쪽 버튼으로 \"오른쪽 페이지\"를 누른 다음 <emph>수정</emph>을 선택합니다."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">페이지 스타일</item> 대화 상자에서 <item type=\"menuitem\">머리글</item> 탭을 클릭합니다."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">머리글 삽입</item>을 선택하고 <item type=\"menuitem\">관리</item> 탭을 클릭합니다."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">다음 스타일</item> 상자에서 \"왼쪽 페이지\"를 선택합니다."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">페이지 스타일</item> 대화 상자에서 <item type=\"menuitem\">머리글</item> 탭을 클릭합니다."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">머리글 삽입</item>을 선택하고 <item type=\"menuitem\">관리</item> 탭을 클릭합니다."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">다음 스타일</item> 상자에서 \"오른쪽 페이지\"를 선택합니다."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "페이지 스타일 목록에서 항목을 마우스 오른쪽 버튼으로 누른 다음 <emph>새로 만들기</emph>를 선택합니다."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>관리</emph> 탭 페이지에서 페이지 스타일의 이름을 <emph>이름</emph> 상자에 입력합니다."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>페이지 나누기</emph>옵션을 선택하십시오. 콤보 박스에서 <emph>가로</emph> 페이지 유혀을 선택하십시오. 끝으로 확인을 클릭하십시오."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">스타일</item> 상자에서 페이지 배경을 사용하는 페이지 스타일을 선택합니다."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>자동 페이지 나누기</emph>는 페이지 스타일에 적용된 \"다음 스타일\"이 다른 스타일일 때 페이지 맨 끝에 나타납니다."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "페이지 스타일 창에서 마우스를 오른쪽 클릭하여 <emph>새로 만들기</emph> 메뉴를 클릭합니다. 새 페이지 스타일에서는 우선 선택된 페이지 스타일의 모든 속성을 가져옵니다."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>관리</emph> 탭 페이지의 <emph>이름</emph> 상자에 페이지 스타일의 이름(예: \"My Landscape\")을 입력합니다."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "한 페이지에만 적용되는 스타일"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "페이지 스타일의 직접 지정한 범위"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "페이지 스타일 목록에서 항목을 마우스 오른쪽 버튼으로 누른 다음 <emph>새로 만들기</emph>를 선택합니다."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>관리</emph> 탭에서 <emph>이름</emph> 상자에 이름을 입력합니다."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ko/sc/messages.po b/source/ko/sc/messages.po
index de5d403ffe4..a0f87b66031 100644
--- a/source/ko/sc/messages.po
+++ b/source/ko/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-07-06 09:11+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ko/>\n"
@@ -14263,14 +14263,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14493,14 +14494,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23209,91 +23211,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23893,102 +23895,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "테두리 없음"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "모든 테두리"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "바깥 테두리"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "두꺼운 상자 테두리"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "두꺼운 바닥 테두리"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "이중 바닥 테두리"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "위/아래 두꺼운 테두리"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "위/아래(두 줄) 테두리"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "왼쪽 테두리"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "오른쪽 테두리"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "위쪽 테두리"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "아래쪽 테두리"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "대각선 위쪽 테두리"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "대각선 아래쪽 테두리"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "위/아래 테두리"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "왼쪽/오른쪽 테두리"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24026,49 +23932,49 @@ msgid "Format Cells"
msgstr "셀 서식 지정"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "숫자"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "글꼴"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "글꼴 효과"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "맞춤"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "한글 입력 체계"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "경계선"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "배경"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "셀 보호"
@@ -28157,43 +28063,43 @@ msgid "Page Style"
msgstr "페이지 스타일"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "쪽"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "경계선"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "배경"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "머리글"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "바닥글"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "시트"
@@ -28235,55 +28141,55 @@ msgid "Cell Style"
msgstr "셀 스타일"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "숫자"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "글꼴"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "글꼴 효과"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "맞춤"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "한글 입력 체계"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "경계선"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "배경"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "셀 보호"
diff --git a/source/ko/sd/messages.po b/source/ko/sd/messages.po
index 57bc1f35950..9eab45bb003 100644
--- a/source/ko/sd/messages.po
+++ b/source/ko/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-09-21 13:37+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ko/>\n"
@@ -9551,97 +9551,97 @@ msgid "_Standard"
msgstr "표준(_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "선"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "영역"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "그림자"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "투명도"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "글꼴"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "글꼴 효과"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "들여쓰기 및 간격"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "텍스트"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "텍스트 애니메이션"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "치수"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "연결자"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "맞춤"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "아시아 언어 입력 체계"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "탭"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "강조 표시"
diff --git a/source/ko/sfx2/messages.po b/source/ko/sfx2/messages.po
index f90aaf8374c..c6b7e096bf0 100644
--- a/source/ko/sfx2/messages.po
+++ b/source/ko/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-09-21 13:37+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ko/>\n"
@@ -1627,376 +1627,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "매크로 표시"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "이벤트 표시"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "벌통"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "파란 곡선"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "청사진 계획"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "포커스"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "숲속의 새"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "영감"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "빛"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "도심"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "암청색"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "자연 삽화"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "연필"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "피아노"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "작품집"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "진행 상태"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "석양"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "빈티지"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "생생한"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "이력서(CV)"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "이력서(Resume)"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "기본값"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "현대적인"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "최신 업무용 편지(sans-serif)"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "최신 업무용 편지(serif)"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "명함(로고 포함)"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "단순"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "비즈니스 프로세스 모델링 표기법 (BPMN)"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "중국어(간체) 일반"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "제거"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "모두 지우기"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "암호 길이"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-하이퍼링크를 열려면 클릭: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "하이퍼링크를 열려면 클릭: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(사용됨: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "문서"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "스프레드시트"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "프레젠테이션"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "그리기"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "최근 사용"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "이름 바꾸기"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "카테고리 이름 바꾸기"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "새로운 카테고리"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ko/svtools/messages.po b/source/ko/svtools/messages.po
index bbe9d44b948..d63c4ae27c2 100644
--- a/source/ko/svtools/messages.po
+++ b/source/ko/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 10:54+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ko/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1552719576.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1)으로 인터넷을 연결하지 못했습니다."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"서버 오류 메시지: $(ARG1)"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"서버 오류 메시지: $(ARG1)"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "일반적인 인터넷 오류가 발생했습니다."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "요청된 인터넷 데이터가 캐시에 없으며 온라인 모드가 활성화되어 있지 않아 데이터를 전송할 수 없습니다."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "내용이 만들어지지 않았습니다."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "파일 이름이 대상 파일 시스템에 대해 너무 깁니다."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "입력 구문이 잘못되었습니다."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"문서를 %PRODUCTNAME %PRODUCTVERSION 파일 형식으로 저장하십시오."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "동시에 열 수 있는 최대 문서 수를 초과했습니다. 새 문서를 열려면 먼저 하나 이상의 문서를 닫아야 합니다."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "백업 복사를 하지 못했습니다."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "데이터 길이가 유효하지 않습니다."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "기능 사용 불가능: 경로에 현재 디렉터리가 포함되어 있음"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "기능 사용 불가능: 장치(드라이브)가 동일하지 않음"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "장치(드라이브)가 준비되어 있지 않음"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "잘못된 체크섬"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "기능 사용 불가능: 쓰기 금지됨"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"먼저 공유 모드를 비활성화하십시오."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "$(ARG1)(행,열)에서 파일 형식 오류가 발견되었습니다."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "이 파일 형식의 필터는 사용하지 않도록 설정되었습니다. 시스템 관리자에게 문의하세요."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "일반적인 OLE 오류"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "개체의 현재 상태로는 작업을 실행할 수 없습니다."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "이 개체는 어떤 작업도 지원하지 않습니다."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "개체는 이 작업을 지원하지 않습니다."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) 개체 활성화"
diff --git a/source/ko/svx/messages.po b/source/ko/svx/messages.po
index 6f3294dc701..3c451aef985 100644
--- a/source/ko/svx/messages.po
+++ b/source/ko/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-07-06 09:11+0000\n"
"Last-Translator: DaeHyun Sung(성대현, 成大鉉) <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ko/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ko/sw/messages.po b/source/ko/sw/messages.po
index 72054d4f636..0fcf7555463 100644
--- a/source/ko/sw/messages.po
+++ b/source/ko/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-06 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: \"DaeHyun Sung(성대현, 成大鉉)\" <sungdh86@gmail.com>\n"
"Language-Team: Korean <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ko/>\n"
"Language: ko\n"
@@ -20,19 +20,19 @@ msgstr ""
#: sw/inc/AccessibilityCheckStrings.hrc:16
msgctxt "STR_NO_ALT"
msgid "%OBJECT_NAME%"
-msgstr ""
+msgstr "%OBJECT_NAME%"
#. uzcWr
#: sw/inc/AccessibilityCheckStrings.hrc:17
msgctxt "STR_LINKED_GRAPHIC"
msgid "“%OBJECT_NAME%” referenced as “%LINK%”."
-msgstr ""
+msgstr "“%OBJECT_NAME%” 을(를) “%LINK%”로 참조합니다."
#. aPeze
#: sw/inc/AccessibilityCheckStrings.hrc:18
msgctxt "STR_TABLE_MERGE_SPLIT"
msgid "Table “%OBJECT_NAME%” contains merges or splits."
-msgstr "표 “%OBJECT_NAME%” 는 병합되거나 분할된 셀을 포함합니다."
+msgstr "표 “%OBJECT_NAME%” 은(는) 병합되거나 분할된 셀을 포함합니다."
#. bGwDb
#: sw/inc/AccessibilityCheckStrings.hrc:19
@@ -182,7 +182,7 @@ msgstr "문서 기본 언어가 설정되어 있지 않습니다."
#: sw/inc/AccessibilityCheckStrings.hrc:44
msgctxt "STR_STYLE_NO_LANGUAGE"
msgid "Style “%STYLE_NAME%” has no language set."
-msgstr ""
+msgstr "스타일 “%STYLE_NAME%”에 언어가 설정되지 않았습니다."
#. euwJV
#: sw/inc/AccessibilityCheckStrings.hrc:45
@@ -3029,9 +3029,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10592,38 +10592,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16424,55 +16430,55 @@ msgid "Frame"
msgstr "틀"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "선택 사항"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "자동 줄바꿈"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "하이퍼링크"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "테두리"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "영역"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "투명도"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "열"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "매크로"
@@ -28868,43 +28874,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "글꼴"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "글꼴 효과"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "위치"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "아시아 언어 레이아웃"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "강조 표시"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "테두리"
@@ -28916,85 +28922,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "개요"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "이미지"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "위치"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "사용자 정의"
@@ -29006,109 +29012,109 @@ msgid "Paragraph Style"
msgstr "단락 스타일"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "들여쓰기 및 간격"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "맞춤"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "텍스트 흐름"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "아시아 언어 입력 체계"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "글꼴"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "글꼴 효과"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "위치"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "아시아 언어 레이아웃"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "강조 표시"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "탭"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "단락 첫 문자 장식 표시"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "영역"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "투명도"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "테두리"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "조건"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29120,55 +29126,55 @@ msgid "Frame Style"
msgstr "틀 스타일"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "유형"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "선택 사항"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "자동 줄바꿈"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "영역"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "투명도"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "테두리"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "열"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "매크로"
@@ -29186,61 +29192,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "페이지"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "영역"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "투명도"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "머리글"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "바닥글"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "테두리"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "열"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "각주"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "텍스트 격자"
@@ -30857,7 +30863,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/translationdialog.ui:84
msgctxt "LanguageSelectDialog"
msgid "Select the target language for translation"
-msgstr ""
+msgstr "번역 대상 언어 선택"
#. od8Zz
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:43
@@ -30953,7 +30959,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:307
msgctxt "viewoptionspage|hiddenparafield"
msgid "Hidden p_aragraphs"
-msgstr ""
+msgstr "숨겨진 단락(_A)"
#. F2W83
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:315
@@ -31067,7 +31073,7 @@ msgstr "HTML 문서의 단위를 지정합니다."
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:727
msgctxt "viewoptionspage|measureunitlabel"
msgid "Measurement unit:"
-msgstr ""
+msgstr "측정 단위:"
#. 3ES7A
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:755
@@ -31079,7 +31085,7 @@ msgstr "설정"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:785
msgctxt "viewoptionspage|outlinecontentvisibilitybutton"
msgid "_Show outline-folding buttons"
-msgstr ""
+msgstr "개요 접기 버튼 보이기(_S)"
#. 4RBet
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:793
@@ -31182,7 +31188,7 @@ msgstr "텍스트"
#: sw/uiconfig/swriter/ui/watermarkdialog.ui:118
msgctxt "watermarkdialog|extended_tip|TextInput"
msgid "Enter the watermark text to be displayed as image in the page background."
-msgstr ""
+msgstr "페이지 배경에 이미지로 표시할 워터마크 텍스트를 입력하세요."
#. Cy5bR
#: sw/uiconfig/swriter/ui/watermarkdialog.ui:132
diff --git a/source/kok/cui/messages.po b/source/kok/cui/messages.po
index f6a482c1e30..7221e5f0286 100644
--- a/source/kok/cui/messages.po
+++ b/source/kok/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2600,10 +2600,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/kok/sc/messages.po b/source/kok/sc/messages.po
index 9a7ba498064..5eede8b9685 100644
--- a/source/kok/sc/messages.po
+++ b/source/kok/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14507,14 +14507,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14740,14 +14741,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23659,91 +23661,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24361,103 +24363,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "कड ना"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24499,50 +24404,50 @@ msgid "Format Cells"
msgstr " कक्ष रचना"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "क्रमांक "
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "अक्षरसंच"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "अक्षरसंच प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "सारके करप"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "शीमो"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "फांटभूंय"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28769,44 +28674,44 @@ msgid "Page Style"
msgstr "पान शैली"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "पानां"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "शीमो"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "फांटभूंय"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "मस्तकलेख"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "चरणलेख"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "कागद"
@@ -28850,56 +28755,56 @@ msgid "Cell Style"
msgstr "कक्ष शैली"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "क्रमांक "
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "अक्षरसंच"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "अक्षरसंच प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "सारके करप"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "शीमो"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "फांटभूंय"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/kok/sd/messages.po b/source/kok/sd/messages.po
index 3cd80df2591..b4b6ae594da 100644
--- a/source/kok/sd/messages.po
+++ b/source/kok/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9829,100 +9829,100 @@ msgid "_Standard"
msgstr "प्रमाणित"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "वळ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "सावळीं"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पारदर्शकताय"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "अक्षरसंच"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "अक्षरसंच प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "मजकूर"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "मजकूर चलचित्र"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "परिमाण वळ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "जोडपी"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "सारके करप"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/kok/sfx2/messages.po b/source/kok/sfx2/messages.po
index 1c219a625a4..516c6f02c4c 100644
--- a/source/kok/sfx2/messages.po
+++ b/source/kok/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1627,376 +1627,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "काडात"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/kok/svtools/messages.po b/source/kok/svtools/messages.po
index 3c7ec90e5b5..c7ea8be0bef 100644
--- a/source/kok/svtools/messages.po
+++ b/source/kok/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2399,16 +2399,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2416,37 +2424,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "आशय तयार करपाक येना."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "लक्ष्य धारिका व्यवस्थेखातीर धारिकेचे नाव खूप व्हड जालां."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "आदान व्याकरण अमान्य."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2456,19 +2464,19 @@ msgstr ""
"उपकार करून दस्तावेजाची %PRODUCTNAME %PRODUCTVERSION ह्या धारिका रचनेंत जतनाय करात"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "एकाचवेळार उगडुपाची दस्तावेजांची कमाल संख्या पावल्या. तुमकां एक वा चड दस्तावेज नवो दस्तावेज उगडुक शकपापयली बंद करचे पडटले."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2481,43 +2489,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "म्हायती लामाय अमान्य"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "काम शक्य ना- वाटेंत चालू निदेशिका आसा."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "काम शक्य ना: उपकरण (ड्राइव) सारकिलो ना."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "उपकरण (ड्रायव) तयार ना."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "काम शक्य ना: बरोवपाक मनाय"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2525,47 +2533,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सर्वसादारण OLE त्रुटी"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "वस्तीच्या चालू स्थितींत कारवाय करपाक येना."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "वस्कीचे खंयच्याय कारवायेक फांटबळ ना"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "वस्तीचे ह्या कारवायेक फांटबळ ना"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/kok/svx/messages.po b/source/kok/svx/messages.po
index 4a87819df53..21e94890cde 100644
--- a/source/kok/svx/messages.po
+++ b/source/kok/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Konkani <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/kok/>\n"
@@ -10301,134 +10301,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10437,19 +10487,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/kok/sw/messages.po b/source/kok/sw/messages.po
index 155a983f664..8c40f17b8b0 100644
--- a/source/kok/sw/messages.po
+++ b/source/kok/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3077,9 +3077,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10833,38 +10833,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16882,58 +16888,58 @@ msgid "Frame"
msgstr "चौकट"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "पर्याय"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "गुठलावप"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरजोड"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "शीमो"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पारदर्शकताय"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "स्तंभ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मॅक्रो"
@@ -29749,45 +29755,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "अक्षरसंच"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "अक्षरसंच प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "स्थान"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "आशियाई अभिन्यास"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ठळक करप"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "शीमो"
@@ -29799,85 +29805,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "भायलीवळ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "प्रतिमा"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "स्थान"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29890,114 +29896,114 @@ msgid "Paragraph Style"
msgstr "(परिच्छेद शैली: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "सारके करप"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "अक्षरसंच"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "अक्षरसंच प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "स्थान"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "आशियाई अभिन्यास"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ठळक करप"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टॅब्स"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "व्हड अक्षरां"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पारदर्शकताय"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "शीमो"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "शर्त"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30010,58 +30016,58 @@ msgid "Frame Style"
msgstr "चौकट शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "प्रकार"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "पर्याय"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "गुठलावप"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पारदर्शकताय"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "शीमो"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "स्तंभ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मॅक्रो"
@@ -30080,62 +30086,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पान"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पारदर्शकताय"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "मस्तकलेख"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "चरणलेख"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "शीमो"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "स्तंभ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "तळटीपPaimyallen"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ks/cui/messages.po b/source/ks/cui/messages.po
index ac5d5c6868e..72fe3ab85be 100644
--- a/source/ks/cui/messages.po
+++ b/source/ks/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2588,10 +2588,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ks/sc/messages.po b/source/ks/sc/messages.po
index c4c1f7b43c0..de3d017eff5 100644
--- a/source/ks/sc/messages.po
+++ b/source/ks/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-12 13:12+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Kashmiri <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ks/>\n"
@@ -14555,14 +14555,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14790,14 +14791,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23738,91 +23740,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24442,103 +24444,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "كہین کنارئ چھُنئ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24578,53 +24483,53 @@ msgid "Format Cells"
msgstr "وضع سیل"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "نمبر"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "فانٹ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "فانٹ اثرات"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ترتیب وار"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asian Typography"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr " کنارئ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "پس منظر"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28856,45 +28761,45 @@ msgid "Page Style"
msgstr "صفحك سٹائل"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "صفحات"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr " کنارئ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "پس منظر"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "صفحہك پيٹھم خاش"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "صفحك تل۪یم خاش۔"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "شیٹ"
@@ -28939,59 +28844,59 @@ msgid "Cell Style"
msgstr "سیل سٹائلس"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "نمبر"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "فانٹ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "فانٹ اثرات"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ترتیب وار"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr " کنارئ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "پس منظر"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/ks/sd/messages.po b/source/ks/sd/messages.po
index b84537ef228..201fb46cd91 100644
--- a/source/ks/sd/messages.po
+++ b/source/ks/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9852,104 +9852,104 @@ msgid "_Standard"
msgstr "معیاری"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ریخ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "علاقہ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "شیڈینگ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "شفافیت"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "فانٹ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "فانٹ اثرات"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
#, fuzzy
msgctxt "templatedialog|text"
msgid "Text"
msgstr "مواد"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "متن متحرک تصویر"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ناپ خط "
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "رابطہ کار"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ترتیب وار"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/ks/sfx2/messages.po b/source/ks/sfx2/messages.po
index fb8127ef81e..601755a275f 100644
--- a/source/ks/sfx2/messages.po
+++ b/source/ks/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1609,376 +1609,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ہٹئویو"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ks/svtools/messages.po b/source/ks/svtools/messages.po
index 8b84a00c261..72f32a104c8 100644
--- a/source/ks/svtools/messages.po
+++ b/source/ks/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2399,16 +2399,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2416,37 +2424,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "کنٹینس تخلیق نہیں ہوسکتا۔"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ٹارگیٹ فائل سسٹم سےفائل نام زیادہ۔"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "انپوٹ سینٹیکس نہ منظورہے"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2456,19 +2464,19 @@ msgstr ""
" %PRODUCTNAME %PRODUCTVERSION فائل فارمیٹ۔"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2481,43 +2489,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "نہ درست ڈاٹا کی لمبائی۔"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "فنشن نہ ممکن:پاتھ کنٹینس کرنٹ ڈائریکٹری"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "فنشن نہ ممکن: (ڈرائیو) ڈیوئس مشابہ نہیں"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ڈیوئس (ڈرائیو) تیارنہیں۔"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "فنشن نہ ممکن:رائٹ پروٹیکٹ۔"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2525,44 +2533,44 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "جاری اسٹیٹ ميں آبجیكٹ میں ایكشن عمل درآمد نہں كیا جاسكتا ۔"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/ks/svx/messages.po b/source/ks/svx/messages.po
index ea264ae5382..2020bb6c390 100644
--- a/source/ks/svx/messages.po
+++ b/source/ks/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Kashmiri <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ks/>\n"
@@ -10286,134 +10286,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10422,19 +10472,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ks/sw/messages.po b/source/ks/sw/messages.po
index ffdfa92d979..8b1c2e5da59 100644
--- a/source/ks/sw/messages.po
+++ b/source/ks/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3072,9 +3072,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10852,38 +10852,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16917,58 +16923,58 @@ msgid "Frame"
msgstr "فریم"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "آپشنس"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "لپیٹنا"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ہائپرلنک"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "کنارے"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "علاقہ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "کالمز"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29824,45 +29830,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "فونٹ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "فانٹ اثرات"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "مقام"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ایشیای لے آوٹ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "نمایاں کران"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "کنارے"
@@ -29874,86 +29880,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "آؤٹ لائن"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "امیج"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "مقام"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29966,114 +29972,114 @@ msgid "Paragraph Style"
msgstr "پیراگراف اسٹائل"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ترتیب واری"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asian Typography"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "فونٹ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "فانٹ اثرات"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "مقام"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ایشیای لے آوٹ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "نمایاں کران"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ٹیبس"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ڈراپ كیپس "
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "علاقہ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "کنارے"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "حالت"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30086,57 +30092,57 @@ msgid "Frame Style"
msgstr "فریم سٹائل"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ٹائپ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "آپشنس"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "لپیٹنا"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "علاقہ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "کنارے"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "کالمز"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -30156,63 +30162,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "صفحہ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "علاقہ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "شفافیت"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "صفحہ کےاوپرکا حاشیہ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "صفحےکاحاشیہ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "کنارے"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "کالمز"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "حاشیہ كی تحریر "
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ky/cui/messages.po b/source/ky/cui/messages.po
index 4ae1cffc185..a0924e58892 100644
--- a/source/ky/cui/messages.po
+++ b/source/ky/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2537,10 +2537,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ky/sc/messages.po b/source/ky/sc/messages.po
index 468e0b1da5b..4f46f5cb116 100644
--- a/source/ky/sc/messages.po
+++ b/source/ky/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14184,14 +14184,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14414,14 +14415,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23127,91 +23129,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23810,102 +23812,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr ""
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -23943,49 +23849,49 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr ""
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr ""
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr ""
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr ""
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr ""
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28081,43 +27987,43 @@ msgid "Page Style"
msgstr ""
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr ""
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr ""
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr ""
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr ""
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr ""
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr ""
@@ -28159,55 +28065,55 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr ""
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr ""
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr ""
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr ""
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/ky/sd/messages.po b/source/ky/sd/messages.po
index 7528c948a08..92fd1712ef1 100644
--- a/source/ky/sd/messages.po
+++ b/source/ky/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9546,97 +9546,97 @@ msgid "_Standard"
msgstr ""
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr ""
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr ""
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr ""
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr ""
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr ""
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/ky/sfx2/messages.po b/source/ky/sfx2/messages.po
index 9b84902970a..af536ab7845 100644
--- a/source/ky/sfx2/messages.po
+++ b/source/ky/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1561,376 +1561,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr ""
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ky/svtools/messages.po b/source/ky/svtools/messages.po
index 97afa8f7c47..3a5573ce4ed 100644
--- a/source/ky/svtools/messages.po
+++ b/source/ky/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2381,16 +2381,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2398,37 +2406,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2436,19 +2444,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2461,43 +2469,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2505,43 +2513,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/ky/svx/messages.po b/source/ky/svx/messages.po
index 455ac16dc6a..a5b4742ba77 100644
--- a/source/ky/svx/messages.po
+++ b/source/ky/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10131,134 +10131,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10267,19 +10317,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ky/sw/messages.po b/source/ky/sw/messages.po
index 074772a62be..23d609d2ce8 100644
--- a/source/ky/sw/messages.po
+++ b/source/ky/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3027,9 +3027,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10585,38 +10585,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16415,55 +16421,55 @@ msgid "Frame"
msgstr ""
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr ""
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr ""
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr ""
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr ""
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr ""
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr ""
@@ -28856,43 +28862,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr ""
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr ""
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr ""
@@ -28904,85 +28910,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr ""
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr ""
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr ""
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -28994,109 +29000,109 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr ""
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr ""
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr ""
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr ""
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr ""
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr ""
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29108,55 +29114,55 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr ""
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr ""
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr ""
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr ""
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr ""
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr ""
@@ -29174,61 +29180,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr ""
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr ""
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr ""
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr ""
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr ""
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr ""
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/lb/cui/messages.po b/source/lb/cui/messages.po
index acc1c673d72..df23bf10b49 100644
--- a/source/lb/cui/messages.po
+++ b/source/lb/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2556,10 +2556,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/lb/sc/messages.po b/source/lb/sc/messages.po
index 058fc380e47..e3ebe731ed6 100644
--- a/source/lb/sc/messages.po
+++ b/source/lb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14423,14 +14423,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14653,14 +14654,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23519,91 +23521,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24219,103 +24221,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ouni Bord "
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24353,50 +24258,50 @@ msgid "Format Cells"
msgstr ""
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Nummer"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Schrëft"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Schrëfteffekter"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Aus~riichten"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatesch Typographie"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Konturen"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Hannergrond"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28592,44 +28497,44 @@ msgid "Page Style"
msgstr "Säitevirlag: "
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Säiten"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Konturen"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Hannergrond"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr ""
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr ""
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Blat"
@@ -28672,56 +28577,56 @@ msgid "Cell Style"
msgstr ""
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Nummer"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Schrëft"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Schrëfteffekter"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Aus~riichten"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatesch Typographie"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Konturen"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Hannergrond"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/lb/sd/messages.po b/source/lb/sd/messages.po
index 7d3266a98a5..01e11b1e091 100644
--- a/source/lb/sd/messages.po
+++ b/source/lb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9702,97 +9702,97 @@ msgid "_Standard"
msgstr "Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Zeil "
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparenz"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Schrëft"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Schrëfteffekter"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Text"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr ""
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr ""
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Aus~riichten"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatesch Typographie"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr ""
diff --git a/source/lb/sfx2/messages.po b/source/lb/sfx2/messages.po
index cb90c43d68c..92876a95b99 100644
--- a/source/lb/sfx2/messages.po
+++ b/source/lb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1575,376 +1575,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Ewechmaachen"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/lb/svtools/messages.po b/source/lb/svtools/messages.po
index bbb69cd397f..869776dff0d 100644
--- a/source/lb/svtools/messages.po
+++ b/source/lb/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2412,16 +2412,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2429,37 +2437,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2467,19 +2475,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2492,43 +2500,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2536,43 +2544,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/lb/svx/messages.po b/source/lb/svx/messages.po
index 58c5da93d06..bfffb73639c 100644
--- a/source/lb/svx/messages.po
+++ b/source/lb/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10231,134 +10231,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10367,19 +10417,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/lb/sw/messages.po b/source/lb/sw/messages.po
index af60f789d7f..3ae3f5fc939 100644
--- a/source/lb/sw/messages.po
+++ b/source/lb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3050,9 +3050,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10788,38 +10788,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16752,56 +16758,56 @@ msgid "Frame"
msgstr "Kontur:"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Optiounen"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr ""
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Konturen"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
#, fuzzy
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "~Kolonnen "
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -29436,44 +29442,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Schrëft"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Schrëfteffekter"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Positioun"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatesche Layout"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr ""
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Konturen"
@@ -29485,86 +29491,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Konturen"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Bild"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Positioun"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29576,111 +29582,111 @@ msgid "Paragraph Style"
msgstr ""
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Aus~riichten"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatesch Typographie"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Schrëft"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Schrëfteffekter"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Positioun"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatesche Layout"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr ""
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr ""
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr ""
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Konturen"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Konditioun"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29692,56 +29698,56 @@ msgid "Frame Style"
msgstr ""
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Typ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Optiounen"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr ""
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Konturen"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
#, fuzzy
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "~Kolonnen "
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29760,62 +29766,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Säit"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparenz"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr ""
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr ""
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Konturen"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
#, fuzzy
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "~Kolonnen "
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr ""
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/lo/cui/messages.po b/source/lo/cui/messages.po
index bc6b36885ec..49f208e47ae 100644
--- a/source/lo/cui/messages.po
+++ b/source/lo/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2577,10 +2577,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/lo/helpcontent2/source/text/shared/00.po b/source/lo/helpcontent2/source/text/shared/00.po
index 157952aa485..b19257c35ca 100644
--- a/source/lo/helpcontent2/source/text/shared/00.po
+++ b/source/lo/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/lo/helpcontent2/source/text/shared/01.po b/source/lo/helpcontent2/source/text/shared/01.po
index 23cfbad7c31..f6924c9e4e7 100644
--- a/source/lo/helpcontent2/source/text/shared/01.po
+++ b/source/lo/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,13 +23452,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23470,13 +23470,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/lo/helpcontent2/source/text/shared/optionen.po b/source/lo/helpcontent2/source/text/shared/optionen.po
index 8eccca450ed..9adf35a797c 100644
--- a/source/lo/helpcontent2/source/text/shared/optionen.po
+++ b/source/lo/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/lo/helpcontent2/source/text/swriter/01.po b/source/lo/helpcontent2/source/text/swriter/01.po
index a87bf0b3aad..fdab54fd5ca 100644
--- a/source/lo/helpcontent2/source/text/swriter/01.po
+++ b/source/lo/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/lo/helpcontent2/source/text/swriter/guide.po b/source/lo/helpcontent2/source/text/swriter/guide.po
index 51968617bec..43b497ceb93 100644
--- a/source/lo/helpcontent2/source/text/swriter/guide.po
+++ b/source/lo/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,13 +4282,13 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
+msgid "Click the <emph>General</emph> tab."
msgstr ""
#. fYHA2
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/lo/sc/messages.po b/source/lo/sc/messages.po
index 5d090e93886..436775dbc48 100644
--- a/source/lo/sc/messages.po
+++ b/source/lo/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14481,14 +14481,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14714,14 +14715,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23618,91 +23620,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24319,103 +24321,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ບໍ່ມີຂອບ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24455,50 +24360,50 @@ msgid "Format Cells"
msgstr "ກຳນົດຮູບແບບເຊວ"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ຕົວເລກ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ຈັດລຽນ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ຂອບ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ພື້ນ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28717,43 +28622,43 @@ msgid "Page Style"
msgstr "ຮູບແບບໜ້າ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ໜ້າ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ຂອບ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ພື້ນ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ສ່ວນຫົວ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ສ່ວນຕີນ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ໜ້າເຈ້ຍ"
@@ -28798,56 +28703,56 @@ msgid "Cell Style"
msgstr "~ຮູບແບບເຊວ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ຕົວເລກ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ຈັດລຽນ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ຂອບ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ພື້ນ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/lo/sd/messages.po b/source/lo/sd/messages.po
index 9113f3af2d6..de90486e899 100644
--- a/source/lo/sd/messages.po
+++ b/source/lo/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9824,102 +9824,102 @@ msgid "_Standard"
msgstr "ມາດຕະຖານ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ເສ້ັນ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ເງົາ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ຄວາມໂປງໃສ"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ຕົວອັກສອນ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ຂໍ້ຄວາມທີ່ເຄື່ອນເໜັງ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ເສັ້ນມິຕິ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "ຕົວເຊື່ອມຕໍ່"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ຈັດລຽນ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/lo/sfx2/messages.po b/source/lo/sfx2/messages.po
index 2487a80019b..f3a04483b8e 100644
--- a/source/lo/sfx2/messages.po
+++ b/source/lo/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1610,376 +1610,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ເອົາອອກ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/lo/svtools/messages.po b/source/lo/svtools/messages.po
index dac437ca74a..92e55ba52a8 100644
--- a/source/lo/svtools/messages.po
+++ b/source/lo/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-08-19 12:59+0000\n"
"Last-Translator: Saikeo <kavhanxay@hotmail.com>\n"
"Language-Team: Lao <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/lo/>\n"
@@ -2429,16 +2429,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2446,37 +2454,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr ""
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr ""
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2484,19 +2492,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2509,43 +2517,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr ""
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr ""
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr ""
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr ""
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr ""
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2553,43 +2561,43 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr ""
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr ""
diff --git a/source/lo/svx/messages.po b/source/lo/svx/messages.po
index e9d98e6ee8a..bf7c04ed5b2 100644
--- a/source/lo/svx/messages.po
+++ b/source/lo/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Lao <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/lo/>\n"
@@ -10263,134 +10263,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10399,19 +10449,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/lo/sw/messages.po b/source/lo/sw/messages.po
index 23e83372086..ce4f5acdf7b 100644
--- a/source/lo/sw/messages.po
+++ b/source/lo/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3058,9 +3058,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10814,38 +10814,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16869,59 +16875,59 @@ msgid "Frame"
msgstr "ກອບ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "ທາງເລືອກ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~ຫຸ້ມຫໍ່"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ເຊື່ອມຕໍ່"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ຂອບ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ຄວາມໂປງໃສ"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ຖັນ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29766,46 +29772,46 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ຕໍ່າແໜ່ງ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "~ແບບອາຊີ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ຈຸດເດັ່ນ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ຂອບ"
@@ -29817,88 +29823,88 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ເສັ້ນຂອບ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ພາບ"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ຕໍ່າແໜ່ງ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29911,115 +29917,115 @@ msgid "Paragraph Style"
msgstr "(ຮູບແບບແຖວ:"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ຈັດລຽນ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ແບບຕົວອັກສອນ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ຕໍ່າແໜ່ງ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "~ແບບອາຊີ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ຈຸດເດັ່ນ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ແທບ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ຕົວອັກສອນໃຫ່ຍ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ຄວາມໂປງໃສ"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ຂອບ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~ເງື່ອນໄຂ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30032,58 +30038,58 @@ msgid "Frame Style"
msgstr "ຮູບແບບກອບ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ຊະນິດ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ທາງເລືອກ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~ຫຸ້ມຫໍ່"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ຄວາມໂປງໃສ"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ຂອບ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ຖັນ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -30102,62 +30108,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ໜ້າ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ຄວາມໂປງໃສ"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ສ່ວນຫົວ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ສ່ວນທ້າຍ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ຂອບ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ຖັນ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ໝາຍເຫດທ້າຍໜ້າ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/lt/cui/messages.po b/source/lt/cui/messages.po
index 776cafbf465..b9ed3467d67 100644
--- a/source/lt/cui/messages.po
+++ b/source/lt/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-23 01:45+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/lt/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "CSV failą galima atverti kaip naują lakštą veikiamajame skaičiuoklės dokumente – pasirinkite „Lakštas → Įterpti lakštą iš failo“."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/lt/helpcontent2/source/text/shared/00.po b/source/lt/helpcontent2/source/text/shared/00.po
index 377259f873e..a827a35e881 100644
--- a/source/lt/helpcontent2/source/text/shared/00.po
+++ b/source/lt/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-01-12 14:11+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/lt/>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Pasirinkite komandą <emph>Formatas → Langeliai</emph> ir atverkite kortelę <emph>Fonas</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Pasirinkite <menuitem>Formatas → Puslapio stilius → Tvarkytuvės</menuitem> kortelę."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Pasirinkite <menuitem>Stiliai → Taisyti stilių → Tvarkytuvės</menuitem> kortelę."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Pasirinkite <menuitem>Formatas → Stiliai → Taistyti stilių → Tavrkytuvės</menuitem> kortelę.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Pasirinkite <menuitem>Skaidrė → Parinktys → Puslapio</menuitem> kortelę.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/lt/helpcontent2/source/text/shared/01.po b/source/lt/helpcontent2/source/text/shared/01.po
index 193971a6f62..10d7d15d174 100644
--- a/source/lt/helpcontent2/source/text/shared/01.po
+++ b/source/lt/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-12-12 13:30+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/lt/>\n"
@@ -23454,13 +23454,13 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
+msgid "General"
msgstr ""
#. HAEfy
@@ -23472,13 +23472,13 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
msgstr ""
#. HCNHK
diff --git a/source/lt/helpcontent2/source/text/shared/optionen.po b/source/lt/helpcontent2/source/text/shared/optionen.po
index c8dec4994d3..9c20571316b 100644
--- a/source/lt/helpcontent2/source/text/shared/optionen.po
+++ b/source/lt/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-02-03 19:36+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/lt/>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/lt/helpcontent2/source/text/swriter/01.po b/source/lt/helpcontent2/source/text/swriter/01.po
index 854d81e91e0..b4648ac0db8 100644
--- a/source/lt/helpcontent2/source/text/swriter/01.po
+++ b/source/lt/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-07-15 17:18+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/lt/>\n"
@@ -23364,14 +23364,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Tiesioginis formatavimas pakeičia rašmens stiliaus pateiktą formatavimą. Norėdami pašalinti tiesioginį formatavimą iš žymos, naudokite <menuitem>Formatas - Išvalyti tiesioginį formatavimą</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Komanda</keycode></caseinline><defaultinline><keycode>Vald</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Naudokite <emph>Apimti</emph> sekciją tvarkytuvėje, kad matytumėte rašmens stiliaus savybes."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/lt/helpcontent2/source/text/swriter/guide.po b/source/lt/helpcontent2/source/text/swriter/guide.po
index 14012ed877e..680c81593c9 100644
--- a/source/lt/helpcontent2/source/text/swriter/guide.po
+++ b/source/lt/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-01-31 19:36+0000\n"
"Last-Translator: Valentina Dagiene <valentina.dagiene@mif.vu.lt>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/lt/>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Puslapio stilių sąraše spauskite dešiniu pelės mygtuku „Kairysis puslapis“ ir pasirinkite <emph>Keisti</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Spauskite <emph>Tvarkytuvė</emph> skirtuką."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Galite naudoti skirtingas antraštes ir poraštes skirtinguose dokumento puslapiuose tol kol puslapiai naudoja skirtingus puslapių stilius. $[officename] suteikia kelis numatytus puslapio stilius, tokius kaip <emph>Pirmas puslapis</emph>, <emph>Kairysis puslapis</emph> ir <emph>Dešinysis puslapis</emph> arba galite sukurti tinkintą puslapio stilių."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Dešiniu pelės mygtuku paspauskite „Dešinysis puslapis“ puslapio stilių sąraše ir pasirinkite <emph>Keisti</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Puslapio stiliai</item> dialogo lange paspauskite <item type=\"menuitem\">Antraštė</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Pasirinkite <item type=\"menuitem\">Antraštė įgalinta</item> ir paspauskite <item type=\"menuitem\">Tvarkytuvė</item> kortelę."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">Sekantis stilius</item> langelyje pasirinkite „Kairysis puslapis“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Lange <emph>Stiliai</emph> dešiniu pelės mygtuku paspauskite „kairysis puslapis“ puslapio stilių sąraše ir pasirinkite <emph>Keisti</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">Puslapio stiliai</item> dialogo lange paspauskite <item type=\"menuitem\">Antraštė</item> kortelę."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Pasirinkite <item type=\"menuitem\">Antraštė įgalinta</item> ir paspauskite <item type=\"menuitem\">Tvarkytuvė</item> kortelę."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">Sekantis stilius</item> langelyje pasirinkite „Dešinysis puslapis“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Puslapio stilių sąraše dešiniu pelės mygtuku paspauskite elementą ir tada pasirinkite <emph>Naujas</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>Tvarkytuvė</emph> kortelės puslapyje įrašykite pavadinimą puslapio stiliui į <emph>Pavadinimas</emph> langelį."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Pasirinkite <emph>Puslapio lūžis</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">Stilius</item> langelyje pasirinkite puslapio stilių, kuris naudoja puslapio foną."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>Automatinis puslapio lūžis</emph> pasirodo puslapio pabaigoje, kai puslapio stilius turi kitokį „kitą stilių“."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Dešiniu pelės mygtuku paspauskite puslapio stilių ir pasirinkite <emph>Naujas</emph>. Naujas puslapio stilius įgauna visas pasirinkto puslapio stiliaus savybes."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>Tvarkytuvė</emph> kortelės puslapyje įveskite pavadinimą puslapio stiliui <emph>Pavadinimas</emph> langelyje, pavyzdžiui „Mano gulsčias lapas“"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Vieno puslapio ilgio stiliai"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Puslapio stilius gali būti apibrėžtas tik vieno puslapio apimčiai. „Pirmas puslapis“ stilius yra pavyzdys. Nustatote šią savybę apibrėždami kitą puslapio stilių, kad jis būtų „kitas stilius“ <menuitem>Formatas → Puslapio stilius → Tvarkytuvė</menuitem> puslapyje."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Rankiniu būdu apibrėžtas puslapio stiliaus rėžis"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "„Numatytasis“ puslapio stilius nenustato kitokio „kitas stilius“ <menuitem>Formatas → Puslapio stilius → Tvarkytuvė</menuitem> puslapio. Vietoj to, „kitas stilius“ yra nustatomas būti „Numatytasis“. Visi puslapio stiliai yra pateikti tuo pačių stiliumi ir gali apimti keletą puslapių. Viršutinių ir apatinių puslapių kraštinių rėžis yra apibrėžiamas pagal „puslapio lūžiai su stiliumi“. Visi puslapiai tarp bet kurių dviejų „puslapio lūžių su stiliumi“ naudoja tokį patį puslapio stilių."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Puslapio stilių sąraše dešiniu pelės mygtuku paspauskite elementą ir tada pasirinkite <emph>Naujas</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>Tvarkytuvė</emph> kortelėje įveskite pavadinimą į <emph>Pavadinimas</emph> langelį."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/lt/sc/messages.po b/source/lt/sc/messages.po
index 2ae0916f5f9..920655bde31 100644
--- a/source/lt/sc/messages.po
+++ b/source/lt/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-06-16 19:35+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/lt/>\n"
@@ -14392,14 +14392,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14626,14 +14627,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23435,91 +23437,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24119,104 +24121,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Nėra kraštinių"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Visos kraštinės"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Išorinės kraštinės"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Pastorintos kraštinės"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Pastorinta apatinė kraštinė"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dviguba apatinė kraštinė"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Viršutinė ir pastorinta apatinė kraštinės"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Viršutinė ir dviguba apatinė kraštinės"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Kairė kraštinė"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Dešinė kraštinė"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Viršutinė kraštinė"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Apatinė kraštinė"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Įstrižainė aukštyn"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Įstrižainė žemyn"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Viršutinė ir apatinė kraštinės"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-#, fuzzy
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Kairiuosiuose ir dešiniuosiuose puslapiuose"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24254,49 +24158,49 @@ msgid "Format Cells"
msgstr "Langelių formatas"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Skaičiai"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Šriftas"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Rašmenų savybės"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Lygiuotė"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Azijos šriftai"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Kraštinės"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fonas"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Langelio apsauga"
@@ -28409,43 +28313,43 @@ msgid "Page Style"
msgstr "Puslapio stilius"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Puslapis"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Kraštinės"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fonas"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Puslapinė antraštė"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Puslapinė poraštė"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Lakštas"
@@ -28488,55 +28392,55 @@ msgid "Cell Style"
msgstr "Langelio stilius"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Skaičiai"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Šriftas"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Rašmenų savybės"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Lygiuotė"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijos šriftai"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Kraštinės"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fonas"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Langelio apsauga"
diff --git a/source/lt/sd/messages.po b/source/lt/sd/messages.po
index 7885dd5dc3e..f2155e913ea 100644
--- a/source/lt/sd/messages.po
+++ b/source/lt/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-23 01:45+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/lt/>\n"
@@ -9599,97 +9599,97 @@ msgid "_Standard"
msgstr "Įprastas"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Sritis"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Šešėlis"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Skaidrumas"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Šriftas"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Rašmenų savybės"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Įtraukos ir intervalai"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekstas"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Teksto animacija"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Matmenų linija"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Jungiamoji linija"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Lygiuotė"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Azijos šriftai"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabuliavimo žymės"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/lt/sfx2/messages.po b/source/lt/sfx2/messages.po
index 969510acc79..3c52a738e32 100644
--- a/source/lt/sfx2/messages.po
+++ b/source/lt/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-06-13 04:35+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/lt/>\n"
@@ -1633,376 +1633,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makrokomandos išjungtos atsižvelgiant į makrokomandų saugumo parinktis."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makrokomandos yra pasirašytos, tačiau dokumentas (kuriame yra dokumento įvykiai) nepasirašytas."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Rodyti makrokomandas"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Rodyti įvykius"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Pilkas elegantiškas"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bičių avilys"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Mėlyna kreivė"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Brėžinys"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Saldainiai"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geltona idėja"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNR"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokusavimas"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Miško paukščiai"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Gaivumas"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Įkvėpimas"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Šviesos"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Laisvė"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Miestietiškas"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nakties mėlynas"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Gamta"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Pieštukas"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Pianinas"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progresas"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Saulėlydis"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Senoviškas"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Ryškus"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Gyvenimo aprašymas"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Numatytasis"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Šiuolaikiškas"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Šiuolaikiškas tarnybinis laiškas, šriftas be užraitų"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Šiuolaikiškas tarnybinis laiškas, šriftas su užraitais"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizitinė kortelė su logotipu"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Paprastas"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "Verslo procesai"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Supaprastintosios kinų įprastas"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Šalinti"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Šalinti visus"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Slaptažodžio ilgis"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Įvestas slaptažodis gali kelti suderinamumo problemų. Parinkite slaptažodį, kuris būtų trumpesnis nei 52 baitai arba ilgesnis nei 55 baitai."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "Spustelėkite laikydami nuspaustą klavišą „%{key}“, kad sektumėte saitu: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Spustelėkite, kad sektumėte saitu: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(naudojama: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Teksto dokumentas"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Skaičiuoklės dokumentas"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Pateiktis"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Grafikos dokumentas"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Panaikinti visus numatytuosius šablonus"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Panaikinti numatytąjį teksto šabloną"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Panaikinti numatytąjį skaičiuoklės šabloną"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Panaikinti numatytąjį pateikties šabloną"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Panaikinti numatytąjį grafikos šabloną"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Importuoti"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Plėtiniai"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Pervadinti"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Kategorijos pervadinimas"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nauja kategorija"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/lt/svtools/messages.po b/source/lt/svtools/messages.po
index f7478af23f0..f2a5f64a370 100644
--- a/source/lt/svtools/messages.po
+++ b/source/lt/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-26 19:49+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/lt/>\n"
@@ -2387,10 +2387,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nepavyko užmegzti internetinio ryšio su „$(ARG1)“."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2398,7 +2406,7 @@ msgstr ""
"Serverio klaidos pranešimas: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2408,37 +2416,37 @@ msgstr ""
"Serverio klaidos pranešimas: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Įvyko bendroji interneto klaida."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Podėlyje nėra reikiamų duomenų iš interneto ir jų negalima atsisiųsti, nes dirbama atsijungus."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Negalima sukurti turinio."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Šio failo vardas yra per ilgas paskirties failų sistemai."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Neteisinga įvedimo sintaksė."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2448,19 +2456,19 @@ msgstr ""
"Įrašykite dokumentą „%PRODUCTNAME %PRODUCTVERSION“ formatu."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Vienu metu atvertas didžiausias galimas dokumentų skaičius. Jei norite atverti kitą dokumentą, turite užverti vieną ar daugiau atvertų dokumentų."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nepavyko sukurti atsarginės kopijos."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2480,43 +2488,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Klaidingas duomenų ilgis."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija negalima: kelyje nurodytas dabartinis aplankas."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija negalima: neatitinka įrenginys (diskas)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Neparuoštas įrenginys (diskas)."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Neteisinga kontrolinė suma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija negalima: uždraustas rašymas."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2526,43 +2534,43 @@ msgstr ""
"Pirmiausia turite išjungti dokumento bendrinimą."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Failo formato klaida $(ARG1)(eil., stlp.) vietoje."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Šio failų formato filtras yra išjungtas sąrankoje. Kreipkitės į sistemos administratorių."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Bendra OLE klaida."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Esant dabartinei objekto būsenai veiksmo vykdyti negalima."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Su šiuo objektu negalima atlikti jokių veiksmų."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Šio veiksmo su objektu atlikti negalima."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) aktyvuojant objektą"
diff --git a/source/lt/svx/messages.po b/source/lt/svx/messages.po
index 98f195b87e0..1e7834999df 100644
--- a/source/lt/svx/messages.po
+++ b/source/lt/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-01 07:36+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/lt/>\n"
@@ -10171,134 +10171,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10307,19 +10357,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/lt/sw/messages.po b/source/lt/sw/messages.po
index e7000b23c99..1f4be013c0b 100644
--- a/source/lt/sw/messages.po
+++ b/source/lt/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-12-15 01:45+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/lt/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Sąrašas 5, tęsinys"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Puslapinė antraštė ir poraštė"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10611,38 +10611,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16448,55 +16454,55 @@ msgid "Frame"
msgstr "Kadras"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Parinktys"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Teksto laužymas"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipersaitas"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Kraštinės"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Sritis"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Skaidrumas"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Skiltys"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makrokomanda"
@@ -28929,43 +28935,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Šriftas"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Rašmenų savybės"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Padėtis"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Azijos kalbų schema"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Paryškinimas"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Kraštinės"
@@ -28977,85 +28983,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Struktūra"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Paveikslėliai"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Padėtis"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29068,109 +29074,109 @@ msgid "Paragraph Style"
msgstr "Pastraipos stilius"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Įtraukos ir intervalai"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Lygiuotė"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Teksto skaidymas"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Azijos šriftai"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Šriftas"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Rašmenų savybės"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Padėtis"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Azijos kalbų schema"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Paryškinimas"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabuliavimo žymės"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Inicialas"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Sritis"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Skaidrumas"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Kraštinės"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Sąlyga"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29182,55 +29188,55 @@ msgid "Frame Style"
msgstr "Kadro stilius"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipas"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Parinktys"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Teksto laužymas"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Sritis"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Skaidrumas"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Kraštinės"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Skiltys"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makrokomanda"
@@ -29248,61 +29254,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Puslapis"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Sritis"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Skaidrumas"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Puslapinė antraštė"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Puslapinė poraštė"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Kraštinės"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Skiltys"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Išnaša"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Teksto tinklelis"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index f0faf6e5d36..9516bbe043a 100644
--- a/source/lv/cui/messages.po
+++ b/source/lv/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-11-14 08:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/lv/>\n"
@@ -2562,10 +2562,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po
index 5814ec3ce68..349d70bd490 100644
--- a/source/lv/helpcontent2/source/text/shared/00.po
+++ b/source/lv/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index 3b2e7206f1c..cdc51fb54c2 100644
--- a/source/lv/helpcontent2/source/text/shared/01.po
+++ b/source/lv/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizētājs"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizētājs</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index 7e6f5dfa527..f697152d41b 100644
--- a/source/lv/helpcontent2/source/text/shared/optionen.po
+++ b/source/lv/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/lv/helpcontent2/source/text/swriter/01.po b/source/lv/helpcontent2/source/text/swriter/01.po
index dd5f382efda..5fc130946ea 100644
--- a/source/lv/helpcontent2/source/text/swriter/01.po
+++ b/source/lv/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/lv/helpcontent2/source/text/swriter/guide.po b/source/lv/helpcontent2/source/text/swriter/guide.po
index 826f1537718..c1cab8d338d 100644
--- a/source/lv/helpcontent2/source/text/swriter/guide.po
+++ b/source/lv/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2019-07-21 20:38+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr ""
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klikšķiniet <emph>Organizētājs</emph> cilni."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr ""
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,31 +7135,31 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
msgstr ""
#. RRd7v
@@ -7180,31 +7180,31 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
msgstr ""
#. sXiNx
@@ -11428,13 +11428,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
msgstr ""
#. np5V4
@@ -11581,13 +11581,13 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr ""
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
msgstr ""
#. iRsej
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,13 +12184,13 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr ""
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
msgstr ""
#. i7WYZ
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,13 +12499,13 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr ""
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
msgstr ""
#. r3NWH
diff --git a/source/lv/sc/messages.po b/source/lv/sc/messages.po
index f4eeeaeac97..33e5bc031a8 100644
--- a/source/lv/sc/messages.po
+++ b/source/lv/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-11-14 08:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/lv/>\n"
@@ -14277,14 +14277,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14507,14 +14508,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23226,91 +23228,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23909,102 +23911,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Bez malas"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Visas malas"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Ārmalas"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Biezas kastes malas"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Bieza apakšējā mala"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dubulta apakšējā mala"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Augšējās un biezas apakšējās malas"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Augšējās un dubultas apakšējās malas"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Kreisā mala"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Labā mala"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Augšējā mala"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Apakšēja mala"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonāle uz augšu"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonāle uz leju"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Augšējās un apakšējās malas"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Labās un kreisās malas"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24042,49 +23948,49 @@ msgid "Format Cells"
msgstr "Formatēt šūnas"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Skaitļi"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Fonts"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Fonta efekti"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Līdzināšana"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Āzijas tipogrāfija"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Malas"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Fons"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Šūnu aizsardzība"
@@ -28173,43 +28079,43 @@ msgid "Page Style"
msgstr "Lappušu stils"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Lappuse"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Malas"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Galvene"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Kājene"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Loksne"
@@ -28251,55 +28157,55 @@ msgid "Cell Style"
msgstr "Šūnas stils"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Skaitļi"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Fonts"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Fontu efekti"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Līdzināšana"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Āzijas tipogrāfija"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Malas"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Fons"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Šūnu aizsardzība"
diff --git a/source/lv/sd/messages.po b/source/lv/sd/messages.po
index 236e2cb6bc9..db8b79dd35e 100644
--- a/source/lv/sd/messages.po
+++ b/source/lv/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-11-14 08:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/lv/>\n"
@@ -9551,97 +9551,97 @@ msgid "_Standard"
msgstr "_Standarts"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Līnija"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Laukums"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ēnošana"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Caurspīdīgums"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Fonts"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Fontu efekti"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Atkāpes un atstarpes"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Teksts"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Teksta animācija"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Izmēra atzīmēšana"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Savienotājs"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Līdzinājums"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Āzijas tipogrāfija"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulācijas"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Izcelšana"
diff --git a/source/lv/sfx2/messages.po b/source/lv/sfx2/messages.po
index ccee2e6a1c5..f7466e10539 100644
--- a/source/lv/sfx2/messages.po
+++ b/source/lv/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2022-11-14 08:16+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/lv/>\n"
@@ -1624,376 +1624,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bišu strops"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Zila līkne"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Rasējuma plāni"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNS"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokuss"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Meža putns"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Iedvesma"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Gaismas"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropole"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Pusnakts zils"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Dabas ilustrācija"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Zīmulis"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Klavieres"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfelis"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progress"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Saulriets"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vecmodīgs"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Izteikts"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Noklusējuma"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderns"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderna biznesa vēstule, bez rēdzēm"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderna biznesa vēstule, ar rēdzēm"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Vizītkarte ar logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Vienkāršs"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Izņemt"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Attīrīt visu"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Paroles garums"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Ievadītā parole izraisa sadarbspējas problēmas. Lūdzu, ievadiet paroli, kura ir īsāka par 52 baitiem vai garāka par 55 baitiem."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikšķis, lai atvērtu hipersaiti: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/lv/svtools/messages.po b/source/lv/svtools/messages.po
index a66cdb23f8e..ede4addf72e 100644
--- a/source/lv/svtools/messages.po
+++ b/source/lv/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-11-14 08:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/lv/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Nevarēja izveidot Interneta savienojumu uz $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Servera kļūdas ziņojums: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Servera kļūdas ziņojums: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Notika vispārēja interneta kļūda."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Pieprasītie interneta dati nav pieejami glabātuvē un tos nevar saņemt, jo tiešsaistes režīms nav aktivizēts."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Saturu nevar izveidot."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Datnes nosaukums ir pārāk garš mērķa datņu sistēmai."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Ievades sintakse ir nepareiza."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Lūdzu, saglabājiet dokumentu %PRODUCTNAME %PRODUCTVERSION datņu formātā."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Sasniegts maksimālais, vienlaikus atveramo dokumentu, skaits. Jāaizver viens vai vairāk dokumenti, lai atvērtu jaunu dokumentu."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Nevarēja izveidot rezerves kopiju."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Nederīgs datu garums."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funkcija nav iespējama: ceļš satur pašreizējo direktoriju."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funkcija nav iespējama: ierīces (diski) nav identiski."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Ierīce (disks) nav gatavs."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Nepareiza kontrolsumma."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funkcija nav iespējama: aizsargāts pret rakstīšanu."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Vispirms izslēdziet koplietošanas režīmu."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Atrasta datnes formāta kļūda $(ARG1)(rinda,kolonna)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filtrs šim datņu formātam ir izslēgts konfigurācijā. Lūdzu, sazinieties ar sistēmu administratoru."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Vispārēja OLE kļūda."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Šajā objekta stāvoklī darbību nevar izpildīt."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objekts neatbalsta nevienu darbību."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objekts neatbalsta šo darbību."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR), aktivizējot objektu"
diff --git a/source/lv/svx/messages.po b/source/lv/svx/messages.po
index f1f510d04b8..e5075242b22 100644
--- a/source/lv/svx/messages.po
+++ b/source/lv/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2022-11-14 08:17+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/lv/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/lv/sw/messages.po b/source/lv/sw/messages.po
index 31767db56e5..915aa53a004 100644
--- a/source/lv/sw/messages.po
+++ b/source/lv/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 13:39+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 11:46+0200\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/lv/>\n"
"Language: lv\n"
@@ -3024,11 +3024,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Saraksta 5 turpinājums"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Galvene un kājene"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16437,55 +16443,55 @@ msgid "Frame"
msgstr "Ietvars"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcijas"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Aplaušana"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipersaite"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Malas"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Laukums"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Caurspīdīgums"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolonnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makrokomanda"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Fonts"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Fonta efekti"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Novietojums"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Āzijas izkārtojums"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Izcelšana"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Malas"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Struktūra"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Attēls"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Novietojums"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Pielāgot"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Rindkopas stils"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Atkāpes un atstarpes"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Līdzināšana"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Teksta plūsma"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Āzijas tipogrāfija"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Fonts"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Fonta efekti"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Novietojums"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Āzijas izkārtojums"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Izcelšana"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulācija"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Titulburti"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Laukums"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Caurspīdīgums"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Malas"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Nosacījums"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Ietvara stils"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tips"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcijas"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Aplaušana"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Laukums"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Caurspīdīgums"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Malas"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolonnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makrokomanda"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standarta"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Lappuse"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Laukums"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Caurspīdīgums"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Galvene"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Kājene"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Malas"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolonnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Vēre"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Teksta režģis"
diff --git a/source/mai/cui/messages.po b/source/mai/cui/messages.po
index 6d6bbbe1d20..09d131fe11f 100644
--- a/source/mai/cui/messages.po
+++ b/source/mai/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2583,10 +2583,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/mai/sc/messages.po b/source/mai/sc/messages.po
index 76dbad5a956..5e05c54333e 100644
--- a/source/mai/sc/messages.po
+++ b/source/mai/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14587,14 +14587,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14821,14 +14822,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23775,91 +23777,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24479,103 +24481,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "कोनो किनार नहि"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24615,52 +24520,52 @@ msgid "Format Cells"
msgstr "कोष्ठ रचना"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "सँख्या"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "किनार"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28893,45 +28798,45 @@ msgid "Page Style"
msgstr "पृष्ठ शैली"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "पृष्ठसभ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "किनार"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "शीर्ष टिप्पणी"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "पाद टिप्पणी"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "शीट"
@@ -28976,58 +28881,58 @@ msgid "Cell Style"
msgstr "सेल शैलीसभ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "सँख्या"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "किनार"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/mai/sd/messages.po b/source/mai/sd/messages.po
index 1cc43f82ac7..be819817b54 100644
--- a/source/mai/sd/messages.po
+++ b/source/mai/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9842,101 +9842,101 @@ msgid "_Standard"
msgstr "मानक"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "रेखा"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "छाया"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पारदर्शिता"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
#, fuzzy
msgctxt "templatedialog|text"
msgid "Text"
msgstr "पाठ "
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "पाठ संजीवन"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "आयाम रेखा"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "संबंधक"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "संरेखण"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/mai/sfx2/messages.po b/source/mai/sfx2/messages.po
index d6ffab6bcc5..c6bfbca1436 100644
--- a/source/mai/sfx2/messages.po
+++ b/source/mai/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1613,376 +1613,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाबू"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/mai/svtools/messages.po b/source/mai/svtools/messages.po
index 771fff22d59..5940bfca53e 100644
--- a/source/mai/svtools/messages.po
+++ b/source/mai/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2400,16 +2400,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "सामग्री नहि बनाएल जाए सकल."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "फाइलनाम लक्ष्य फाइल सिस्टमक लेल बड़ पैघ अछि."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "इनपुट वाक्यरचना अवैध अछि."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"एकटा %PRODUCTNAME %PRODUCTVERSION फाइल प्रारूपमे दस्तावेज सहेजू."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "दस्तावेजक अधिकतम सँख्या जकरा एकबेरमे खोलल जाए सकैछ पहुँच गेल. अहाँकेँ एकटा अथवा बेसी दस्तावेजसभकेँ बन्न करै पड़त अहाँकेँ नवीन दस्तावेज खोलबाक पहिने."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2482,43 +2490,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "अमान्य आँकड़ा नमाइ"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "प्रकार्य संभव नहि अछि: मार्गमे वर्तमान निर्देशिका सम्मिलित अछि. "
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "प्रकार्य सँभव नहि अछि: युक्ति (ड्राइव) समरूप नहि अछि."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "युक्ति (ड्राइव) तैआर नहि अछि."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "प्रकार्य नहि सँभव अछि: लेखनाइ सँरक्षित."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2526,47 +2534,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सामान्य OLE त्रुटि."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "वस्तुक अखनका अवस्थामे काजकेँ पूर्ण नहि कए सकैत अछि."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "वस्तु केओ काज करबामे असमर्थ अछि."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ई काजकेँ वस्तु समर्थन नहि दैत अछि."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/mai/svx/messages.po b/source/mai/svx/messages.po
index 1f7ad80050c..ef82b3af10c 100644
--- a/source/mai/svx/messages.po
+++ b/source/mai/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Maithili <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/mai/>\n"
@@ -10286,134 +10286,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10422,19 +10472,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/mai/sw/messages.po b/source/mai/sw/messages.po
index 9647dead824..f2c1f4af680 100644
--- a/source/mai/sw/messages.po
+++ b/source/mai/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3084,9 +3084,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10858,38 +10858,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16934,59 +16940,59 @@ msgid "Frame"
msgstr "फ्रेम"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "विकल्पसभ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "लपेटू (~W)"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरलिंक"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "किनारसभ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
#, fuzzy
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "कॉलम सभ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मॉक्रो"
@@ -29846,46 +29852,46 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "स्थिति"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एशियन लेआउट"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "उभारब"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "किनारसभ"
@@ -29897,88 +29903,88 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "रूपरेखा"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "छवि"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "स्थिति"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29991,114 +29997,114 @@ msgid "Paragraph Style"
msgstr "(अनुच्छेद शैली: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "सँरेखण "
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फ़ॉन्ट"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फ़ॉन्ट प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "स्थिति"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एशियन लेआउट"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "उभारब"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टैब"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "बड़ संप्रतीक सभकेँ हटाबू"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "किनारसभ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "स्थिति (~C)"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30111,58 +30117,58 @@ msgid "Frame Style"
msgstr "ढांचा शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "प्रकार"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "विकल्पसभ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "लपेटू (~W)"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "किनारसभ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
#, fuzzy
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "कॉलम सभ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मॉक्रो"
@@ -30181,64 +30187,64 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पृष्ठ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पारदर्शिता"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "शीर्ष टीका"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "पाद टीका"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "किनारसभ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
#, fuzzy
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "कॉलम सभ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
#, fuzzy
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "पाद टिप्पणी"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/mk/cui/messages.po b/source/mk/cui/messages.po
index ca69510a612..5e3e0e4e437 100644
--- a/source/mk/cui/messages.po
+++ b/source/mk/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Macedonian <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/mk/>\n"
@@ -2583,10 +2583,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 5dc58e4c0bf..0be0159c953 100644
--- a/source/mk/helpcontent2/source/text/shared/00.po
+++ b/source/mk/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index 60b23d63fee..6b1daa829aa 100644
--- a/source/mk/helpcontent2/source/text/shared/01.po
+++ b/source/mk/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:45+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Macedonian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/mk/>\n"
@@ -23453,14 +23453,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Организатор"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23471,14 +23471,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index 740b9d2fa00..becac6f8f72 100644
--- a/source/mk/helpcontent2/source/text/shared/optionen.po
+++ b/source/mk/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/mk/helpcontent2/source/text/swriter/01.po b/source/mk/helpcontent2/source/text/swriter/01.po
index c0fa502a311..5d7adbf7068 100644
--- a/source/mk/helpcontent2/source/text/swriter/01.po
+++ b/source/mk/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/mk/helpcontent2/source/text/swriter/guide.po b/source/mk/helpcontent2/source/text/swriter/guide.po
index f419d27fe01..777ac2283df 100644
--- a/source/mk/helpcontent2/source/text/swriter/guide.po
+++ b/source/mk/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Во листата на стилови на страница со десното копче на глушецот кликнете на „Лева страница“ и изберете <emph>Измени</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Кликнете на ливчето <emph>Организатор</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Можете да користите различни заглавија и подножја на различни страници во вашиот документ, сѐ додека страниците користат различни стилови на страница. $[officename] нуди неколку претходно дефинирани стилови на страници, како што се <emph>Прва страница</emph>, <emph>Лева страница</emph> и <emph>Десна страница</emph>, а можете да креирате и сопствен стил на страница."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Кликнете со десното копче од глушецот на „Десна страница“ во листата на стилови на страница и изберете <emph>Измени</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Во дијалогот <emph>Стилови на страница</emph> кликнете на јазичето <emph>Заглавие</emph>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Изберете<emph> Активирај заглавие</emph> и кликнете на јазичето <emph>Организатор</emph>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Во полето <emph>Следен стил </emph>изберете „Лева страница“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Во дијалогот <emph>Стилови на страница</emph> кликнете на јазичето <emph>Заглавие</emph>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Изберете<emph> Активирај заглавие</emph> и кликнете на јазичето <emph>Организатор</emph>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Во полето <emph>Следен стил</emph> изберете „Десна страница“."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Select <emph>Page break</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "In the <emph>Style </emph>box, select a page style that uses the page background."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "An <emph>automatic page break</emph> appears at the end of a page when the Page Style has a different \"next style\"."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Right-click, and choose <emph>New</emph>."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/mk/sc/messages.po b/source/mk/sc/messages.po
index 1a6323731a9..f711e0812a4 100644
--- a/source/mk/sc/messages.po
+++ b/source/mk/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14544,14 +14544,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14777,14 +14778,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23730,91 +23732,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24435,103 +24437,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Без раб"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24571,50 +24476,50 @@ msgid "Format Cells"
msgstr "Форматирај ќелија"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Број"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Фонт"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Ефекти на фонт"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Порамнување"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Рабови"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Подлога"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28840,44 +28745,44 @@ msgid "Page Style"
msgstr "Стил на страница"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Страници"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Рабови"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Подлога"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Заглавие"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Подножје"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Лист"
@@ -28921,56 +28826,56 @@ msgid "Cell Style"
msgstr "Стилови на ќелија"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Број"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Фонт"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Ефекти на фонт"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Порамнување"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Рабови"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Подлога"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/mk/sd/messages.po b/source/mk/sd/messages.po
index ccbba216aeb..cc4c7301555 100644
--- a/source/mk/sd/messages.po
+++ b/source/mk/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9834,99 +9834,99 @@ msgid "_Standard"
msgstr "Стандардно"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Линија"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Област"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Сенчање"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Проѕирност"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Фонт"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Ефекти на фонт"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Текст"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Анимација на текст"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Линија за димензија"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Поврзувач"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Порамнување"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/mk/sfx2/messages.po b/source/mk/sfx2/messages.po
index ed696ec9c2d..09190a1f8da 100644
--- a/source/mk/sfx2/messages.po
+++ b/source/mk/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1621,376 +1621,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Отстрани"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/mk/svtools/messages.po b/source/mk/svtools/messages.po
index 2e045372981..e966805a794 100644
--- a/source/mk/svtools/messages.po
+++ b/source/mk/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2401,16 +2401,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2418,37 +2426,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Содржината не може да се креира."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Името на датотеката е предолго за целниот датотечен систем."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Синтаксата за внес е невалидна."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2458,19 +2466,19 @@ msgstr ""
"Зачувајте го документот во формат на датотека од %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Беше достигнат максималниот број на документи што може да бидат отворени истовремено. Треба да затворите еден или повеќе документи пред да може да отворите нов документ."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Не можев да креирам резервна копија."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2483,43 +2491,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Невалидна должина на податоците."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Функцијата е невозможна: патеката ја содржи тековната папка."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Функцијата е невозможна: уредот (дискот) не е идентичен."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Уредот (дискот) не е подготвен."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Функцијата е невозможна: заштитено од запишување."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2527,47 +2535,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Општа OLE-грешка."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Дејството не може да се изврши во тековната состојба на објектот."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Објектот не поддржува никакви дејства."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Објектот не го поддржува ова дејство."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/mk/svx/messages.po b/source/mk/svx/messages.po
index a6588136f57..4a0400b6912 100644
--- a/source/mk/svx/messages.po
+++ b/source/mk/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10268,134 +10268,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10404,19 +10454,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/mk/sw/messages.po b/source/mk/sw/messages.po
index d39960ce835..3390be3102a 100644
--- a/source/mk/sw/messages.po
+++ b/source/mk/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3086,9 +3086,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10849,38 +10849,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16904,56 +16910,56 @@ msgid "Frame"
msgstr "Рамка"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Опции"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~Пренеси текст"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Хиперврска"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Рабови"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Област"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Проѕирност"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Колони"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Макро"
@@ -29781,44 +29787,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Фонт"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Ефекти на фонт"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Позиција"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr ""
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Означување"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Рабови"
@@ -29830,86 +29836,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Контура"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Слика"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Позиција"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29922,112 +29928,112 @@ msgid "Paragraph Style"
msgstr "(Стил на пасус: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Порамнување"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Фонт"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Ефекти на фонт"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Позиција"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr ""
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Означување"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Табулатори"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Украсни почетни букви"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Област"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Проѕирност"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Рабови"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Услов"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30040,56 +30046,56 @@ msgid "Frame Style"
msgstr "Стил на рамка"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Тип"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Опции"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Пренеси текст"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Област"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Проѕирност"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Рабови"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Колони"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Макро"
@@ -30108,61 +30114,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Страница"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Област"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Проѕирност"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Заглавие"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Подножје"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Рабови"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Колони"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Фуснота"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/ml/cui/messages.po b/source/ml/cui/messages.po
index 0446b066f68..af56010559f 100644
--- a/source/ml/cui/messages.po
+++ b/source/ml/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2571,10 +2571,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ml/sc/messages.po b/source/ml/sc/messages.po
index ae95dc61165..5eeefd9ccce 100644
--- a/source/ml/sc/messages.po
+++ b/source/ml/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14528,14 +14528,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14761,14 +14762,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23711,91 +23713,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24415,104 +24417,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "അതിരില്ല"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "ഔട്ട്ലൈന്‍ - അതിരുകള്‍"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24551,49 +24455,49 @@ msgid "Format Cells"
msgstr "സെല്ലുകള്‍ ഫോര്‍മാറ്റ് ചെയ്യുക"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "സംഖ്യകള്‍"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "അക്ഷര‍സഞ്ചയം"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "അക്ഷരസഞ്ചയ പ്രഭാവങ്ങള്‍"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "അലൈന്‍മെന്റ്"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "ഏഷ്യന്‍ ടോപ്പോഗ്രഫി"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "അതിരുകള്‍"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "പശ്ചാത്തലം"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "സെല്സംരക്ഷണം"
@@ -28818,43 +28722,43 @@ msgid "Page Style"
msgstr "പേജിന്റെ ശൈലി"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "താള്‍"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "അതിരുകള്‍"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "പശ്ചാത്തലം"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ഹെഡ്ഡര്"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr " അടിക്കുറിപ്പ്"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ഷീറ്റ്"
@@ -28898,55 +28802,55 @@ msgid "Cell Style"
msgstr "സെല് ശൈലി"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "സംഖ്യകള്‍"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "അക്ഷര‍സഞ്ചയം"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "അക്ഷരസഞ്ചയ പ്രഭാവങ്ങള്‍"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "അലൈന്‍മെന്റ്"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ഏഷ്യന്‍ ടോപ്പോഗ്രഫി"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "അതിരുകള്‍"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "പശ്ചാത്തലം"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "സെല്സംരക്ഷണം"
diff --git a/source/ml/sd/messages.po b/source/ml/sd/messages.po
index 0f58c7a2223..11c0c604529 100644
--- a/source/ml/sd/messages.po
+++ b/source/ml/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9826,107 +9826,107 @@ msgid "_Standard"
msgstr "നിലവാരം"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "രേഖ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "വിസ്താരം"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "നിഴലിക്കുക"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparency"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ഫോണ്ഡ്"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "അക്ഷരസഞ്ചയ പ്രഭാവങ്ങള്‍"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ഇന്ററ്റുകളും അകലവും"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
#, fuzzy
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ടെക്സ്റ്റ്"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ടെക്സ്റ്റ് ആനിമേഷന്"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "പരിമാണരേഖ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
#, fuzzy
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "കണക്ടര്"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ക്രമീകരണം"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ഏഷ്യന്‍ ടൈപ്പോഗ്രഫി"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "റ്റാബൂകള്‍"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/ml/sfx2/messages.po b/source/ml/sfx2/messages.po
index 7308a349a83..77f6fef0319 100644
--- a/source/ml/sfx2/messages.po
+++ b/source/ml/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1616,376 +1616,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "നീക്കം ചെയ്യുക"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ml/svtools/messages.po b/source/ml/svtools/messages.po
index 06b24133eae..241a81ec66b 100644
--- a/source/ml/svtools/messages.po
+++ b/source/ml/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2402,10 +2402,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1)-ലേക്കുള്ള ഇന്റര്‍നെറ്റ് കണക്ഷന്‍ സ്ഥാപിക്കുവാനായില്ല."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2413,7 +2421,7 @@ msgstr ""
".സര്‍വര്‍ പിശക് സന്ദേശം: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2423,37 +2431,37 @@ msgstr ""
".സര്‍വര്‍ പിശക് സന്ദേശം: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "സാധാരണ ഇന്റര്‍നെറ്റ് പിശക് ഉണ്ടായിരിക്കുന്നു."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ആവശ്യപ്പെട്ട ഇന്റര്‍നെറ്റ് ഡേറ്റ കാഷില്‍ ലഭ്യമല്ല. കൂടാതെ, ഓണ്‍ലൈന്‍ മോഡ് സജ്ജമല്ലാത്തതിനാല്‍ അതു് ട്രാന്‍സ്‌മിറ്റ് ചെയ്യുവാനും സാധ്യമല്ല."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ഉള്ളടക്കം സൃഷ്ടിക്കാന് കഴിയുന്നില്ല"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ഫയലിന്റെ പേര‍് ലക്ഷ്യമായ ഫയല് സിസ്റ്റത്തിനേക്കാള് വലുതാണ‍്"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ഇന്പുട്ട് സിന്ടാക്സ് അസാധുവാണ‌്"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2463,19 +2471,19 @@ msgstr ""
"ദയവായി ഡോക്കുമെന്റ് %PRODUCTNAME %PRODUCTVERSION ഫോര്‍മാറ്റില്‍ സുക്ഷിക്കുക."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ഒരേ സമയത്തു് തുറക്കുവാന്‍ സാധ്യമാകുന്ന രേഖകളുടെ എണ്ണം കവിഞ്ഞിരിക്കുന്നു. അതിനാല്‍ പുതിയ ഒരു രേഖ തുറക്കുന്നതിനു് മുമ്പായി ഓന്നോ അതിലധികമോ രേഖ അടയ്ക്കുക."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ബാക്കപ്പെടുക്കുവാന്‍ സാധ്യമായില്ല."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2495,43 +2503,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "അസാധുവായ ഡേറ്റാ വിസ്താരം"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ഫങ്ഷന് സാദ്ധ്യമല്ല : മാര്ഗ്ഗത്തില് ഇപ്പോഴുള്ള ഡയറക്ട്രിയുണ്ട്."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ഫങ്ഷന് സാദ്ധ്യമല്ല : ഉപകരണം (ഡ്രൈവ്) യോജിക്കുന്നതല്ല"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ഉപകരണം (ഡ്രൈവ്) തയ്യാറല്ല"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ഫങ്ഷന് സാദ്ധ്യമല്ല : എഴുതുന്നതിന‍് സംരക്ഷണമുണ്ട്"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2541,47 +2549,47 @@ msgstr ""
"പങ്കിടുന്ന മോഡ് ആദ്യം നിഷ്ക്രിയമാക്കുന്നു."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "സാധാരണ ഒഎല്‍ഇ പിശക്."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "വസ്തുവിന്റെ ഇപ്പോഴത്തെ അവസ്ഥയില് പ്രവൃത്തി ചെയ്യാന് കഴിയുന്നില്ല"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ഒബ്ജക്ട് ഒരു പ്രവര്‍ത്തനങ്ങളും പിന്തുണയ്ക്കുന്നില്ല."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ഒബ്ജക്ട് ഈ പ്രവര്‍ത്ത പിന്തുണയ്ക്കുന്നില്ല."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/ml/svx/messages.po b/source/ml/svx/messages.po
index 53767d1ee87..ef7ad892538 100644
--- a/source/ml/svx/messages.po
+++ b/source/ml/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Malayalam <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/ml/>\n"
@@ -10214,134 +10214,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10350,19 +10400,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ml/sw/messages.po b/source/ml/sw/messages.po
index 2c714ec92de..cdec4ac5e0b 100644
--- a/source/ml/sw/messages.po
+++ b/source/ml/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3074,9 +3074,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10839,38 +10839,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16817,57 +16823,57 @@ msgid "Frame"
msgstr "ഫ്രെയിം"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ഐച്ഛികങ്ങള്‍"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "റാപ്"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ഹൈപ്പര്‌ലിങ്ക്"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "അതിരുകള്"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "വിസ്താരം"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "സ്തംഭം"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "മാക്രോ"
@@ -29607,44 +29613,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "അക്ഷരസഞ്ചയം"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "അക്ഷരസഞ്ചയ പ്രഭാവങ്ങള്‍"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "സ്ഥാനം"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ഏഷ്യന്‍ ശൈലി"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "എടുത്തുകാട്ടുന്നു"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "അതിരുകള്"
@@ -29656,85 +29662,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ബാഹ്യരേഖ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ചിത്രം"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "സ്ഥാനം"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29748,113 +29754,113 @@ msgid "Paragraph Style"
msgstr "(ഖണ്ഡിക ശൈലി: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ഇന്ററ്റുകളും അകലവും"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ക്രമീകരണം"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "ടെക്സ്റ്റ് ഒഴുക്ക്"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
#, fuzzy
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "ഏഷ്യന്‍ ടൈപ്പോഗ്രഫി"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "അക്ഷരസഞ്ചയം"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "അക്ഷരസഞ്ചയ പ്രഭാവങ്ങള്‍"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "സ്ഥാനം"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ഏഷ്യന്‍ ശൈലി"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "എടുത്തുകാട്ടുന്നു"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "റ്റാബൂകള്‍"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "വലിയ അക്ഷരം മാറ്റുക"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "വിസ്താരം"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparency"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "അതിരുകള്"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~അവസ്ഥ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29867,57 +29873,57 @@ msgid "Frame Style"
msgstr "ഫ്രെയിമിന്റെ ശൈലി"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "തരം"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ഐച്ഛികങ്ങള്‍"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "റാപ്"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "വിസ്താരം"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparency"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "അതിരുകള്"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "സ്തംഭം"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "മാക്രോ"
@@ -29936,63 +29942,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "താള്‍"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "വിസ്താരം"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparency"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "തലക്കെട്ട്"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
#, fuzzy
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "അടിക്കുറിപ്പു്"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "അതിരുകള്"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "സ്തംഭം"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "അടിക്കുറിപ്പ്"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/mn/cui/messages.po b/source/mn/cui/messages.po
index b52cc43dfd0..f31f30f0e3c 100644
--- a/source/mn/cui/messages.po
+++ b/source/mn/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-22 01:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/mn/>\n"
@@ -2560,10 +2560,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "CSV файлыг одоогийн хүснэгтэнд шинэ хуудас байдлаар файлаас Хуудас ▸ хуудас файлаас ашиглан нээнэ үү."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/mn/sc/messages.po b/source/mn/sc/messages.po
index 9399d9f73ca..86729554803 100644
--- a/source/mn/sc/messages.po
+++ b/source/mn/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-25 15:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/mn/>\n"
@@ -14422,14 +14422,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14655,14 +14656,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23621,91 +23623,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24325,103 +24327,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Хүрээгүй"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24461,53 +24366,53 @@ msgid "Format Cells"
msgstr "Нүд хэлбэржүүлэх"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Тоо"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Фонт"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Фонтын эффект"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
#, fuzzy
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Ази бичгийн хэлбэр"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Хүрээнүүд"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Дэвсгэр"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28753,45 +28658,45 @@ msgid "Page Style"
msgstr "Хуудасны загвар"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Хуудаснууд"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Хүрээнүүд"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Дэвсгэр"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Толгой"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Хөл"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Хүснэгт"
@@ -28837,59 +28742,59 @@ msgid "Cell Style"
msgstr "Нүдний загвар"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Тоо"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Фонт"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Фонтын эффект"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
#, fuzzy
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ази бичгийн хэлбэр"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Хүрээнүүд"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Дэвсгэр"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/mn/sd/messages.po b/source/mn/sd/messages.po
index 7186f46c6d6..fe0a3d6236c 100644
--- a/source/mn/sd/messages.po
+++ b/source/mn/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-25 15:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/mn/>\n"
@@ -9825,104 +9825,104 @@ msgid "_Standard"
msgstr "Стандарт"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Шулуун"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Муж"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Shading"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Тунгалаг"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Фонт"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Фонтын эффект"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Таталт ба Алслалт"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Бичвэр"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Бичвэрийн хөдөлгөөн"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Хэмжээсийн шугам"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Холбогч"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Ази бичгийн хэлбэр"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Табулатор"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/mn/sfx2/messages.po b/source/mn/sfx2/messages.po
index 41ce49ae9f1..4fc61de47fa 100644
--- a/source/mn/sfx2/messages.po
+++ b/source/mn/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2021-11-25 15:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/mn/>\n"
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Саарал дэгжин"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Зөгийн үүр"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Цэнхэр урсмал"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Шарилжийн төлөвлөгөө"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Чихэр"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Шар Санал"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Анхаарлаа төвлөрүүл"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ойн шувуу"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Шинэхэн"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Урам зориг"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Гэрэл"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Өсөн нэмэгдэж буй эрх чөлөө"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Метрополис"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Шөнийн цэнхэр"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Байгаль"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Харандаа"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Төгөлдөр хуур"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Портфолио"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Дэвшил"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Нар жаргах"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Дээр үеийн загварын хуулбар"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Тодорхой"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "Намтар (CV)"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Намтар (Resume)"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Үндсэн"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Орчин үеийн"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Орчин үеийн бизнесийн захидал sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Орчин үеийн бизнесийн захидлын serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Логотой бизнес карт"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Энгийн"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Устгах"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Бүгдийг цэвэрлэ"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Нууц үгний урт"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-дээр дарж холбоосоо нээнэ үү: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Холбоосыг нээх бол дарна уу: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(ашигласан: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/mn/svtools/messages.po b/source/mn/svtools/messages.po
index 1d3ce95421a..9fa7ba5586b 100644
--- a/source/mn/svtools/messages.po
+++ b/source/mn/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-22 01:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/mn/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) руу интернет холболт хийж чадсангүй."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Серверийн алдааны мэдээлэл: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Серверийн алдааны мэдээлэл: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Интернетийн ерөнхий алдаа гарсан байна."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Хүссэн Интернэт дата нь кэш дээр байхгүй бөгөөд Онлайн горим идэвхжээгүй тул дамжуулах боломжгүй байна."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Агуулгыг үүсгэх боломжгүй."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Файлын нэр нь товлосон файлын системд хэт урт байна."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Оролтын дүрэм хүчингүй."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Баримтыг %PRODUCTNAME %PRODUCTVERSION файлын форматаар хадгална уу."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Нэгэн зэрэг нээлттэй байх баримтын хамгийн их тооны хязгаарт хүрчээ. Та шинэ баримт нээхийг хүсэж байвал нэг эсвэл хэд хэдэн баримт хаах хэрэгтэй."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Нөөц хуулбар үүсгэж чадсангүй."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Өгөгдлийн хүчингүй урт."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Функц боломжгүй: зам нь идэвхтэй хавтас агуулж байна."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Функц боломжгүй: төхөөрөмж (хөтлөгч) ижил биш байна."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Төхөөрөмж (хөтлөгч) бэлэн биш байна."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Шалгах тоо (checksum) буруу байна."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Функц боломжгүй: бичихээс хамгаалагдсан."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Эхлээд хуваалцах горимыг идэвхгүйжүүлнэ үү."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "$(ARG1) (мөр,багана) байрлалд файлын форматын алдаа илэрлээ."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Энэ файлын форматын шүүлтүүрийг тохиргоонд идэвхгүй болгосон байна. Системийн администратортойгоо холбогдоно уу."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Ерөнхий OLE алдаа."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Энэ үйлдлийг объектын одоогийн байдалд гүйцэтгэх боломжгүй."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Объект нь ямар ч үйлдлийг дэмжихгүй."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Объект энэ үйлдлийг дэмждэггүй."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) обьектийг идэвхжүүлэх үед"
diff --git a/source/mn/svx/messages.po b/source/mn/svx/messages.po
index ea1a0c1a4d3..961a1b0235d 100644
--- a/source/mn/svx/messages.po
+++ b/source/mn/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2021-11-25 15:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/mn/>\n"
@@ -10192,134 +10192,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10328,19 +10378,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/mn/sw/messages.po b/source/mn/sw/messages.po
index 85c3e0dfd0f..824739cc078 100644
--- a/source/mn/sw/messages.po
+++ b/source/mn/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 13:39+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-28 11:46+0200\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Mongolian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/mn/>\n"
"Language: mn\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Жагсаалт 5 Үргэлжлэл"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Толгой ба хөл хэсэг"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10589,38 +10589,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16421,55 +16427,55 @@ msgid "Frame"
msgstr "Хүрээ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Байршил ба хэмжээ"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Сонголтууд"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Эргэлт"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Гипер холбоос"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Хүрээ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Муж"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Ил тод байдал"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Баганууд"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Макро"
@@ -29083,46 +29089,46 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Фонт"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Фонтын эффект"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr " Байрлал"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Ази формат"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Тодруулж байна"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Хүрээ"
@@ -29134,87 +29140,87 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Гадаад шугам"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Зураг"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr " Байрлал"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29228,116 +29234,116 @@ msgid "Paragraph Style"
msgstr "(Параграфын хэлбэр: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Таталт ба Алслалт"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Бичвэр Урсгал"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
#, fuzzy
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Ази бичгийн хэлбэр"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Фонт"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Фонтын эффект"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr " Байрлал"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Ази формат"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Тодруулж байна"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Табулатор"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Шад үсэг"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Муж"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Тунгалаг"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Хүрээ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Нөхцөл"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29350,60 +29356,60 @@ msgid "Frame Style"
msgstr "Блокийн хэлбэр"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Төрөл"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Тохируулга"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Нугалах"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Муж"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Тунгалаг"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Хүрээ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
#, fuzzy
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Багана"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Макро"
@@ -29422,67 +29428,67 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
#, fuzzy
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Хуудас"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Муж"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Тунгалаг"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Толгой"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
#, fuzzy
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Хөл"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Хүрээ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
#, fuzzy
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Багана"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Зүүлт"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/mni/cui/messages.po b/source/mni/cui/messages.po
index 709aa1d097d..e4fc4ec72af 100644
--- a/source/mni/cui/messages.po
+++ b/source/mni/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Manipuri <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/mni/>\n"
@@ -2618,10 +2618,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/mni/sc/messages.po b/source/mni/sc/messages.po
index 5fea8d3ee08..b6235037c5d 100644
--- a/source/mni/sc/messages.po
+++ b/source/mni/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14621,14 +14621,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14855,14 +14856,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23832,91 +23834,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24537,103 +24539,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ফিবান লৈতে"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24673,53 +24578,53 @@ msgid "Format Cells"
msgstr "ফোর্মেত সেলশিং"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "মশিং"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
#, fuzzy
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ফুত"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
#, fuzzy
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ফোন্তকী কান্নবশিং"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "পরেং চান্নহনবা"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "এসিযান তাইপোগ্রাফি"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
#, fuzzy
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "হৌরকফম"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28961,45 +28866,45 @@ msgid "Page Style"
msgstr "লমায় মওং"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "লমায়শিং"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
#, fuzzy
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "হৌরকফম"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "হেদর"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ফুতর"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "সীত"
@@ -29043,59 +28948,59 @@ msgid "Cell Style"
msgstr "কাখলগী মওংশিং"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "মশিং"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
#, fuzzy
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ফুত"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
#, fuzzy
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ফোন্তকী কান্নবশিং"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "পরেং চান্নহনবা"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এসিযান তাইপোগ্রাফি"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
#, fuzzy
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "হৌরকফম"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/mni/sd/messages.po b/source/mni/sd/messages.po
index 940005e6cb0..c3440fe0b8f 100644
--- a/source/mni/sd/messages.po
+++ b/source/mni/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9841,98 +9841,98 @@ msgid "_Standard"
msgstr "স্তেন্দর্দ"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "লাইন"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "মফম"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "মচু শংলিবা(মমি তাহল্লিবা)"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "নুং-পাল ফাওনা উবা ঙম্বা"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ফোন্ত"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ফোন্তকী কান্নবশিং"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ইন্দেন্তস অমসুং স্পেসিং"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "<b>ടെക്സ്റ്റ്</b>"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "তেক্স এনিমেসন"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "দাইমেনসন তাকপা"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "মরি শম্নরিবা"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "পরেং চান্নহনবা"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "এসিযান তাইপোগ্রাফি"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "তেবশিং"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/mni/sfx2/messages.po b/source/mni/sfx2/messages.po
index 15e881d7314..c85541d30dd 100644
--- a/source/mni/sfx2/messages.po
+++ b/source/mni/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1626,376 +1626,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "লৌথোকপা"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/mni/svtools/messages.po b/source/mni/svtools/messages.po
index aadc2f15295..05717353b29 100644
--- a/source/mni/svtools/messages.po
+++ b/source/mni/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2402,16 +2402,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2419,37 +2427,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "হীরমশিং শেগত্পা ঙমদ্রে."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "পান্দম থম্লিবা ফাইল সিস্তেমগী ফাইলগী মমিংদু শাংমল্লে."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ইনপুত সিন্তেক্স অসি চতন্দ্রে."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2459,19 +2467,19 @@ msgstr ""
"চানবিদুনা দোকুমেন্ত অমা কনবিরো %PRODUCTNAME %PRODUCTVERSION ফাইল ফৰমেটত ছেভ কৰক."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "চপ মান্নবা মতম অমদা হাংদোকপা য়াবা খ্বাইদগী য়াম্বা দোকুমেন্ত মশিং য়ৌরে. অদোম্না অনৌবা দোকুমেন্ত অমা হাংদোক্ত্রিঙৈদা অমা নত্রগা অমদগী হেনবা দোকুমেন্তশিং লোনশিনবা দরকার লৈ."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr ""
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2484,43 +2492,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "চতন্দ্রবা দাতাগী অশাংবা"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "মথৌ তৌবা ওইথোক্তবা: লম্বীদা হৌজিক্কী দাইরেক্তোরি য়াওই."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "মথৌ তৌবা ওইথক্তবা: খুতলাই (দ্রাইভ) মান্নদে."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "খুতলাই (দ্রাইভ) শেম-শাদ্রি."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "মথৌ ওইথোক্তবা: ইবা থিংলে"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2528,47 +2536,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "মহৌশাগী ওইবা OLE অশোয়বা"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "পোত্শক্কী হৌজিক্কী ফিভমসিদা থবক্তু পাংথোকপা ঙমদ্রে."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "পোত্শক্তুনা থবক অমত্তা তেংবাংদে"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "পোত্শকনা মসিগী থবকসি তেংবাংদে"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/mni/svx/messages.po b/source/mni/svx/messages.po
index a95a74d12b8..8668bfb6cfa 100644
--- a/source/mni/svx/messages.po
+++ b/source/mni/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Manipuri <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/mni/>\n"
@@ -10297,134 +10297,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10433,19 +10483,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/mni/sw/messages.po b/source/mni/sw/messages.po
index 20f42604ed0..9c701543ab6 100644
--- a/source/mni/sw/messages.po
+++ b/source/mni/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3087,9 +3087,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10871,38 +10871,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16940,57 +16946,57 @@ msgid "Frame"
msgstr "ফ্রেম"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "অপাম্বশিং"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "কোয়শিনবা"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপরলিংক"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "মফম"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "নুং-পাল ফাওনা উবা ঙম্বা"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "কলমশিং"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "মেক্রো"
@@ -29843,45 +29849,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ফোন্ত"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
#, fuzzy
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ফোন্তকী কান্নবশিং"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "মফম"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "এসিযান লেআউত"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "হাইলাইত"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ফিবানশিং"
@@ -29893,86 +29899,86 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "মপান্থোংগী ওইবা শক্তম"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "মমি"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "মফম"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Customise"
@@ -29985,114 +29991,114 @@ msgid "Paragraph Style"
msgstr "(পেরেগ্ৰাফ স্তাইল: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ইন্দেন্তস অমসুং স্পেসিং"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "পরিং চান্নহনবা"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "তেক্স ফ্লো"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "এসিযান তাইপোগ্রাফি"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ফোন্ত"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
#, fuzzy
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ফোন্তকী কান্নবশিং"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "মফম"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "এসিযান লেআউত"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "হাইলাইত"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "তেবস"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "দ্রোপ কেপস"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "মফম"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "নুং-পাল ফাওনা উবা ঙম্বা"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~ফিভম"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30105,57 +30111,57 @@ msgid "Frame Style"
msgstr "ফ্রেমগী স্তাইল"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "মখল"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "অপাম্বশিং"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "কোয়শিনবা"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "মফম"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "নুং-পাল ফাওনা উবা ঙম্বা"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "কলমশিং"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "মেক্রো"
@@ -30174,63 +30180,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
#, fuzzy
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "পেজর"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "মফম"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "নুং-পাল ফাওনা উবা ঙম্বা"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "হেদর"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ফুতর"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ফিবানশিং"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "কলমশিং"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ফুতনোত"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/mr/cui/messages.po b/source/mr/cui/messages.po
index 30162823910..bba8269123f 100644
--- a/source/mr/cui/messages.po
+++ b/source/mr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2571,10 +2571,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/mr/sc/messages.po b/source/mr/sc/messages.po
index 788b794ce34..1090cde3c54 100644
--- a/source/mr/sc/messages.po
+++ b/source/mr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14516,14 +14516,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14749,14 +14750,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23667,91 +23669,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24365,104 +24367,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "सीमारेखा नाही"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "रपरेषा - किनार"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24501,49 +24405,49 @@ msgid "Format Cells"
msgstr "कप्पे रूपण"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "संख्या/क्रमांक"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फाँट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फाँटचे प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "एकरेषीय मांडणी करा"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "आशियाई टंकलेखन"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "सीमा"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "पार्श्वभूमी"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "कप्पा सुरक्षा"
@@ -28764,43 +28668,43 @@ msgid "Page Style"
msgstr "पृष्ठ शैली"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "पृष्ठ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "किनार"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "पार्श्वभूमी"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "शीर्षक"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "चरणओळ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "पृष्ठ"
@@ -28842,55 +28746,55 @@ msgid "Cell Style"
msgstr "कप्पा शैली"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "संख्या"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फाँट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फाँट प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "संरेषन"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियन टायपोग्राफि"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "किनार"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "पार्श्वभूमी"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "कप्पा सुरक्षा"
diff --git a/source/mr/sd/messages.po b/source/mr/sd/messages.po
index 62d8369755f..1371d122d60 100644
--- a/source/mr/sd/messages.po
+++ b/source/mr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9797,97 +9797,97 @@ msgid "_Standard"
msgstr "मानक (_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "रेघ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "छायांकन"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पारदर्शकता"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फाँट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फाँट प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "समास आणि मोकळी जागा"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "मजकूर"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "मजकूर चित्रचलन"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "आकारमान"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "कनेक्टर"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "संरेषन"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियन टायपोग्राफि"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "टॅब्ज"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/mr/sfx2/messages.po b/source/mr/sfx2/messages.po
index 4778b357c11..3328bfdb626 100644
--- a/source/mr/sfx2/messages.po
+++ b/source/mr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1622,376 +1622,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "काढून टाका"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/mr/svtools/messages.po b/source/mr/svtools/messages.po
index 021b8bafe55..6dc19e3624d 100644
--- a/source/mr/svtools/messages.po
+++ b/source/mr/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2401,10 +2401,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) सह इंटरनेट जोडणी स्थापित करणे अशक्य."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2412,7 +2420,7 @@ msgstr ""
"सर्व्हर त्रुटी संदेश: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2422,37 +2430,37 @@ msgstr ""
"सर्व्हर त्रुटी संदेश: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "सर्वसाधारण इंटरनेट त्रुटी आढळली."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "कॅशमध्ये विनंतीकृत इंटरनेट डाटा उपलब्ध नाही व ऑनलाईन मोड सक्रिय नसल्यामुळे प्रसारित करणे अशक्य आहे."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "विषय निर्माण करणे शक्य नाहीत."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "लक्ष्य फाइल सिस्टमसाठी धारिकेचे नाव खूप मोठे आहे."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "इन्पुट मांडणी अवैध आहे."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2462,19 +2470,19 @@ msgstr ""
" कृपया दस्तऐवज %PRODUCTNAME %PRODUCTVERSION या फाइल स्वरूपणात संचित करा."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "एकाच वेळी उघडायचे असलेल्या दस्तऐवजांच्या कमाल संख्येपर्यंत पोचलो आहे. नवीन दस्तऐवज उघडायच्या आधी आपणास एक किंवा अनेक दस्तऐवज बंद करावे लागतील."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "अगाऊ प्रत बनवू शकत नाही."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2494,43 +2502,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "अवैध डाटा लांबी."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "कार्य शक्य नाही: मार्गात चालू डिरेक्टरी समाविष्ट आहे."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "कार्य शक्य नाही: साधन (ड्राइव्ह) समान नाही."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "साधन (ड्राइव्ह) तयार नाही."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "कार्य शक्य नाही: राईट प्रोटेक्टेड."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2540,47 +2548,47 @@ msgstr ""
"शेअरींग मोड प्रथम निष्क्रीय करा."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "साधारण OLE त्रुटी."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "वस्तुच्या चालू स्थितीत कृती अमलात आणता येत नाही."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "वस्तु कोणत्याही कृतीशी समर्थित नाही."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "वस्तु ह्या कृतीशी समर्थित नाही."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/mr/svx/messages.po b/source/mr/svx/messages.po
index b6d4317a7db..fa001974b3b 100644
--- a/source/mr/svx/messages.po
+++ b/source/mr/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Marathi <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/mr/>\n"
@@ -10230,134 +10230,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10366,19 +10416,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/mr/sw/messages.po b/source/mr/sw/messages.po
index 13e70d05dcf..3ecdb7901bf 100644
--- a/source/mr/sw/messages.po
+++ b/source/mr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3063,9 +3063,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10839,38 +10839,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16743,55 +16749,55 @@ msgid "Frame"
msgstr "चौकट"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "पर्याय"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "घट्ट बसवा"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "दुवा"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "किनार"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पारदर्शकता"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "स्तंभ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "मॅक्रो"
@@ -29445,44 +29451,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फाँट"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फाँटचे प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ठिकाण"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एशियन मांडणी"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "लक्षवेधक"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "किनार"
@@ -29494,85 +29500,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "रूपरेषा"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "प्रतिमा"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ठिकाण"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "पसंतीचे करा"
@@ -29584,110 +29590,110 @@ msgid "Paragraph Style"
msgstr "परिच्छेद शैली"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "समास आणि मोकळी जागा"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "संरेषन"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "मजकूर प्रवाह"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "एशियन टायपोग्राफि"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फाँट"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फाँटचे प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ठिकाण"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एशियन मांडणी"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "लक्षवेधक"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "टॅब्ज"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "कॅप्स ड्रॉप करा"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पारदर्शकता"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "किनार"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "अट"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29699,55 +29705,55 @@ msgid "Frame Style"
msgstr "चौकट शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "प्रकार"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "पर्याय"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "घट्ट बसवा"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पारदर्शकता"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "किनार"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "स्तंभ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "मॅक्रो"
@@ -29765,61 +29771,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पृष्ठ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पारदर्शकता"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "शीर्षक"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "चरणओळ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "किनार"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "स्तंभ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "चरणटिप"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "मजकूर ग्रिड"
diff --git a/source/my/cui/messages.po b/source/my/cui/messages.po
index 41a03f6a0b4..33266cf12db 100644
--- a/source/my/cui/messages.po
+++ b/source/my/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2572,10 +2572,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/my/sc/messages.po b/source/my/sc/messages.po
index 893c04cec65..1fe78762b7f 100644
--- a/source/my/sc/messages.po
+++ b/source/my/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14656,14 +14656,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14890,14 +14891,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23826,91 +23828,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24531,103 +24533,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ဘောင်မခတ်ပါ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24665,49 +24570,49 @@ msgid "Format Cells"
msgstr "ဆဲလ်အကွက် စီစဉ်ဖွဲ့စည်းမှုပုံစံ"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "နံပါတ်များ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ဖောင့်"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ဖောက်အကျိုးသက်ရောက်မှုများ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "အာရှပုံနှိပ်လက်ရာ"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "နောက်ခံ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ဆဲလ်အကွက်ကာကွယ်မှု"
@@ -28934,43 +28839,43 @@ msgid "Page Style"
msgstr "စာမျက်နှာစတိုင်လ်"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "စာမျက်နှာ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "နောက်ခံ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "စာမျက်နှာ ထိပ်"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "စာမျက်နှာအောက်"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "စာရွက်လွှာ"
@@ -29014,55 +28919,55 @@ msgid "Cell Style"
msgstr "~ဆဲလ်အကွက်စတိုင်လ်များ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "နံပါတ်များ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ဖောင့်"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ဖောက်အကျိုးသက်ရောက်မှုများ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "အာရှပုံနှိပ်လက်ရာ"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "နောက်ခံ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ဆဲလ်အကွက်ကာကွယ်မှု"
diff --git a/source/my/sd/messages.po b/source/my/sd/messages.po
index 6d4c1691999..9ad626c4bb4 100644
--- a/source/my/sd/messages.po
+++ b/source/my/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9809,103 +9809,103 @@ msgid "_Standard"
msgstr "စံနှုန်း"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "လိုင်း"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ဧရိယာ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "အလင်း အမှောင် သွင်းခြင်း"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ထိုးဖေါက်မြင်နိုင်သော"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "စာလုံး"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ဖောက်အကျိုးသက်ရောက်မှုများ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "စာသား"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "စာသားသက်ဝင်လှုပ်ရှားမှု "
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "အတိုင်းအတာမျဉ်း"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "ချိတ်ဆက်သူ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "အာရှပုံနှိပ်လက်ရာ"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "အကွက်ခုန်များ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/my/sfx2/messages.po b/source/my/sfx2/messages.po
index a164342a588..d40dd3d5052 100644
--- a/source/my/sfx2/messages.po
+++ b/source/my/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1615,376 +1615,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ဖယ်ရှားပါ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/my/svtools/messages.po b/source/my/svtools/messages.po
index b1b02959d40..1d7c7ed1666 100644
--- a/source/my/svtools/messages.po
+++ b/source/my/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2394,10 +2394,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) သို့ အင်တာနက် ချိတ်ဆက်ထားမှုမရှိပါ။"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2405,7 +2413,7 @@ msgstr ""
"ဆာဗာမှ အမှာစာ ပေးပို့မှုအမှား $(ARG1)။"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2415,37 +2423,37 @@ msgstr ""
"ဆာဗာမှ အမှာစာ ပေးပို့မှုအမှား $(ARG1)။ "
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "အထွေထွေ အင်တာနက် အမှား ဖြစ်ပွားသည်"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "တောင်းဆိုသည့် အင်တာနက် အချက်အလက်များကို ကက်ခ်ျတွင် အသုံးမပြု နိုင်ပါ။ အွန်လိုင်းမှ ပေးပို့ဆက်သွယ်ထားခြင်းမရှိပါ။"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "မာတိကာများ မဖန်တီးနိုင်ပါ။"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ဦးတည်ထားသည့် ဖိုင်စနစ်အတွင်; ဖိုင်အမည်ရှည်လျားလွန်းသည်။"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "အချက်အလက်သွင်း ဝါကျထုံးဖွဲ့မှု မှားယွင်းသည်။"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2455,19 +2463,19 @@ msgstr ""
" %PRODUCTNAME %PRODUCTVERSION ဖိုင် စီစဉ်ဖွဲ့စည်းမှု ပုံစံတစ်ခုတွင် မှတ်တမ်းမှတ်ရာကို သိမ်းပေးပါ။"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ရောက်ရှိခဲ့သည့် တစ်ချိန်တည်းမှာပင် မှတ်တမ်းမှတ်ရာများ၏ အကြီးဆုံးနံပါတ်ကို ဖွင့်နိုင်သည်။ မှတ်တမ်းမှတ်ရာအသစ်တစ်ခုကို မဖွင့်မီ တစ်ခု (သို့) မြောက်များလှစွာသော မှတ်တမ်းမှတ်ရာများကို ပိတ်ရန်လိုအပ်သည်။"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "အရံဖိုင်အားမကူးယူနိုင်ပါ။"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2487,43 +2495,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "အချက်အလက်အရှည်မှန်ကန်မှုမရှိပါ။"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "လုပ်ဆောင်ချက်များမဖြစ်နိုင်ပါ။ လက်ရှိဒိုင်ယာထရီတွင်လမ်းကြောင်းပါဝင်သည်။"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "လုပ်ဆောင်ချက်များမဖြစ်နိုင်ပါ။ ကိရိယာ(ဒရိုက်)ထပ်တူမညီပါ။"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ကိရိယာ(ဒရိုက်)အဆင်သင့်မဖြစ်ပါ။"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "လုပ်ဆောင်ချက်များမဖြစ်နိုင်ပါ။ ရေးသားထည့်သွင်းမှု ကို ကာကွယ်ထားသည်။"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2533,47 +2541,47 @@ msgstr ""
"ဝေမျှအသုံးပြုသည့်နည်းလမ်းကို ပထမဦးစွာ ဆောင်ရွက်မှုမပြုပါ။"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "အထွေထွေ OLE အမှား"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "အရာ၀တ္ထု၏လက်ရှိအခြေအနေတွင် လုပ်ဆောင်ချက်များမပြု နိုင်ပါ"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "မည်သည့်လှုပ်ရှားမှုများကိုမဆိုအရာဝတ္ထုသည်မထောက်ပံ့ပါ"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ဤလုပ်ဆောင်ချက်သည်အရာဝတ္ထုကိုမထောက်ပံ့ပါ"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/my/svx/messages.po b/source/my/svx/messages.po
index d6fe465f2a3..2cb159cb239 100644
--- a/source/my/svx/messages.po
+++ b/source/my/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Burmese <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/my/>\n"
@@ -10226,134 +10226,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10362,19 +10412,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/my/sw/messages.po b/source/my/sw/messages.po
index 90d4d947d04..f127abb32fd 100644
--- a/source/my/sw/messages.po
+++ b/source/my/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3066,9 +3066,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10816,38 +10816,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16792,57 +16798,57 @@ msgid "Frame"
msgstr "ဘောင်"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ရွေးပိုင်ခွင့်များ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~စာသားပတ်နယ်ပယ်"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "တရားလွန် ကွင်းဆက်"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ဧရိယာ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ထိုးဖေါက်မြင်နိုင်သော"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ကော်လံအကန့်များ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "မက်ခရို"
@@ -29588,44 +29594,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ဖောင့်"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ဖောက်အကျိုးသက်ရောက်မှုများ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ရပ်တည်ချက်"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "အာရှအဆင်အပြင်"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "အသားပေးပါ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
@@ -29637,85 +29643,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "အပြင်လိုင်း"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ပုံရိပ်"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ရပ်တည်ချက်"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29729,112 +29735,112 @@ msgid "Paragraph Style"
msgstr "(စာပိုဒ်ပုံစံ- "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "စာသား စီးဆင်းမှု"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "အာရှပုံနှိပ်လက်ရာ"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ဖောင့်"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ဖောက်အကျိုးသက်ရောက်မှုများ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ရပ်တည်ချက်"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "အာရှအဆင်အပြင်"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "အသားပေးပါ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "အကွက်ခုန်များ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "စာပိုဒ်အစတွင်စာလုံးကြီးချဲ့ရေးသားခြင်း"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ဧရိယာ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ထိုးဖေါက်မြင်နိုင်သော"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~အခြေအနေ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29847,57 +29853,57 @@ msgid "Frame Style"
msgstr "ဘောင် စတိုင်လ်"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "အမျိုးအစား"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ရွေးပိုင်ခွင့်များ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~စာသားပတ်နယ်ပယ်"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ဧရိယာ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ထိုးဖေါက်မြင်နိုင်သော"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ကော်လံအကန့်များ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "မက်ခရို"
@@ -29916,62 +29922,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "စာမျက်နှာ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ဧရိယာ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ထိုးဖေါက်မြင်နိုင်သော"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ခေါင်းစီး"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "စာမျက်နှာအောက်"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "နယ်နိမိတ်များ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ကော်လံအကန့်များ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "အောက်ခြေမှတ်စု"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/nb/cui/messages.po b/source/nb/cui/messages.po
index a81873294a6..bf943071010 100644
--- a/source/nb/cui/messages.po
+++ b/source/nb/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-24 14:55+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/nb_NO/>\n"
"Language: nb\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Åpne en CSV-fil som et nytt ark i det gjeldende regnearket via ark ▸ Ark fra fil."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Du kan fortsette å skrive med standard formateringsattributter etter manuelt bruk av fet, kursiv eller understreket ved å trykke %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "minutt"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Lagre dokumentet automatisk i stedet"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Angir at kontorpakken lagrer selve det modifiserte dokumentet, i stedet for å opprette en midlertidig autogjenopprettingsversjon. Bruker samme tidsintervall som AutoRecovery gjør."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/nb/helpcontent2/source/text/scalc/01.po b/source/nb/helpcontent2/source/text/scalc/01.po
index c8ff7733740..817b2a8edd7 100644
--- a/source/nb/helpcontent2/source/text/scalc/01.po
+++ b/source/nb/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-17 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/nb_NO/>\n"
"Language: nb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1551362013.000000\n"
#. sZfWF
@@ -54601,7 +54601,7 @@ msgctxt ""
"par_id431716730587722\n"
"help.text"
msgid "Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present."
-msgstr ""
+msgstr "Hvilke som helst av de valgfrie argumentene kan utelates. Et valgfritt argument krever at alle foregående skilletegn er tilstede."
#. GAPGX
#: common_func_workdaysintl.xhp
@@ -57175,7 +57175,7 @@ msgctxt ""
"par_id711715953325962\n"
"help.text"
msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>. You can however, use the mode modifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> to force search for a case-sensitive match."
-msgstr ""
+msgstr "Funksjonen er alltid <emph>uavhengig av store og små bokstaver</emph>, uavhengig av innstillingen for <emph>Stilling mellom store og små bokstaver</emph> i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>% PRODUCTNAME - Innstillinger</menuitem></caseinline><defaultinline><menuitem>Verktøy - Alternativer</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"> <menuitem>%PRODUCTNAME Calc - Beregn</menuitem></link>. Du kan imidlertid bruke modusmodifikatoren <emph>(?-i)</emph> i <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link> for å tvinge frem søk etter en kasus- sensitiv match."
#. 8DbP2
#: func_aggregate.xhp
@@ -71746,7 +71746,7 @@ msgctxt ""
"par_id631708282151776\n"
"help.text"
msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) or regular expressions for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
-msgstr ""
+msgstr "XLOOKUP-funksjonen er en moderne og fleksibel erstatning for eldre funksjoner som <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, og <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP støtter omtrentlig og eksakt samsvar, jokertegn (* ?) eller regulære uttrykk for delvise treff, og oppslag i vertikale eller horisontale områder. XLOOKUP kan utføre et omvendt søk og tilbyr et raskt binært søkealternativ når du arbeider med store datasett."
#. TwFcc
#: func_xlookup.xhp
@@ -71845,7 +71845,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: et <link href=\"text/scalc/guide/wildcards.xhp\">jokertegn</link> samsvarer der tegnene *, ? og ~ har spesielle betydninger, eller samsvar med <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link>."
#. EqTBc
#: func_xlookup.xhp
@@ -71899,7 +71899,7 @@ msgctxt ""
"par_id551718627629229\n"
"help.text"
msgid "<emph>MatchType</emph> value 2 cannot be combined with binary search (<emph>SearchMode</emph> value <emph>2</emph> or <emph>-2</emph>)."
-msgstr ""
+msgstr "<emph>MatchType</emph> verdi 2 kan ikke kombineres med binært søk (<emph>SearchMode</emph> verdi <emph>2</emph> eller <emph>-2</emph>)."
#. fHQrZ
#: func_xlookup.xhp
@@ -72025,7 +72025,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>MatchType</emph>: (valgfritt) spesifiserer samsvarstypen. Verdier kan være:"
#. jmwqp
#: func_xmatch.xhp
@@ -72034,7 +72034,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>: eksakt samsvar (standard). Hvis <emph>Lookup</emph>-verdien ikke blir funnet, returnerer du #N/A-feilen."
#. 9SMUK
#: func_xmatch.xhp
@@ -72043,7 +72043,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: forsøk på eksakt samsvar. Hvis <emph>Lookup</emph>-verdien ikke finnes, returnerer du neste mindre element."
#. hwonA
#: func_xmatch.xhp
@@ -72052,7 +72052,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>-1</emph>: forsøk på eksakt samsvar. Hvis <emph>Lookup</emph>-verdien ikke finnes, returnerer du neste større element."
#. y5cx9
#: func_xmatch.xhp
@@ -72061,7 +72061,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: et <link href=\"text/scalc/guide/wildcards.xhp\">jokertegn</link> samsvarer der tegnene *, ? og ~ har spesielle betydninger, eller samsvar med <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link>."
#. WMXaP
#: func_xmatch.xhp
diff --git a/source/nb/helpcontent2/source/text/shared/00.po b/source/nb/helpcontent2/source/text/shared/00.po
index 915fd241933..ca86fce1c74 100644
--- a/source/nb/helpcontent2/source/text/shared/00.po
+++ b/source/nb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/nb_NO/>\n"
"Language: nb\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Tilbakestill til overordnet"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Verdiene for gjeldende fane er satt til de som finnes i den tilsvarende fanen i stilen spesifisert i \"Arv fra\" i Organisereren. I alle tilfeller, også når \"Arv fra\" er \"- Ingen -\", fjernes gjeldende tabulatorverdier spesifisert i \"Inneholder\"."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "På <menuitem>Verktøy</menuitem>-fanen klikker du på <menuitem>Alternativer</menuitem>-knappen, og åpner deretter <menuitem>Last inn/lagre - Generelt</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Velg fanen <emph>Format → Celler → Bakgrunn</emph></caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem> Format - Sidestil - Organiser </menuitem> -fanen."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem> Stiler - Rediger stil - Organiser </menuitem> -fanen."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem>Stiler - Administrer stiler</menuitem> - åpne kontekstmenyen for en oppføring og velg <menuitem>Ny/Rediger stil - Organiserer</menuitem>-fanen."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Velg kategorien <menuitem>Format - Sidestil - Organiserer</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem>Stiler - Administrer stiler</menuitem> - åpne kontekstmenyen for en oppføring og velg <menuitem>Ny/Rediger stil - Organiserer</menuitem>-fanen."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Velg <menuitem>Format - Stiler - Rediger Stil - Organiserer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem>Format - Stiler - Administrer stiler</menuitem> - åpne kontekstmenyen for en oppføring og velg <menuitem>Ny/Rediger stil - Organiserer</menuitem>-fanen."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Velg <menuitem> Lysbilde - Egenskaper - Side </menuitem> -fanen. </variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Velg <menuitem>Vis - Stiler</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>( F11)</keycode></defaultinline></switchinline> - åpne kontekstmenyen for en oppføring og velg kategorien <menuitem>Ny/Rediger stil - Organiserer</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/nb/helpcontent2/source/text/shared/01.po b/source/nb/helpcontent2/source/text/shared/01.po
index 801c30a1ffe..fbea7b607f8 100644
--- a/source/nb/helpcontent2/source/text/shared/01.po
+++ b/source/nb/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565212183.000000\n"
#. 3u8hR
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Tilbakestill bildet til den opprinnelige størrelsen.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organisering"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organisering; stiler</bookmark_value><bookmark_value>stiler; organisering</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organisering</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/nb/helpcontent2/source/text/shared/help.po b/source/nb/helpcontent2/source/text/shared/help.po
index d4019efd1eb..8df0e6a58e5 100644
--- a/source/nb/helpcontent2/source/text/shared/help.po
+++ b/source/nb/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-01-10 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/nb_NO/>\n"
"Language: nb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1554926263.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">LibreOffice Bøker</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/nb/helpcontent2/source/text/shared/optionen.po b/source/nb/helpcontent2/source/text/shared/optionen.po
index 8e1c976b8c4..89449e3a94a 100644
--- a/source/nb/helpcontent2/source/text/shared/optionen.po
+++ b/source/nb/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/nb_NO/>\n"
"Language: nb\n"
@@ -932,15 +932,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Lagre dokumentet automatisk i stedet"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9509,7 +9509,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>celler; viser rutenettlinjer (Calc)</bookmark_value> <bookmark_value>kantlinjer celler på skjermen (Calc)</bookmark_value> <bookmark_value>rutenett; vise linjer (Calc)</bookmark_value> <bookmark_value>farger; rutenettlinjer og celler (Calc)</bookmark_value> <bookmark_value>sideskift; vise (Calc)</bookmark_value> <bookmark_value>guider; vise (Calc)</bookmark_value> <bookmark_value>viser; null verdier (beregnet)</bookmark_value> <bookmark_value>null verdier; vise (Calc)</bookmark_value> <bookmark_value>tabeller i regneark; verdiutheving</bookmark_value> <bookmark_value>celler; formatering uten effekt (Calc)</bookmark_value> <bookmark_value>celler; fargelegging (beregning)</bookmark_value> <bookmark_value>ankre; viser (Calc)</bookmark_value> <bookmark_value>farger;restriksjon (Calc)</bookmark_value> <bookmark_value>tekstoverflyt i regnearkceller</bookmark_value> <bookmark_value>referanser; visning i farger (Calc)</bookmark_value> <bookmark_value>objekter; visning i regneark</bookmark_value> <bookmark_value>bilder; vises i Calc</bookmark_value> <bookmark_value>diagrammer; vise (Calc)</bookmark_value> <bookmark_value>tegneobjekter; viser (Calc)</bookmark_value> <bookmark_value>radoverskrifter; viser (Calc)</bookmark_value> <bookmark_value>kolonneoverskrifter; viser (Calc)</bookmark_value> <bookmark_value>rullelinjer; viser (Calc)</bookmark_value> <bookmark_value>arkfaner; viser</bookmark_value> <bookmark_value>faner; viser arkfaner</bookmark_value> <bookmark_value>konturer;kontursymboler</bookmark_value> <bookmark_value>celler;formelindikator i celle</bookmark_value> <bookmark_value>celler;formeltips</bookmark_value> <bookmark_value>viser; kommentar forfatterskap</bookmark_value> <bookmark_value>peker;tema</bookmark_value> <bookmark_value>peker;system</bookmark_value> <bookmark_value>finn alle;viser søkesammendrag</bookmark_value> <bookmark_value>celler;fremheving</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Kommentar indikator</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Hvis denne boksen er merket av, vil forfatteren av kommentaren og datoen og klokkeslettet da kommentaren ble laget vises i kommentarvinduet når du holder musepekeren over en kommentar."
#. tYLiN
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formel indikator</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9752,7 +9752,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Utheving Rad/Kolonne</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9779,7 +9779,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Rediger celleutheving</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Bildeanker></alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9833,7 +9833,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Referanser i farge</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9914,7 +9914,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Tematisert markør</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System-markør</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objekter/bilder"
#. DMhEf
#: 01060100.xhp
@@ -16196,7 +16196,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Velg <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Innstillinger</menuitem></caseinline><defaultinline><menuitem>Verktøy - Alternativer</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Avansert - Åpne ekspertkonfigurasjon</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16205,7 +16205,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "I kategorien <menuitem>Verktøy</menuitem> klikker du på <menuitem>Alternativer</menuitem>-knappen, og deretter <menuitem>%PRODUCTNAME - Avansert - Åpne ekspertkonfigurasjon</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/nb/helpcontent2/source/text/swriter/01.po b/source/nb/helpcontent2/source/text/swriter/01.po
index 8ddbc6744bc..1f3548d0565 100644
--- a/source/nb/helpcontent2/source/text/swriter/01.po
+++ b/source/nb/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-29 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563829490.000000\n"
#. sZfWF
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Direkte formatering overstyrer all formatering gitt av en tegnstil. For å fjerne direkte formatering fra et utvalg, bruk <menuitem>Format - Fjern direkte formatering</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Bruk delen <emph>Inneholder</emph> i arrangøren for å se egenskapene til tegnstilen."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/nb/helpcontent2/source/text/swriter/guide.po b/source/nb/helpcontent2/source/text/swriter/guide.po
index c4bd98c2784..13c9a12f1fc 100644
--- a/source/nb/helpcontent2/source/text/swriter/guide.po
+++ b/source/nb/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-27 09:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565212247.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Høyreklikk på Venstreside i listen over sidestiler, og velg <emph>Rediger</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Trykk på fanen <emph>Behandler</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Du kan bruke ulike topp- og bunntekster på ulike sider i dokumentet så lenge sidene bruker ulike sidestiler. $[officename] tilbyr flere forhåndslagede sidestiler, som for eksempel <emph>Første side</emph>,<emph>Venstreside</emph> og <emph>Høyreside</emph>. I tillegg til disse kan du også opprette en tilpasssa sidestil."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Du kan også bruke det speilvendte sideoppsettet hvis du vil legge til en topptekst i en sidestil som har forskjellige indre og ytre sidemarger. For å bruke dette alternativet på en sidestil, velg <item type=\"menuitem\">Format - Sidestil</item>, klikk på <item type=\"menuitem\">Side</item>-fanen og i <item type=\"menuitem\">Layoutinnstillinger</item>-området, velg \"Speilvendt\" i <item type=\"menuitem\">Sideoppsett</item>-boksen."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Høyreklikk avsnittsstilen «Høyreside» og velg <emph>Rediger</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "I dialogvinduet <item type=\"menuitem\">Sidestiler</item>, trykk på fanen <item type=\"menuitem\">Topptekst</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Velg <item type=\"menuitem\">Vis topptekst</item> og trykk på fanen <item type=\"menuitem\">Behandler</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "I boksen <item type=\"menuitem\">Neste stil</item> velger du «Venstreside»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "I dialogvinduet <emph>Stilbehandler</emph>, høyreklikk på «Venstreside» i listen med sidestiler og velg <emph>Rediger</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "I dialogvinduet <item type=\"menuitem\">Sidestiler</item>, trykk på fanen <item type=\"menuitem\">Topptekst</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Velg <item type=\"menuitem\">Vis topptekst</item> og trykk på fanen <item type=\"menuitem\">Behandler</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "I boksen <item type=\"menuitem\">Neste stil</item>, velg «Høyreside»."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11430,14 +11430,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Høyreklikk på et element i listen over sidestiler, og velg <emph>Ny</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "På fanen <emph>Behandler</emph>, skriv inn et navn på sidestilen i feltet <emph>Navn</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11583,14 +11583,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Velg <emph>Sideskift</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "I <item type=\"menuitem\">Stilboksen</item>, velg en sidestil som bruker sidebakgrunnen."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11862,14 +11862,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Et <emph>automatisk sideskift</emph> vises ved slutten av en side når den gjeldende sidestilen har en annen «Neste stil»."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "For eksempel har sidestilen \"Første side\" \"Standard sidestil\" som neste stil. For å se dette, trykk <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline> </switchinline> for å åpne <menuitem>Stiler</menuitem>-vinduet, klikk på <menuitem>Sidestiler</menuitem>-ikonet, høyreklikk på \"Første side\"-oppføringen. Velg <menuitem>Rediger stil</menuitem> fra hurtigmenyen. På <menuitem>Arrangør</menuitem>-fanen kan du se \"Neste stil\"."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12186,14 +12186,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Høyreklikk på en sidestil og velg <emph>Ny</emph>. Den nye sidestilen får alle egenskapene tilhørende den valgte sidestilen."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "På fanen <emph>Behandler</emph>, skriv inn et navn på sidestilen i feltet <emph>Navn</emph>, for eksempel «Mitt landskap»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12330,14 +12330,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "En sides stiler"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "En sidestil kan defineres for bare å omfatte en side. \"Første side\" -stilen er et eksempel. Du angir denne egenskapen ved å definere en annen sidestil til å være den \"neste stilen\", på kategorien <menuitem> Format - Sidestil - Organiserer </menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12366,14 +12366,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Manuelt innstilt område for en sidestil"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Sidestilen “Standard” angir ikke en annen “neste stil” på <menuitem> Format - Sidestil - Organiserer </menuitem> -fanen. I stedet er \"neste stil\" også satt til \"Standard\". Alle sidestiler som blir fulgt av samme sidestil, kan spenne over flere sider. Den nedre og øvre kant av sidestilområdet er definert av \"sideskift med stil\". Alle sidene mellom to \"sideskift med stil\" bruker samme sidestil."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12501,14 +12501,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Høyreklikk på et element i listen over sidestiler, og velg <emph>Ny</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "På fanen <emph>Behandler</emph> kan du skrive et navn på sidestilen i feltet <emph>Navn</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/nb/sc/messages.po b/source/nb/sc/messages.po
index 0b27764ec45..fc8f516f01b 100644
--- a/source/nb/sc/messages.po
+++ b/source/nb/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563900008.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Samsvarsmodus"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Nøyaktig match. Returnerer #N/A hvis ingen samsvarer. (misligholde).\n"
-"-1 - Nøyaktig match eller neste mindre element.\n"
-"1 - Nøyaktig match eller neste større element.\n"
-"2 - Match med jokertegn eller regulære uttrykk."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Match-modus"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Nøyaktig match. Returnerer #N/A hvis ingen samsvarer. (misligholde).\n"
-"-1 - Nøyaktig match eller neste mindre element.\n"
-"1 - Nøyaktig match eller neste større element.\n"
-"2 - Match med jokertegn eller regulære uttrykk."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Generell"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linje"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Område"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Skyggelegging"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Font"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Font Effekter"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og mellomrom"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimasjon"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensjonering"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Fliker"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Utheving"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Slett"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ingen kantlinjer"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle kantlinjer"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Utenfor kanterlinjer"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Fet bokskantlinje"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Fet Bunnkantlinje"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dobbel bunnkantlinje"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Topp og fet bunnkantinjer"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Topp og doble bunnkantlinjer"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Venstre kantlinje"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Høyre kantlinje"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Øverste kantlinje"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bunnkantlinje"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal opp kantlinje"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal ned kantlinje"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Topp og bunn kantlinjer"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Venstre og høyre kantlinjer"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Formater celler"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Tall"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Skrift"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cellebeskyttelse"
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Sidestil"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Generell"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Side"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Topptekst"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Bunntekst"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Ark"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Cellestil"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Generell"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Tall"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Skrift"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cellebeskyttelse"
diff --git a/source/nb/sd/messages.po b/source/nb/sd/messages.po
index 093cfb02c70..ac48f41cf61 100644
--- a/source/nb/sd/messages.po
+++ b/source/nb/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/nb_NO/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Generell"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linje"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Område"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skyggelegging"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Skrift"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffekter"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og avstand"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimering"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensjonering"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Sambandslinje"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatorer"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Utheving"
diff --git a/source/nb/sfx2/messages.po b/source/nb/sfx2/messages.po
index 3205e593e2a..fa4d70207a1 100644
--- a/source/nb/sfx2/messages.po
+++ b/source/nb/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-05 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561033625.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makroer er deaktivert på grunn av makrosikkerhetsinnstillingene."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makroer er signert, men dokumentet (som inneholder dokumenthendelser) er ikke signert."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vis makroer"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Vis sikkerhetsalternativer"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vis hendelser"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Elegant Grå"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Biebol"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Arkitekttegninger"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Candy"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gul Ide"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skogsfugl"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Forfriskning"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasjon"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Voksende Frihet"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnattsblå"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natur illustrasjon"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Fremgang"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Årgang"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Rik"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Fortsett"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Modere forretnigsbrev sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visittkort med logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Enkel"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Forenklet kinesisk normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japansk Normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Tøm alle"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Passordlengde"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Passordet du skrev inn skaper kompatibilitetsproblem. Skriv inn et passord med mindre enn 52 bytes eller mer enn 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key} -klikk for å åpne hyperkobling: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klikk for å åpne hyperkobling: % {link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(Brukt av: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Regneark"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentasjon"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tegning"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Nylig brukt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ingen nylige tegn"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Tilbakestill alle standardmaler"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Tilbakestill standard tekstdokument"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Tilbakestill standard regneark"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Tilbakestill standard presentsjon"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Tilbakestill standard tegning"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "Importer"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Utvidelser"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Gi nytt navn"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Gi nytt navn til kategori"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Ny kategori"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO objektinspektør"
diff --git a/source/nb/svtools/messages.po b/source/nb/svtools/messages.po
index 22915fc2d87..d3d374cc794 100644
--- a/source/nb/svtools/messages.po
+++ b/source/nb/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-22 11:26+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561029297.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Klarte ikke å opprette en internettforbindelse til $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Feilmelding fra tjeneren: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Feilmelding fra tjeneren: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Det oppstod en generell internettfeil."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "De forespurte internettdataene er ikke tilgjengelige i mellomlageret, og kan ikke bli overført siden programmet ikke er tilkoblet."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Klarte ikke å lage innholdet."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Filnavnet er for langt for filsystemet det skal brukes på."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Inndatasyntaksen er ugyldig."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Dokumentet bør lagres i et %PRODUCTNAME %PRODUCTVERSION-filformat i stedet."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Antall dokumenter som kan være åpne om gangen er nådd. Du må lukke ett eller flere dokumenter før du kan åpne flere."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Klarte ikke å opprette en sikkerhetskopi."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ugyldig datalengde."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funksjonen kan ikke utføres fordi stien inneholder den gjeldende mappen."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funksjonen kan ikke utføres fordi enhetene (stasjonene) ikke er identiske."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Enheten (stasjonen) er ikke klar."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Feil kontrollsum"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funksjonen er ikke mulig fordi filen er skrivebeskyttet."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Du må skru av delingen først."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Fant filformatfeil ved $(ARG1)(rad,kolonne)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filteret for dette filformatet er frakoblet i oppsettet. Kontakt systemadministrator."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Generell OLE-feil."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Handlingen kan ikke utføres når objektet er i denne tilstanden."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objektet støtter ingen handlinger."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objektet støtter ikke denne handlingen."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) da objektet ble tatt i bruk."
diff --git a/source/nb/svx/messages.po b/source/nb/svx/messages.po
index 0bb4d61a5fe..62bf2078af2 100644
--- a/source/nb/svx/messages.po
+++ b/source/nb/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-19 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/nb_NO/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561033255.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ingen kantlinjer"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Kun ytre kantlinjer"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ytre kantlinje og horisontale linjer"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ytre kantlinje og alle indre linjer"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ytre kantlinje og vertikale linjer"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Ytre kantlinje uten å endre indre linjer"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Kun diagonale linjer"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonal nedover kantlinje"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonal øvre kantkantlinje"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Krysover kantlinje"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Alle fire kantlinjer"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Kun venstre og høyre kant"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Kun topp- og bunnkantlinjer"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Topp- og bunnkantlinjer, og alle horisontale linjer"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Kun venstre kantlinje"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Kun høyre kantlinje"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Kun øverste kantlinje"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Kun nederste kantlinje"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Topp- og bunnkantlinjer, og alle indre linjer"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Venstre og høyre kantlinjer, og alle indre linjer"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Fjern fra favoritter"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Mangler tegn"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Legg til i favoritter"
@@ -10281,19 +10331,19 @@ msgstr "Legg til i favoritter"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kontroll av grafisk størrelse"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bildet «%NAME%» har for få piksler for gjeldende størrelse (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Bildet «%NAME%» har for mange piksler for gjeldende størrelse (%DPIX% x %DPIY% DPI)"
diff --git a/source/nb/sw/messages.po b/source/nb/sw/messages.po
index f698617ceff..b115d38a845 100644
--- a/source/nb/sw/messages.po
+++ b/source/nb/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-19 01:45+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: Norwegian Bokmål <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/nb_NO/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Liste 5 Forts."
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Topp og bunntekst"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabell"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatering"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlenke"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulerte bildetekster"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nummerering"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Øvrige"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Klikk for å oppdatere…"
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Ramme"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Plassering og størrelse"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Valg"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Bryt"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlenke"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Område"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Spalter"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Tilbakestill eventuelle endringer som er gjort på fanen som vises her, til innstillingene da denne dialogboksen ble åpnet."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Generell"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Font"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Fonteffekter"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posisjon"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk oppsett"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Utheving"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Kantlinjer"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Listestiler"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Navngi og skjul brukerdefinerte stiler"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Generell"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Velg en forhåndsdefinert kuletype"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Usortert"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Velg en forhåndsdefinert sortert liste"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Sortert"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Velg et forhåndsdefinert disposisjonsformat"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Disposisjon"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Velg et forhåndsdefinert grafisk punkttegn"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Bilde"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Endre innrykk, avstand og justering for listenumre eller symboler"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posisjon"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Design din egen liste eller disposisjonsformat"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Tilpass"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Avsnittstil"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Generell"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og mellomrom"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Justering"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstflyt"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Font"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Fonteffekter"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posisjon"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk oppsett"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Utheving"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatorer"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Innfelt forbokstav"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Område"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Vilkår"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Sett disposisjonsnivå, listestil og linjenummerering for avsnittstil."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Disposisjon og liste"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Rammestil"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Generell"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Valg"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Bryt"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Område"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Spalter"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Generell"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Side"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Område"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Gjennomsiktighet"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Topptekst"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Bunntekst"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Spalter"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fotnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstrutenett"
diff --git a/source/ne/cui/messages.po b/source/ne/cui/messages.po
index a10e01368a6..dfecc51de88 100644
--- a/source/ne/cui/messages.po
+++ b/source/ne/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-31 10:37+0000\n"
"Last-Translator: Raghav Upadhyay <raghavupadhyay800@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ne/>\n"
@@ -2702,10 +2702,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/ne/helpcontent2/source/text/shared/00.po b/source/ne/helpcontent2/source/text/shared/00.po
index e244b418b07..20400cf3587 100644
--- a/source/ne/helpcontent2/source/text/shared/00.po
+++ b/source/ne/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -610,13 +610,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13741,67 +13741,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13813,13 +13813,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/ne/helpcontent2/source/text/shared/01.po b/source/ne/helpcontent2/source/text/shared/01.po
index e65373dd77a..989b3f4c47a 100644
--- a/source/ne/helpcontent2/source/text/shared/01.po
+++ b/source/ne/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-07-28 14:35+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Nepali <https://weblate.documentfoundation.org/projects/libo_help-master/textshared01/ne/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">चयन गरिएको ग्राफिकलाई यसको मौलिक साइजमा फर्काउँछ ।</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "आयोजक"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">आयोजक</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/ne/helpcontent2/source/text/shared/optionen.po b/source/ne/helpcontent2/source/text/shared/optionen.po
index d32ed57840a..4a1baff2b4f 100644
--- a/source/ne/helpcontent2/source/text/shared/optionen.po
+++ b/source/ne/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -934,13 +934,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/ne/helpcontent2/source/text/swriter/01.po b/source/ne/helpcontent2/source/text/swriter/01.po
index 0e618de389f..4b7681fad9e 100644
--- a/source/ne/helpcontent2/source/text/swriter/01.po
+++ b/source/ne/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/ne/helpcontent2/source/text/swriter/guide.po b/source/ne/helpcontent2/source/text/swriter/guide.po
index a7135dc9e17..e06cab2a667 100644
--- a/source/ne/helpcontent2/source/text/swriter/guide.po
+++ b/source/ne/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "पृष्ठ शैलीहरूको सूचीमा, \"बायाँ पृष्ठ\" दायाँ-क्लिक गर्नुहोस् र <emph>परिमार्जन गर्नुहोस्</emph>रोज्नुहोस् ।"
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "<emph>आयोजक</emph> ट्याब क्लिक गर्नुहोस् ।"
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,13 +7090,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "पृष्ठहरूले बिभिन्न पृष्ठ शैलीहरू प्रयोग गरेसम्म तपाईँको कागजातको पृष्ठहरूमा तपाईँ बिभिन्न हेडर र फुटरहरू प्रयोग गर्न सक्नुहुन्छ । $[officename] बिभिन्न पूर्वपरिभाषित पृष्ठ शैलीहरू प्रदान गर्दछ, जस्तै <emph>पहिलो पृष्ठ</emph>, <emph>बायाँ पृष्ठ</emph> र <emph>दायाँ पृष्ठ</emph>, वा तपाईँ अनुकूल पृष्ठ शैली सिर्जना गर्न सक्नुहुन्छ ।"
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "पृष्ठ शैलीहरूको सूचीमा \"दायाँ पृष्ठ\" दायाँ-क्लिक गर्नुहोस् र <emph>परिमार्जन गर्नुहोस्</emph>रोज्नुहोस् ।"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">पृष्ठ शैली</item> संवादमा, <item type=\"menuitem\">हेडर </item>ट्याब क्लिक गर्नुहोस्।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">हेडर</item> चयन गर्नुहोस् र त्यसपछि <item type=\"menuitem\">प्रबन्धक</item> ट्याबमा क्लिक गर्नुहोस्।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "<item type=\"menuitem\">पछिल्लो शैली </item>बाकसमा, \"बायाँ पृष्ठ\" चयन गर्नुहोस्।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "<item type=\"menuitem\">पृष्ठ शैली</item> संवादमा, <item type=\"menuitem\">हेडर </item>ट्याब क्लिक गर्नुहोस्।"
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">हेडर</item> चयन गर्नुहोस् र त्यसपछि <item type=\"menuitem\">प्रबन्धक</item> ट्याबमा क्लिक गर्नुहोस्।"
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "<item type=\"menuitem\">पछिल्लो शैली </item>बाकसमा, \"दायाँ पृष्ठ\" चयन गर्नुहोस्।"
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "पृष्ठ शैलीहरूको सूचीमा, एउटा वस्तु बायाँ क्लिक गर्नुहोस्, र त्यसपछि <emph>नयाँ</emph> रोज्नुहोस् ।"
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>प्रबन्धक</emph> ट्याबमा, <emph>नाम</emph> बाकसमा नाम टाइप गर्नुहोस् ।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>पृष्ठ विच्छेद</emph> चयन गर्नुहोस् ।"
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "<item type=\"menuitem\">शैली </item>बाकसमा, पृष्ठ शैली प्रयोग गर्नुहोस् जसले पृष्ठ पृष्ठभूमि प्रयोग गर्दछ ।"
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,13 +11860,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr ""
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "दायाँ-क्लिक, र <emph>नयाँ</emph>रोज्नुहोस् ।"
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "<emph>प्रबन्धक</emph> ट्याबमा, <emph>नाम</emph> बाकसमा नाम टाइप गर्नुहोस् ।"
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,13 +12328,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr ""
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12364,13 +12364,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr ""
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "पृष्ठ शैलीहरूको सूचीमा, एउटा वस्तु बायाँ क्लिक गर्नुहोस्, र त्यसपछि <emph>नयाँ</emph> रोज्नुहोस् ।"
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "<emph>प्रबन्धक</emph> ट्याबमा, <emph>नाम</emph> बाकसमा नाम टाइप गर्नुहोस् ।"
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/ne/sc/messages.po b/source/ne/sc/messages.po
index 5cb9ac02cb4..e11a4489e4b 100644
--- a/source/ne/sc/messages.po
+++ b/source/ne/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-22 06:36+0000\n"
"Last-Translator: Ashwini <ashwinii.subedi@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ne/>\n"
@@ -14467,14 +14467,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14700,14 +14701,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23589,91 +23591,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24295,103 +24297,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "किनारा छैन"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24429,49 +24334,49 @@ msgid "Format Cells"
msgstr "कक्षहरू ढाँचाबद्ध गर्नुहोस्"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "सङ्ख्याहरू"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "फन्ट"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "फन्ट प्रभाव"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "पङ्क्तिबद्धता"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "एशियाली मुद्रणकला"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "कक्ष सुरक्षा"
@@ -28685,43 +28590,43 @@ msgid "Page Style"
msgstr "पृष्ठ शैली"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "पृष्ठ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "हेडर"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "फुटर"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "पाना"
@@ -28765,55 +28670,55 @@ msgid "Cell Style"
msgstr "कक्ष शैलीहरू"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "सङ्ख्याहरू"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "फन्ट"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "फन्ट प्रभाव"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "पङ्क्तिबद्धता"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाली मुद्रणकला"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "पृष्ठभूमि"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "कक्ष सुरक्षा"
diff --git a/source/ne/sd/messages.po b/source/ne/sd/messages.po
index de2d52e0ed7..fc202ac10fb 100644
--- a/source/ne/sd/messages.po
+++ b/source/ne/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-22 06:36+0000\n"
"Last-Translator: Ashwini <ashwinii.subedi@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ne/>\n"
@@ -9797,103 +9797,103 @@ msgid "_Standard"
msgstr "मानक"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "रेखा"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Shading"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "पार्दर्शिता"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "फन्ट"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "फन्ट प्रभाव"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "पाठ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "पाठ एनिमेसन"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "आयाम रेखा"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "योजक"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "पङ्क्तिबद्ध गर्नुहोस्"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "एशियाली मुद्रणकला"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ट्याबहरू"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/ne/sfx2/messages.po b/source/ne/sfx2/messages.po
index f194350cccb..c1e74a8bfca 100644
--- a/source/ne/sfx2/messages.po
+++ b/source/ne/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-10-22 06:36+0000\n"
"Last-Translator: Ashwini <ashwinii.subedi@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/ne/>\n"
@@ -1614,376 +1614,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "प्रेरणा"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "बत्तीहरू"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "हटाउनुहोस्"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "पासवर्डको लम्बाई"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key} - हाइपरलिङ्क खोल्न क्लिक गर्नुहोस्: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "हाइपरलिङ्क खोल्न क्लिक गर्नुहोस्: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "( प्रयोगकर्ता: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "कागजात"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "स्प्रेडसिट"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "प्रस्तुतिकरण"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "रेखाचित्र"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "हालसालै प्रयोग गरिएको"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/ne/svtools/messages.po b/source/ne/svtools/messages.po
index 1dca85b2c2b..1a5d5658cd9 100644
--- a/source/ne/svtools/messages.po
+++ b/source/ne/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-11-20 01:45+0000\n"
"Last-Translator: Suraj Bhattarai <immr@duck.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ne/>\n"
@@ -2389,10 +2389,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) मा इन्टरनेट जडान स्थापना गर्न सकेन ।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2400,7 +2408,7 @@ msgstr ""
"सर्भर त्रुटि सन्देश: $(ARG1) ।"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2410,37 +2418,37 @@ msgstr ""
"सर्भर त्रुटि सन्देश: $(ARG1) ।"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "सामान्य इन्टरनेट त्रुटि देखापर्यो ।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "अनुरोध गरिएको इन्टरनेट डेटा क्याशमा उपलब्ध छैन र अनलाइन मोड सक्रिय नपारिएकोले प्रसारित गर्न सकिँदैन ।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "सामग्रीहरू सिर्जना गर्न सकिएन ।"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "फाइल नाम लक्ष्य फाइल प्रणालीका लागि धेरै लामो छ ।"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "आगत वाक्यसंरचना अवैध छ ।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2450,19 +2458,19 @@ msgstr ""
"कृपया %PRODUCTNAME %PRODUCTVERSION फाइल ढाँचामा कागजात बचत गर्नुहोस ।"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "एउटै समयमा खोल्न सकिने कागजातको अधिकतम सङ्ख्या पुग्यो । तपाईँले नयाँ कागजात खोल्नु पहिला एउटा वा बढि कागजातहरू बन्द गर्न आवश्यक छ ।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "जगेडा प्रतिलिपि सिर्जना गर्न सकेन ।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2475,43 +2483,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "अवैध डेटा लम्बाइ ।"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "प्रकार्य सम्भव छैन: मार्गले हालको डाइरेक्टरी समाविष्ट गर्दछ ।"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "प्रकार्य सम्भव छैन: यन्त्र (ड्राइभ) उस्तै छैन ।"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "यन्त्र (ड्राइभ) तयार छैन ।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "प्रकार्य सम्भव छैन: लेखन सुरक्षित गरियो ।"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2519,47 +2527,47 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "सामान्य OLE त्रुटि ।"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "वस्तुको हालको स्थितिमा कार्य कार्यान्वयन हुन सक्दैन ।"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "वस्तुले कुनै कार्यहरूलाई समर्थन गर्दैन ।"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "वस्तुले यो कार्यलाई समर्थन गर्दैन ।"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/ne/svx/messages.po b/source/ne/svx/messages.po
index 16d2197f757..f06e9ecfd62 100644
--- a/source/ne/svx/messages.po
+++ b/source/ne/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-10-22 06:36+0000\n"
"Last-Translator: Ashwini <ashwinii.subedi@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ne/>\n"
@@ -10210,134 +10210,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10346,19 +10396,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/ne/sw/messages.po b/source/ne/sw/messages.po
index 913ffe273f6..dab9779a430 100644
--- a/source/ne/sw/messages.po
+++ b/source/ne/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2023-10-30 06:37+0000\n"
"Last-Translator: Hikmat Budha Chhetri <hikmatbbc@gmail.com>\n"
"Language-Team: Nepali <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ne/>\n"
@@ -3066,9 +3066,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10792,38 +10792,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16753,57 +16759,57 @@ msgid "Frame"
msgstr "फ्रेम"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "विकल्प"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "बेर्नुहोस्"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "हाइपरलिङ्क"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "क्षेत्र"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "पार्दर्शिता"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "स्तम्भहरू"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "म्याक्रो"
@@ -29536,44 +29542,44 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "फन्ट"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "फन्ट प्रभाव"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "स्थान"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "एसियाली सजावट"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "हाइलाइटिङ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "किनाराहरू"
@@ -29585,85 +29591,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "रूपरेखा"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "छवि"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "स्थान"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
#, fuzzy
msgctxt "templatedialog16|customize"
msgid "Customize"
@@ -29677,113 +29683,113 @@ msgid "Paragraph Style"
msgstr "(अनुच्छेद शैली: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "पङ्क्तिबद्धता"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "पाठ प्रवाह"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
#, fuzzy
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "एशियाली मुद्रणकला"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "फन्ट"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "फन्ट प्रभाव"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "स्थान"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "एसियाली सजावट"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "हाइलाइटिङ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ट्याबहरू"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ड्रप क्याप्स"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "क्षेत्र"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "पार्दर्शिता"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "सर्त"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29796,57 +29802,57 @@ msgid "Frame Style"
msgstr "फ्रेम शैली"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "प्रकार"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "विकल्प"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "बेर्नुहोस्"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "क्षेत्र"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "पार्दर्शिता"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "स्तम्भहरू"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "म्याक्रो"
@@ -29865,62 +29871,62 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "पृष्ठ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "क्षेत्र"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "पार्दर्शिता"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "हेडर"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "फुटर"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "किनाराहरू"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "स्तम्भहरू"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "पाद टिप्पणी"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/nl/cui/messages.po b/source/nl/cui/messages.po
index 024b1022fcd..124eef623f1 100644
--- a/source/nl/cui/messages.po
+++ b/source/nl/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-06-16 23:47+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/nl/>\n"
"Language: nl\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Open een CSV bestand als een nieuw blad in het huidige werkblad via Blad > Blad uit bestand invoegen."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "U kunt doorgaan met schrijven met de standaard opmaakkenmerken nadat u handmatig vet, cursief of onderstreept hebt toegepast door op %MOD1+Shift+X te drukken."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -10792,7 +10792,7 @@ msgstr "F_rame:"
#: cui/uiconfig/ui/hyperlinkdocpage.ui:270
msgctxt "hyperlinkdocpage|indication_label"
msgid "Te_xt:"
-msgstr "Tek_st:"
+msgstr "Om_schrijving:"
#. o2Fic
#: cui/uiconfig/ui/hyperlinkdocpage.ui:285
@@ -16416,7 +16416,7 @@ msgstr "Laadt de gebruikersspecifieke instellingen, die zijn opgeslagen in een d
#: cui/uiconfig/ui/optsavepage.ui:73
msgctxt "optsavepage|load_anyuser"
msgid "Load view position with the document even if it was saved by a different user"
-msgstr "De weergavepositie met het document laden, zelfs als het door een andere gebruiker is opgeslagen"
+msgstr "Zelfs als het bestand door een andere gebruiker is opgeslagen de weergavepositie met het document laden"
#. FLNEA
#: cui/uiconfig/ui/optsavepage.ui:81
@@ -16458,13 +16458,13 @@ msgstr "minuten"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Het document automatisch opslaan"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Geeft aan dat het kantoorpakket het gewijzigde document zelf opslaat, in plaats van een tijdelijke AutoRecover-versie te maken. Gebruikt hetzelfde tijdsinterval als AutoRecovery."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
@@ -16518,7 +16518,7 @@ msgstr "Slaat de vorige versie van een document op als reservekopie wanneer u ee
#: cui/uiconfig/ui/optsavepage.ui:320
msgctxt "optsavepage|backupintodocumentfolder"
msgid "Place backup in same folder as document"
-msgstr "Plaats de reservekopie in dezelfde map als het document"
+msgstr "De reservekopie in dezelfde map als het document opslaan"
#. NaGCU
#: cui/uiconfig/ui/optsavepage.ui:430
@@ -16530,7 +16530,7 @@ msgstr "Opslaan"
#: cui/uiconfig/ui/optsavepage.ui:460
msgctxt "optsavepage|warnalienformat"
msgid "Warn when not saving in ODF or default format"
-msgstr "Waarschuwen bij niet opslaan in ODF- of standaard indeling"
+msgstr "Bij niet opslaan in ODF- of standaardindeling waarschuwen"
#. zGBEu
#: cui/uiconfig/ui/optsavepage.ui:468
@@ -16645,7 +16645,7 @@ msgstr "Opent het dialoogvenster Time Stamping Authority URLs ."
#: cui/uiconfig/ui/optsecuritypage.ui:58
msgctxt "optsecuritypage|label9"
msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export."
-msgstr "Handhaven van een lijst van Tijdstempelautoriteit (TSA) URL's, die voor digitale ondertekening in PDF-export worden gebruikt."
+msgstr "Een lijst Tijstempelautoriteit (TSA) handhaven, die voor digitale ondertekening in PDF-export wordt gebruikt."
#. vrbum
#: cui/uiconfig/ui/optsecuritypage.ui:94
@@ -16681,7 +16681,7 @@ msgstr "Pad van certificaat"
#: cui/uiconfig/ui/optsecuritypage.ui:222
msgctxt "optsecuritypage|label5"
msgid "Adjust the security level for executing macros and specify trusted macro developers."
-msgstr "Pas het beveiligingsniveau voor het uitvoeren van macro's aan en specificeer vertrouwde ontwikkelaars van macro's."
+msgstr "Het beveiligingsniveau voor het uitvoeren van macro's aanpassen en vertrouwde ontwikkelaars van macro's specificeren."
#. wBcDQ
#: cui/uiconfig/ui/optsecuritypage.ui:235
@@ -16723,7 +16723,7 @@ msgstr ""
#: cui/uiconfig/ui/optsecuritypage.ui:347
msgctxt "optsecuritypage|usemasterpassword"
msgid "Protected _by a master password (recommended)"
-msgstr "Beveiligd _door een hoofdwachtwoord (aanbevolen)"
+msgstr "_Door een hoofdwachtwoord beveiligen"
#. UGTda
#: cui/uiconfig/ui/optsecuritypage.ui:393
@@ -16771,7 +16771,7 @@ msgstr "Wachtwoorden voor internetverbindingen"
#: cui/uiconfig/ui/optsecuritypage.ui:546
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr "Beveiligingsopties aanpassen en waarschuwingen definiëren voor verborgen informatie in documenten. "
+msgstr "Beveiligingsopties aanpassen en waarschuwingen voor verborgen informatie definiëren. "
#. CBnzU
#: cui/uiconfig/ui/optsecuritypage.ui:559
@@ -16807,7 +16807,7 @@ msgstr "Voer het uitvoerbare bestand van het certificaatbeheerderpad in."
#: cui/uiconfig/ui/optsecuritypage.ui:654
msgctxt "optsecuritypage|label11"
msgid "Select custom certificate manager executable. Note that %PRODUCTNAME tries to locate installed ones automatically."
-msgstr "Selecteer een aangepast uitvoerbaar bestand voor certificaatbeheer. Houd er rekening mee dat %PRODUCTNAME de geïnstalleerde programma's automatisch probeert te lokaliseren."
+msgstr "Een aangepast uitvoerbaar bestand voor certificaatbeheer selecteren. Houd er rekening mee dat %PRODUCTNAME de geïnstalleerde programma's automatisch probeert te lokaliseren."
#. HVFTB
#: cui/uiconfig/ui/optsecuritypage.ui:698
@@ -19598,7 +19598,7 @@ msgstr "Selecteer deze optie als er een waarschuwingsvenster moet verschijnen, w
#: cui/uiconfig/ui/securityoptionsdialog.ui:243
msgctxt "securityoptionsdialog|label3"
msgid "Warn if document contains recorded changes, versions or notes:"
-msgstr "Een waarschuwing geven wanneer het document opgeslagen wijzigingen, versies of notities bevat:"
+msgstr "Wanneer het document opgeslagen wijzigingen, versies of notities bevat een waarschuwing geven:"
#. 3yxBp
#: cui/uiconfig/ui/securityoptionsdialog.ui:257
@@ -19622,7 +19622,7 @@ msgstr "Selecteer deze optie om gebruikersgegevens te verwijderen uit bestandsei
#: cui/uiconfig/ui/securityoptionsdialog.ui:321
msgctxt "securityoptionsdialog|blockuntrusted"
msgid "Block any links from documents not among the trusted locations (see Macro Security)"
-msgstr "Blokkeer alle verwijzingen, in documenten, die niet in de vertrouwde locaties voorkomen (zie Macroveiligheid)"
+msgstr "Alle verwijzingen, die in documenten, die niet in de vertrouwde locaties voorkomen blokkeren (zie Macroveiligheid."
#. Zm9kD
#: cui/uiconfig/ui/securityoptionsdialog.ui:330
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index cabcd751fb0..57fce1eea29 100644
--- a/source/nl/helpcontent2/source/text/scalc/01.po
+++ b/source/nl/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-20 08:33+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/nl/>\n"
"Language: nl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565421340.000000\n"
#. sZfWF
@@ -54603,7 +54603,7 @@ msgctxt ""
"par_id431716730587722\n"
"help.text"
msgid "Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present."
-msgstr ""
+msgstr "Elk van de optionele argumenten kan worden weggelaten. Voor een optioneel argument moeten alle voorgaande scheidingstekens aanwezig zijn."
#. GAPGX
#: common_func_workdaysintl.xhp
@@ -57177,7 +57177,7 @@ msgctxt ""
"par_id711715953325962\n"
"help.text"
msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>. You can however, use the mode modifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> to force search for a case-sensitive match."
-msgstr ""
+msgstr "De functie is altijd <emph>hoofdlettergevoelig</emph>, onafhankelijk van de instelling van het selectievakje <emph>Hoofdlettergevoelig</emph> in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>% PRODUCTNAAM - Voorkeuren</menuitem></caseinline><defaultinline><menuitem>Extra - Opties</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Berekenen - Berekenen</menuitem></link>. U kunt echter de modusmodifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">reguliere expressies</link> gebruiken om zoeken naar een hoofdlettergevoelige overeenkomst."
#. 8DbP2
#: func_aggregate.xhp
@@ -71748,7 +71748,7 @@ msgctxt ""
"par_id631708282151776\n"
"help.text"
msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) or regular expressions for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
-msgstr ""
+msgstr "De functie X.ZOEKEN is een moderne en flexibele vervanging voor oudere functies zoals <link href=\"text/scalc/01/04060109.xhp#Section9\">VERT.ZOEKEN</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HORIZ.ZOEKEN</link> en <link href=\"text/scalc/01/04060109.xhp#Section14\">ZOEKEN</link>. X.ZOEKEN ondersteunt geschatte en exacte overeenkomsten, jokertekens (* ?) of reguliere expressies voor gedeeltelijke overeenkomsten, en zoekopdrachten in verticale of horizontale bereiken. X.ZOEKEN kan omgekeerd zoeken en biedt een snelle binaire zoekoptie bij het werken met grote datasets."
#. TwFcc
#: func_xlookup.xhp
@@ -71847,7 +71847,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: een <link href=\"text/scalc/guide/wildcards.xhp\">jokerteken</link> komt overeen waarbij de speciale tekens *, ? en ~ speciale betekenis hebben, of overeenkomt met <link href=\"text/shared/01/02100001.xhp\">reguliere expressies</link>."
#. EqTBc
#: func_xlookup.xhp
@@ -71901,7 +71901,7 @@ msgctxt ""
"par_id551718627629229\n"
"help.text"
msgid "<emph>MatchType</emph> value 2 cannot be combined with binary search (<emph>SearchMode</emph> value <emph>2</emph> or <emph>-2</emph>)."
-msgstr ""
+msgstr "<emph>OvereenkomstType</emph> waarde 2 kan niet worden gecombineerd met binair zoeken (<emph>ZoekModus</emph> waarde <emph>2</emph> of <emph>-2</emph>)."
#. fHQrZ
#: func_xlookup.xhp
@@ -72027,7 +72027,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>OvereenkomstType</emph>: (optioneel) specificeert het zoektype. Waarden kunnen zijn:"
#. jmwqp
#: func_xmatch.xhp
@@ -72036,7 +72036,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>: exacte overeenkomst (standaard). Als de waarde in <emph>Zoeken</emph> niet wordt gevonden, retourneert u de fout #N/B."
#. 9SMUK
#: func_xmatch.xhp
@@ -72045,7 +72045,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: probeer exacte overeenkomst. Als de waarde in <emph>Zoeken</emph> niet wordt gevonden, retourneer dan het volgende kleinere item."
#. hwonA
#: func_xmatch.xhp
@@ -72054,7 +72054,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>1</emph>: probeer exacte overeenkomst. Als de waarde in <emph>Zoeken</emph> niet wordt gevonden, retourneer dan het volgende grotere item."
#. y5cx9
#: func_xmatch.xhp
@@ -72063,7 +72063,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: een <link href=\"text/scalc/guide/wildcards.xhp\">jokerteken</link>-overeenkomst waarbij de tekens *, ? en ~ een speciale betekenis hebben, of een overeenkomst met <link href=\"text/shared/01/02100001.xhp\">reguliere expressies</link>."
#. WMXaP
#: func_xmatch.xhp
diff --git a/source/nl/helpcontent2/source/text/scalc/guide.po b/source/nl/helpcontent2/source/text/scalc/guide.po
index adf2ea0c962..ed00f992019 100644
--- a/source/nl/helpcontent2/source/text/scalc/guide.po
+++ b/source/nl/helpcontent2/source/text/scalc/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/nl/>\n"
"Language: nl\n"
@@ -5117,7 +5117,7 @@ msgctxt ""
"par_id781656100074986\n"
"help.text"
msgid "Pivot Table Corner"
-msgstr "Draaitabel Hoek"
+msgstr "Draaitabelhoek"
#. Y5UBR
#: datapilot_formatting.xhp
@@ -5126,7 +5126,7 @@ msgctxt ""
"par_id311656100079561\n"
"help.text"
msgid "Pivot Table Field"
-msgstr "Draaitabel Veld"
+msgstr "Draaitabelveld"
#. a2oFk
#: datapilot_formatting.xhp
@@ -5135,7 +5135,7 @@ msgctxt ""
"par_id601656100083888\n"
"help.text"
msgid "Pivot Table Result"
-msgstr "Draaitabel Resultaat"
+msgstr "Draaitabelresultaat"
#. JvVDa
#: datapilot_formatting.xhp
@@ -5144,7 +5144,7 @@ msgctxt ""
"par_id521656100088324\n"
"help.text"
msgid "Pivot Table Value"
-msgstr "Draaitabel Waarde"
+msgstr "Draaitabelwaarde"
#. HABWX
#: datapilot_formatting.xhp
@@ -5153,7 +5153,7 @@ msgctxt ""
"par_id111656100092437\n"
"help.text"
msgid "Pivot Table Title"
-msgstr "Draaitabel Titel"
+msgstr "Draaitabeltitel"
#. cRb6R
#: datapilot_formatting.xhp
diff --git a/source/nl/helpcontent2/source/text/shared/00.po b/source/nl/helpcontent2/source/text/shared/00.po
index 6179033db99..99e677c3f1b 100644
--- a/source/nl/helpcontent2/source/text/shared/00.po
+++ b/source/nl/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-09 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/nl/>\n"
"Language: nl\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Naar ouder terugzetten"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "De waarden voor het huidige tabblad worden ingesteld op de waarden die worden gevonden op het overeenkomstige tabblad van het opmaakprofiel die is opgegeven in \"Gebaseerd op\" in Beheren. In alle gevallen, ook wanneer \"Gebaseerd op\" \"- Geen -\" is, worden de huidige tabbladwaarden die zijn opgegeven in \"Bevat\" verwijderd."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Op het tabblad <menuitem>Extra</menuitem> klikt u op de knop <menuitem>Opties</menuitem> en opent u vervolgens <menuitem>Laden/Opslaan - Algemeen</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Kies <emph>Opmaak - Cellen, tabblad Achtergrond</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Kies tabblad <menuitem>Opmaak - Pagina-opmaakprofiel - Beheren</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Kies tabblad <menuitem>Opmaakprofielen - Opmaakprofiel bewerken - Beheren</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Kies <menuitem>Beeld - Opmaakprofielen</menuitem> - open het contextmenu van een item en kies <menuitem>Nieuw/Opmaakprofiel bewerken - Beheren</menuitem> (tabblad)."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Kies <menuitem>Opmaak - Pagina-opmaakprofiel - Beheren</menuitem> tabblad.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Kies <menuitem>Beeld - Opmaakprofielen</menuitem> - open het contextmenu van een item en kies <menuitem>Nieuw/Opmaakprofiel bewerken - Beheren</menuitem> (tabblad)."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Kies tabblad <menuitem>Opmaak - Opmaakprofielen - Opmaakprofiel bewerken - Beheren</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Kies <menuitem>Opmaak - Opmaakprofielen > Opmaakprofielen beheren</menuitem> - open het contextmenu van een item en kies <menuitem>Nieuw/Opmaakprofiel bewerken - Beheren</menuitem> (tabblad)."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Kies tabblad <menuitem>Dia - Eigenschappen - Pagina</menuitem> .</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Kies <menuitem>Beeld - Opmaakprofielen</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open het contextmenu van een item en kies <menuitem>Nieuw/Opmaakprofielen bewerken - Beheren</menuitem> (tabblad)."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/nl/helpcontent2/source/text/shared/01.po b/source/nl/helpcontent2/source/text/shared/01.po
index cea07b11e83..64d9b52a862 100644
--- a/source/nl/helpcontent2/source/text/shared/01.po
+++ b/source/nl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-17 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565254635.000000\n"
#. 3u8hR
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Herstelt de oorspronkelijke grootte van de geselecteerde afbeelding.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Beheren"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>beheren; opmaakprofielen</bookmark_value><bookmark_value>opmaakprofielen; beheren</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Beheren</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/nl/helpcontent2/source/text/shared/help.po b/source/nl/helpcontent2/source/text/shared/help.po
index c979a27bf43..0b722d4672a 100644
--- a/source/nl/helpcontent2/source/text/shared/help.po
+++ b/source/nl/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-22 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/nl/>\n"
"Language: nl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1561760601.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">LibreOffice-boeken</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/nl/helpcontent2/source/text/shared/optionen.po b/source/nl/helpcontent2/source/text/shared/optionen.po
index a0c928afaf6..34acabd173b 100644
--- a/source/nl/helpcontent2/source/text/shared/optionen.po
+++ b/source/nl/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-02 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/nl/>\n"
"Language: nl\n"
@@ -932,15 +932,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Het document automatisch opslaan"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -9626,7 +9626,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Notitie-indicator</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9662,7 +9662,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Als dit vakje is aangevinkt, verschijnen de auteur van de notitie en de datum en tijd waarop de notitie is gemaakt in het notitievenster wanneer u met de muis over een notitie gaat."
#. tYLiN
#: 01060100.xhp
@@ -9698,7 +9698,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Notitie-indicator</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9752,7 +9752,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Kolom/Rij markeren</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9779,7 +9779,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Celmarkering bewerken</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9806,7 +9806,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Afbeeldingsanker</alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9833,7 +9833,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Verwijzingen in kleur</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9914,7 +9914,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Cursors met thema</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9941,7 +9941,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Systeemcursor</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10004,7 +10004,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objecten/Afbeeldingen"
#. DMhEf
#: 01060100.xhp
@@ -16196,7 +16196,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Voorkeuren</menuitem></caseinline><defaultinline><menuitem>Extra - Opties</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Geavanceerd - Expertconfiguratie openen</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16205,7 +16205,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Op het tabblad <menuitem>Extra</menuitem> klikt u op de knop <menuitem>Opties</menuitem> en vervolgens op <menuitem>%PRODUCTNAME - Geavanceerd - Expertconfiguratie openen</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/nl/helpcontent2/source/text/swriter/01.po b/source/nl/helpcontent2/source/text/swriter/01.po
index da51737b122..94e0df73eba 100644
--- a/source/nl/helpcontent2/source/text/swriter/01.po
+++ b/source/nl/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-09 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564344900.000000\n"
#. sZfWF
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Directe opmaak heeft voorrang op alle opmaak van een tekenopmaakprofiel. Om directe opmaak uit een selectie te verwijderen, kies <menuitem>Opmaak - Directe opmaak wissen</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Commando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Gebruik het gedeelte <emph>Bevat</emph> om de eigenschappen van het tekenopmaakprofiel te zien."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
diff --git a/source/nl/helpcontent2/source/text/swriter/guide.po b/source/nl/helpcontent2/source/text/swriter/guide.po
index de534bd3f89..08ec4aa0b0f 100644
--- a/source/nl/helpcontent2/source/text/swriter/guide.po
+++ b/source/nl/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-26 09:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564160469.000000\n"
#. XAt2Y
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Rechtsklik op 'Linkerpagina' in de lijst met pagina-opmaakprofielen en kies <emph>Wijzigen</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Klik op het tabblad <emph>Beheren</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "U kunt verschillende kop- en voetteksten op verschillende pagina's in uw document gebruiken, zo lang de pagina's maar verschillende pagina-opmaakprofielen gebruiken. $[officename] biedt verschillende vooraf gedefinieerde pagina-opmaakprofielen, zoals <emph>Eerste pagina</emph>, <emph>Linkerpagina</emph> en <emph>Rechterpagina</emph>, of u kunt een aangepast pagina-opmaakprofiel maken."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "U kunt ook de gespiegelde pagina-indeling gebruiken als u een koptekst wilt toevoegen aan een pagina-opmaakprofiel met verschillende binnen- en buitenpaginamarges. Om deze optie op een pagina-opmaakprofiel toe te passen, kiest u <item type=\"menuitem\">Opmaak - Pagina-opmaakprofiel</item>, klikt u op het tabblad <item type=\"menuitem\">Pagina</item> en kies in het <item type=\"menuitem\">Lay-outinstellingen</item> gebied, kies “Gespiegeld” in het vak <item type=\"menuitem\">Pagina-opmaak</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Klik met de rechtermuisknop op 'Rechterpagina' in de lijst met pagina-opmaakprofielen en kies <emph>Wijzigen</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klik in het dialoogvenster <item type=\"menuitem\">Pagina-opmaakprofielen</item> op de tab <item type=\"menuitem\">Koptekst</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Selecteer <item type=\"menuitem\">Koptekst activeren</item> en klik op de tab <item type=\"menuitem\">Beheren</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "In het vak <item type=\"menuitem\">Volgend opmaakprofiel</item> selecteert u 'Linkerpagina'."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "In het venster <emph>Stijlen en opmaak</emph> klikt u met rechts op 'Linkerpagina' in de lijst met pagina-opmaakprofielen en kiest u <emph>Wijzigen</emph>."
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Klik in het dialoogvenster <item type=\"menuitem\">Pagina-opmaakprofielen</item> op de tab <item type=\"menuitem\">Koptekst</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Selecteer <item type=\"menuitem\">Koptekst activeren</item> en klik op het tabblad <item type=\"menuitem\">Beheren</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "In het vak <item type=\"menuitem\">Volgend opmaakprofiel</item> selecteert u 'Rechterpagina'."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In de lijst met pagina-opmaakprofielen klikt u met de rechtermuisknop op een item en kiest u <emph>Nieuw</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Op het tabblad <emph>Beheren</emph> typt u een naam voor het pagina-opmaakprofiel in het vak <emph>Naam</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Selecteer <emph>Pagina-einde</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "In het vak <item type=\"menuitem\">Opmaakprofiel</item>, selecteert u een pagina-opmaakprofiel dat de pagina-achtergrond gebruikt."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,14 +11860,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Er verschijnt een <emph>automatisch pagina-einde</emph> aan het einde van een pagina wanneer het pagina-opmaakprofiel een ander 'volgend opmaakprofiel' heeft."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "Het pagina-opmaakprofiel 'Eerste pagina' heeft bijvoorbeeld pagina-opmaakprofiel 'Standaard' als het volgende opmaakprofiel. Om dit te zien, drukt u op <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline> </switchinline> om het venster <menuitem>Opmaakprofielen</menuitem> te openen, klikt u op het pictogram <menuitem>Pagina-opmaakprofielen</menuitem> en klikt u met rechts op het item \"Eerste pagina\". Kies <menuitem>Opmaakprofiel bewerken</menuitem> in het contextmenu. Op het tabblad <menuitem>Beheren</menuitem> ziet u het 'Volgend opmaakprofiel'."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Klik met de rechtermuisknop op een pagina-opmaakprofiel en kies <emph>Nieuw</emph>. Het nieuwe pagina-opmaakprofiel erft in eerste instantie alle eigenschappen van het geselecteerde pagina-opmaakprofiel."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Op het tabblad <emph>Beheren</emph> typt u bijvoorbeeld een naam voor het pagina-opmaakprofiel in het vak <emph>Naam</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Eén pagina lang opmaakprofielen"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Een pagina-opmaakprofiel kan worden gedefinieerd om slechts één pagina te beslaan. Het opmaakprofiel \"Eerste pagina\" is een voorbeeld. U stelt deze eigenschap in door een ander pagina-opmaakprofiel als \"Volgend opmaakprofiel\" te definiëren, op het tabblad <menuitem>Opmaak - Pagina-opmaakprofiel - Beheren</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Handmatig gedefinieerd bereik van een pagina-opmaakprofiel"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Het pagina-opmaakprofiel \"Standaard\" stelt geen andere \"Volgend opmaakprofiel\" in op het tabblad <menuitem>Opmaak - Pagina-opmaakprofiel - Beheren</menuitem>. In plaats daarvan is \"Volgend opmaakprofiel\" ook ingesteld op \"Standaard\". Alle pagina-opmaakprofielen die worden gevolgd door hetzelfde pagina-opmaakprofiel kunnen meerdere pagina's beslaan. De onder- en bovengrenzen van het bereik van het pagina-opmaakprofiel worden gedefinieerd door \"pagina-einden met opmaakprofiel\". Alle pagina's tussen twee willekeurige \"pagina-einden met opmaakprofiel\" gebruiken hetzelfde pagina-opmaakprofiel."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "In de lijst met pagina-opmaakprofielen klikt u met rechts op een item en kiest u <emph>Nieuw</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Op de tab <emph>Beheren</emph> typt u een naam in het vak <emph>Naam</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
index d2fa1985b70..6b02318c426 100644
--- a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-20 11:18+0000\n"
+"PO-Revision-Date: 2024-06-26 01:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/nl/>\n"
"Language: nl\n"
@@ -3034,7 +3034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Shee~t from File..."
-msgstr "Blad uit bestand ~invoegen..."
+msgstr "Blad(en) uit bestand ~invoegen..."
#. yAKU2
#: CalcCommands.xcu
diff --git a/source/nl/sc/messages.po b/source/nl/sc/messages.po
index 12de045808e..23a24b0874e 100644
--- a/source/nl/sc/messages.po
+++ b/source/nl/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-19 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-28 09:28+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/nl/>\n"
"Language: nl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564829506.000000\n"
#. kBovX
@@ -2241,37 +2241,37 @@ msgstr "Astitel"
#: sc/inc/globstr.hrc:387
msgctxt "STR_PIVOT_STYLE_INNER"
msgid "Pivot Table Value"
-msgstr "Draaitabel waarde"
+msgstr "Draaitabelwaarde"
#. iaSss
#: sc/inc/globstr.hrc:388
msgctxt "STR_PIVOT_STYLE_RESULT"
msgid "Pivot Table Result"
-msgstr "Draaitabel resultaat"
+msgstr "Draaitabelresultaat"
#. DJhBL
#: sc/inc/globstr.hrc:389
msgctxt "STR_PIVOT_STYLE_CATEGORY"
msgid "Pivot Table Category"
-msgstr "Draaitabel categorie"
+msgstr "Draaitabelcategorie"
#. bTwc9
#: sc/inc/globstr.hrc:390
msgctxt "STR_PIVOT_STYLE_TITLE"
msgid "Pivot Table Title"
-msgstr "Draaitabel titel"
+msgstr "Draaitabeltitel"
#. zuSeA
#: sc/inc/globstr.hrc:391
msgctxt "STR_PIVOT_STYLE_FIELDNAME"
msgid "Pivot Table Field"
-msgstr "Draaitabel veld"
+msgstr "Draaitabelveld"
#. Spguu
#: sc/inc/globstr.hrc:392
msgctxt "STR_PIVOT_STYLE_TOP"
msgid "Pivot Table Corner"
-msgstr "Draaitabel hoek"
+msgstr "Draaitabelhoek"
#. GyuCe
#: sc/inc/globstr.hrc:393
@@ -2701,7 +2701,7 @@ msgstr "Huidige tijd invoegen"
#: sc/inc/globstr.hrc:456
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
-msgstr "Namen beheren..."
+msgstr "Bereiken beheren..."
#. AFC3z
#: sc/inc/globstr.hrc:457
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Overeenkomstmodus"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Exacte overeenkomst. Zal #N/B retourneren als er geen match is. (standaard).\n"
-"-1 - Exacte overeenkomst of het volgende kleinere item.\n"
-"1 - Exacte overeenkomst of het volgende grotere item.\n"
-"2 - Overeenkomst met jokertekens of reguliere expressies."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Overeenkomsten"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 - Exacte overeenkomst. Zal #N/B retourneren als er geen match is. (standaard).\n"
-"-1 - Exacte overeenkomst of het volgende kleinere item.\n"
-"1 - Exacte overeenkomst of het volgende grotere item.\n"
-"2 - Overeenkomst met jokertekens of reguliere expressies."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -21576,7 +21570,7 @@ msgstr "Berekent de covariantie van twee sets numerieke gegevens."
#: sc/uiconfig/scalc/ui/createnamesdialog.ui:8
msgctxt "createnamesdialog|CreateNamesDialog"
msgid "Create Names"
-msgstr "Namen maken"
+msgstr "Bereiken maken"
#. bWFYd
#: sc/uiconfig/scalc/ui/createnamesdialog.ui:93
@@ -22788,7 +22782,7 @@ msgstr "Hiermee wordt de bestaande celopmaak van kopteksten en de eerste gegeven
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:425
msgctxt "definedatabaserangedialog|DontSaveImportedData"
msgid "Don't save _imported data"
-msgstr "Sla ge_importeerde data niet op"
+msgstr "Ge_importeerde data niet opslaan"
#. mDon4
#: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:433
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Standaard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Algemeen"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Lijn"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Vlak"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Schaduw"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Transparantie"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Lettertype"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Teksteffecten"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Inspringing en afstand"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimaties"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Maatlijn"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Uitlijning"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziatische typografie"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabstops"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Tekstachtergrond"
@@ -23550,7 +23544,7 @@ msgstr "Resulteert in een afgevlakte gegevensreeks"
#: sc/uiconfig/scalc/ui/externaldata.ui:23
msgctxt "externaldata|ExternalDataDialog"
msgid "External Data"
-msgstr "Externe gegevens"
+msgstr "Externe koppelingen"
#. APBGW
#: sc/uiconfig/scalc/ui/externaldata.ui:124
@@ -23880,13 +23874,13 @@ msgstr "Blokkeren"
#: sc/uiconfig/scalc/ui/filterdropdown.ui:251
msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT"
msgid "Show only the current item."
-msgstr "Toon alleen het huidige item."
+msgstr "Alleen het huidige item weergeven."
#. vBQYB
#: sc/uiconfig/scalc/ui/filterdropdown.ui:266
msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT"
msgid "Hide only the current item."
-msgstr "Verberg alleen het huidige item."
+msgstr "Alleen het huidige item verbergen."
#. bXw6N
#: sc/uiconfig/scalc/ui/filtersubdropdown.ui:148
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Verwijderen"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Geen rand"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle randen"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Buitenranden"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Dikke rand rondom"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Dikke onderrand"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dubbele onderrand"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Dikke boven- en onderranden"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Dubbele boven- en onderranden"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Linkerrand"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Rechterrand"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Bovenrand"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Onderrand"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonaal omhoog lopende rand"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonaal omlaag lopende rand"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Boven- en onderrand"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Linker- en rechterrand"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Cel(len) opmaken"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Getallen"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Lettertype"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Teksteffecten"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Uitlijning"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Aziatische typografie"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Randen"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Vlak"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Celbeveiliging"
@@ -25080,7 +24978,7 @@ msgstr "Opent het dialoogvenster Cel(len) invoegen , waarin u de opties kunt bep
#: sc/uiconfig/scalc/ui/insertname.ui:20
msgctxt "insertname|InsertNameDialog"
msgid "Paste Names"
-msgstr "Namen plakken"
+msgstr "Bereiken plakken"
#. VU7xQ
#: sc/uiconfig/scalc/ui/insertname.ui:51
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Pagina-opmaakprofiel"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Algemeen"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pagina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Randen"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Vlak"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Koptekst"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Voettekst"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Blad"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Celopmaakprofiel"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Algemeen"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Getallen"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Lettertype"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Teksteffecten"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Uitlijning"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziatische typografie"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Randen"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Vlak"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Celbeveiliging"
@@ -32997,7 +32895,7 @@ msgstr "Selecteer de kolom die u de controle over het berekeningsproces wilt gev
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73
msgctxt "subtotalgrppage|select_all_columns_button"
msgid "Select all columns"
-msgstr "Selecteer alle kolommen"
+msgstr "Alle kolommen selecteren"
#. 42zT3
#: sc/uiconfig/scalc/ui/subtotalgrppage.ui:106
@@ -33615,7 +33513,7 @@ msgstr "Stelt in dat elke referentie in de formule in kleur is gemarkeerd. Het c
#: sc/uiconfig/scalc/ui/tpviewpage.ui:223
msgctxt "tpviewpage|anchor"
msgid "_Anchor"
-msgstr "Ver_ankering"
+msgstr "Ver_ankeren"
#. B5SJi
#: sc/uiconfig/scalc/ui/tpviewpage.ui:231
@@ -33807,7 +33705,7 @@ msgstr "Tonen"
#: sc/uiconfig/scalc/ui/tpviewpage.ui:733
msgctxt "tpviewpage|grid"
msgid "Show on colored cells"
-msgstr "Toon op gekleurde cellen"
+msgstr "Op gekleurde cellen tonen"
#. ucTDZ
#: sc/uiconfig/scalc/ui/tpviewpage.ui:734
diff --git a/source/nl/sd/messages.po b/source/nl/sd/messages.po
index b05aaa518d1..589630053a0 100644
--- a/source/nl/sd/messages.po
+++ b/source/nl/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-07 13:25+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/nl/>\n"
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standaard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Algemeen"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Lijn"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Vlak"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Schaduw"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparantie"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Lettertype"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Lettertype-effecten"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Inspringingen en afstanden"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimaties"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Maatlijn"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Verbinding"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Uitlijning"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Aziatische typografie"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabstops"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Markeren"
diff --git a/source/nl/sfx2/messages.po b/source/nl/sfx2/messages.po
index e26c9caad71..8c94275f272 100644
--- a/source/nl/sfx2/messages.po
+++ b/source/nl/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-16 23:47+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561713292.000000\n"
#. bHbFE
@@ -1632,376 +1632,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Macro's zijn uitgeschakeld vanwege de macrobeveiligingsinstellingen."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Macro's zijn ondertekend, maar het document (met documentgebeurtenissen) is niet ondertekend."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Macro's weergeven"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Beveiligingsopties weergeven"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Gebeurtenissen weergeven"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Grijze olifant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bijenkorf"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blauwe kromme"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blauwdruk planning"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Snoep"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Geel idee"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Focus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Vogel van het woud"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Fris"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiratie"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lichten"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Groeiende vrijheid"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropolis"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Nachtblauw"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natuur illustratie"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Potlood"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Voortgang"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Zonsondergang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Vintage"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Helder"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Samenvatting"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standaard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modern"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne zakelijke brief sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne zakelijke brief sans-serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visitekaartje met logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Eenvoudig"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Vereenvoudigd Chinees Normaal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japans (normaal)"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Verwijderen"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Alles wissen"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Wachtwoordlengte"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Het wachtwoord dat u hebt ingevoerd, veroorzaakt interoperabiliteitsproblemen. Voer een wachtwoord in dat korter is dan 52 bytes of langer dan 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klik om de hyperlink te openen: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Klik om de hyperlink te openen: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(gebruikt door: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Werkblad"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentatie"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Tekening"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Eerder gebruikt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Geen eerder gebruikt"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Alle standaards~jablonen herstellen"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "Standaardsjabloon ~herstellen"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Standaard~sjabloon herstellen"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Standaard~sjabloon herstellen"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Standaard~sjabloon herstellen"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importeren"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensies"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Naam wijzigen"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Categorienaam wijzigen"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Nieuwe categorie"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO Objectinspector"
diff --git a/source/nl/svtools/messages.po b/source/nl/svtools/messages.po
index 1dfccb31f05..863a3743f9e 100644
--- a/source/nl/svtools/messages.po
+++ b/source/nl/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-05-07 01:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1559888382.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Kon geen internetverbinding met $(ARG1) tot stand brengen."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Foutboodschap van server: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Foutboodschap van server: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Er trad een algemene netwerkfout op."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "De opgevraagde netwerkgegevens zijn niet beschikbaar in het cachegeheugen en kunnen niet worden overgedragen omdat de modus online niet actief is."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Er kan geen inhoud worden gemaakt."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Bestandsnaam te lang voor het doelbestandssysteem."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Onjuiste schrijfwijze."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Sla het document in een bestandsindeling van %PRODUCTNAME %PRODUCTVERSION op."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Het maximum aantal documenten dat tegelijk open kan staan, is bereikt. U moet een of meer documenten sluiten voordat u een nieuw document kunt openen."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Kon geen reservekopie maken."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Onjuiste gegevenslengte."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Functie niet mogelijk: pad bevat huidige map."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Functie niet mogelijk: niet hetzelfde apparaat (station)."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Apparaat (station) niet gereed."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Verkeerde controlesom."
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Functie niet mogelijk: alleen-lezen."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Deactiveer eerst de modus Delen."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Indelingsfout in bestand op positie $(ARG1)(rij,kolom)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Het filter voor dit bestandsindeling is uitgeschakeld in de configuratie. Neem contact op met uw systeembeheerder."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Algemene OLE-fout."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Het object kan deze handeling in de huidige toestand niet uitvoeren."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Het object ondersteunt geen handelingen."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Het object ondersteunt deze handeling niet."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) bij activeren van object"
diff --git a/source/nl/svx/messages.po b/source/nl/svx/messages.po
index c97ebb3883b..f68dd6032a1 100644
--- a/source/nl/svx/messages.po
+++ b/source/nl/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-19 01:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/nl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564903866.000000\n"
#. 3GkZj
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Geen randen"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Alleen buitenrand"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Buitenrand en horizontale lijnen"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Buitenrand en alle binnenlijnen"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Buitenrand en verticale lijnen"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Buitenrand zonder binnenlijnen te veranderen"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Alleen diagonale lijnen"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Diagonale onderrand"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Diagonale bovenrand"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Kruislingse rand"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Alle vier de randen"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Alleen linker- en rechterranden"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Alleen boven- en onderranden"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Boven- en onderranden en alle horizontale lijnen"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Alleen linkerrand"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Alleen rechterrand"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Alleen bovenrand"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Alleen onderrand"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Boven- en onderranden en alle binnenlijnen"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Linker- en rechterranden en alle binnenlijnen"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Uit favorieten verwijderen"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Ontbrekend teken"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Aan favorieten toevoegen"
@@ -10281,19 +10331,19 @@ msgstr "Aan favorieten toevoegen"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Grafische groottecontrole"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Afbeelding '%NAME%' heeft te weinig pixels voor de huidige grootte (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Afbeelding '%NAME%' heeft te veel pixels voor de huidige grootte (%DPIX% x %DPIY% DPI)"
diff --git a/source/nl/sw/messages.po b/source/nl/sw/messages.po
index 8ded2a62bd6..9f82a266ac1 100644
--- a/source/nl/sw/messages.po
+++ b/source/nl/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-06-19 01:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: Dutch <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/nl/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lijst 5 Vervolg"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Kop- en voettekst"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,38 +10604,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabel"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Opmaak"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Handmatige bijschriften"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nummering"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Andere"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr "Klik om bij te werken…"
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Frame"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Positie en grootte"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opties"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Omloop"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Randen"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Vlak"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparantie"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Kolommen"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Zet alle wijzigingen die zijn aangebracht op het tabblad dat hier wordt weergegeven, terug naar de instellingen die aanwezig waren toen dit dialoogvenster werd geopend."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Algemeen"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Lettertype"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Teksteffecten"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Positie"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Aziatische indeling"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Markeren"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Randen"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Lijstopmaakprofiel"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Geef gebruikergedefinieerde opmaakprofielen een naam en verberg ze"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Algemeen"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Kies een vooraf gedefinieerd type opsommingsteken"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Ongeordend"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Kies een voorgedefinieerde geordende lijst"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Geordend"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Kies een voorgedefinieerd overzichtsprofiel"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Overzicht"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Kies een voorgedefinieerd grafisch opsommingsteken"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Afbeelding"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Wijzig de inspringing, afstand en uitlijning voor lijstnummers of symbolen"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Positie"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Ontwerp uw eigen lijst- of overzichtsprofiel"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Aanpassen"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Alinea-opmaakprofiel"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Algemeen"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Inspringingen en afstanden"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Uitlijning"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstverloop"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Aziatische typografie"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Lettertype"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Teksteffecten"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Positie"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Aziatische indeling"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Markeren"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabstops"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Initialen"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Vlak"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparantie"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Randen"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Voorwaarde"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Stel overzichtsniveau, lijstopmaakprofiel en regelnummering in voor alinea-opmaakprofiel."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Overzicht en lijst"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Frame-opmaakprofiel"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Algemeen"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opties"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Omloop"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Vlak"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparantie"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Randen"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Kolommen"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standaard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Algemeen"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pagina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Vlak"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparantie"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Koptekst"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Voettekst"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Randen"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Kolommen"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Voetnoot"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstraster"
diff --git a/source/nn/chart2/messages.po b/source/nn/chart2/messages.po
index 741e809bea3..12a2823863b 100644
--- a/source/nn/chart2/messages.po
+++ b/source/nn/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: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2024-04-04 18:43+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547916233.000000\n"
#. NCRDD
@@ -1259,7 +1259,7 @@ msgstr "Flytt rada opp"
#: chart2/uiconfig/ui/chartdatadialog.ui:206
msgctxt "chartdatadialog|extended_tip|MoveUpRow"
msgid "Switches the current row with its neighbor above."
-msgstr "Bytter den gjeldande rada med naboen over. "
+msgstr "Bytter den gjeldande rada med naboen over."
#. TvbuK
#: chart2/uiconfig/ui/chartdatadialog.ui:218
diff --git a/source/nn/cui/messages.po b/source/nn/cui/messages.po
index 5813e39c435..fa73144b3ef 100644
--- a/source/nn/cui/messages.po
+++ b/source/nn/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-25 20:55+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/nn/>\n"
"Language: nn\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Du kan opna ei CSV-fil som eit nytt ark i det gjeldande reknearket ved å bruka «Ark → Set inn ark frå fil»."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Du kan halda fram med å skriva med standard formateringsattributt etter manuelt bruk av halvfeit, kursiv eller understreka ved å trykkja %MOD1 + Shift + X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -2576,7 +2576,7 @@ msgstr "Bruk «%MOD1 + %MOD2 + Shift + V» for å lima inn innhaldet i utklippst
#: cui/inc/tipoftheday.hrc:122
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Customize footnote appearance with Tools ▸ Footnote/Endnote Settings…"
-msgstr "Du kan tilpassa fotnotar med «Verktøy → Fotnotar og sluttnotar …»."
+msgstr "Du kan tilpassa fotnotar med «Verktøy → Fotnotar og sluttnotar …»"
#. muc5F
#: cui/inc/tipoftheday.hrc:123
@@ -3156,7 +3156,7 @@ msgstr "Bruk «Ark → Fyll celler → Tilfeldige tal» for å generera tilfeldi
#: cui/inc/tipoftheday.hrc:216
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…"
-msgstr "Gi lysbileta i Impress logiske namn som gjer det enklare å bruka «Gå til side» og å laga eit samandrag som er meir forståeleg enn Bilete-1, Bilete-2 osv."
+msgstr "Gi lysbileta i Impress logiske namn som gjer det enklare å bruka «Gå til side» og å laga eit samandrag som er meir forståeleg enn Bilete-1, Bilete-2…"
#. iLWEo
#: cui/inc/tipoftheday.hrc:217
@@ -15276,7 +15276,7 @@ msgstr "Ignorer _skriftinnstillingar"
#: cui/uiconfig/ui/opthtmlpage.ui:443
msgctxt "extended_tip|ignorefontnames"
msgid "Mark this check box to ignore all font settings when importing. The fonts that were defined in the HTML Page Style will be the fonts that will be used. "
-msgstr "Merk av i denne avkryssingsboksen for å ignorera alle skriftinnstillingar ved import. Skrifttypane definerte i stilen for HTML-sida vert då brukte."
+msgstr "Merk av i denne avkryssingsboksen for å ignorera alle skriftinnstillingar ved import. Skrifttypane definerte i stilen for HTML-sida vert då brukte. "
#. 7bZSP
#: cui/uiconfig/ui/opthtmlpage.ui:454
@@ -15762,7 +15762,7 @@ msgstr "_Ignorer inndataspråket til systemet"
#: cui/uiconfig/ui/optlanguagespage.ui:379
msgctxt "extended_tip|ignorelanguagechange"
msgid "Indicates whether changes to the system input language/keyboard will be ignored. If ignored, when new text is typed that text will follow the language of the document or current paragraph, not the current system language."
-msgstr "Bestemmer om endringar i språkval for systemet og for tastaturet skal ignorerast eller ikkje. Viss dette vert ignorert, vil ny tekst som vert skrive inn følgja språket i dokumentet eller det gjeldande avsnittet, ikkje systemspråket. "
+msgstr "Bestemmer om endringar i språkval for systemet og for tastaturet skal ignorerast eller ikkje. Viss dette vert ignorert, vil ny tekst som vert skrive inn følgja språket i dokumentet eller det gjeldande avsnittet, ikkje systemspråket."
#. 83eTv
#: cui/uiconfig/ui/optlanguagespage.ui:407
@@ -16458,13 +16458,13 @@ msgstr "minutt"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Lagra dokumentet automatisk i staden"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Spesifiserer at kontorpakka lagrar sjølve det modifiserte dokumentet i staden for å oppretta ein mellombels autogjenopprettingsversjon. Brukar same tidsintervall som AutoRecovery gjer."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
@@ -16771,7 +16771,7 @@ msgstr "Passord for nettilkoplingar"
#: cui/uiconfig/ui/optsecuritypage.ui:546
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
-msgstr "Juster tryggingsrelaterte innstillingar og definer åtvaringar for gøymd informasjon i dokument."
+msgstr "Juster tryggingsrelaterte innstillingar og definer åtvaringar for gøymd informasjon i dokument. "
#. CBnzU
#: cui/uiconfig/ui/optsecuritypage.ui:559
diff --git a/source/nn/desktop/messages.po b/source/nn/desktop/messages.po
index af637b46c3e..53118aba302 100644
--- a/source/nn/desktop/messages.po
+++ b/source/nn/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: 2023-09-12 14:56+0200\n"
-"PO-Revision-Date: 2023-10-09 07:36+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/desktopmessages/nn/>\n"
"Language: nn\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.18.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1536333213.000000\n"
#. v2iwK
@@ -680,7 +680,7 @@ msgstr "Start oppsettsprogrammet for å reparera installasjonen frå CD-en eller
#: desktop/inc/strings.hrc:168
msgctxt "STR_CONFIG_ERR_ACCESS_GENERAL"
msgid "A general error occurred while accessing your central configuration. "
-msgstr "Det oppstod ein generell feil ved tilgang til det sentrale oppsettet."
+msgstr "Det oppstod ein generell feil ved tilgang til det sentrale oppsettet. "
#. zBSDM
#: desktop/inc/strings.hrc:169
diff --git a/source/nn/extras/source/autocorr/emoji.po b/source/nn/extras/source/autocorr/emoji.po
index 09ef8b8ef61..5cce9c4dc62 100644
--- a/source/nn/extras/source/autocorr/emoji.po
+++ b/source/nn/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: 2024-06-14 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/extrassourceautocorremoji/nn/>\n"
"Language: nn\n"
@@ -4364,7 +4364,7 @@ msgctxt ""
"LAST_QUARTER_MOON_WITH_FACE\n"
"LngText.text"
msgid "moon2"
-msgstr "avtakande måne med ansikt "
+msgstr "avtakande måne med anlete"
#. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji
#. 2W3Lv
diff --git a/source/nn/filter/messages.po b/source/nn/filter/messages.po
index e536dc76604..515a6aefe10 100644
--- a/source/nn/filter/messages.po
+++ b/source/nn/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: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-02-05 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563563369.000000\n"
#. 5AQgJ
@@ -1713,7 +1713,7 @@ msgstr "Bla gjennom …"
#: filter/uiconfig/ui/testxmlfilter.ui:117
msgctxt "testxmlfilter|extended_tip|exportbrowse"
msgid "Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation."
-msgstr "Finn fila du vi bruka XML eksportfilteret på. XML-koden til den omforma fila vert opna i standard XML-redigeraren etter omforminga. "
+msgstr "Finn fila du vi bruka XML eksportfilteret på. XML-koden til den omforma fila vert opna i standard XML-redigeraren etter omforminga."
#. F8CJd
#: filter/uiconfig/ui/testxmlfilter.ui:128
diff --git a/source/nn/formula/messages.po b/source/nn/formula/messages.po
index dde9b8061d7..7d0349679a8 100644
--- a/source/nn/formula/messages.po
+++ b/source/nn/formula/messages.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-15 01:45+0000\n"
-"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
+"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/formulamessages/nn/>\n"
"Language: nn\n"
"MIME-Version: 1.0\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564508002.000000\n"
#. YfKFn
@@ -2523,7 +2523,7 @@ msgstr "NETTADRESSEKODE"
#: formula/inc/core_resource.hrc:2761
msgctxt "RID_STRLIST_FUNCTION_NAMES"
msgid "RAWSUBTRACT"
-msgstr "RÅSUBTRAKSJON (RAWSUBTRACT på engelsk)"
+msgstr "RÅSUBTRAKSJON"
#. DgyUW
#: formula/inc/core_resource.hrc:2762
@@ -2852,7 +2852,7 @@ msgstr "Vel"
#: formula/uiconfig/ui/structpage.ui:28
msgctxt "structpage|label1"
msgid "Content:"
-msgstr ""
+msgstr "Innhald:"
#. KGSPW
#: formula/uiconfig/ui/structpage.ui:77
diff --git a/source/nn/helpcontent2/source/text/sbasic/guide.po b/source/nn/helpcontent2/source/text/sbasic/guide.po
index b95c9bb1fca..496faa6a06b 100644
--- a/source/nn/helpcontent2/source/text/sbasic/guide.po
+++ b/source/nn/helpcontent2/source/text/sbasic/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-10-11 14:17+0200\n"
-"PO-Revision-Date: 2023-10-24 14:38+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicguide/nn/>\n"
"Language: nn\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.18.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1563873716.000000\n"
#. WcTKB
@@ -131,7 +131,7 @@ msgctxt ""
"par_idA2B012\n"
"help.text"
msgid "the <emph>DLookup</emph>, <emph>DSum</emph>, ... database functions,"
-msgstr "databasefunksjonane <emph>DLookup</emph>, <emph>DSum</emph>, …"
+msgstr "databasefunksjonane <emph>DLookup</emph>, <emph>DSum</emph>,"
#. jeLAg
#: access2base.xhp
diff --git a/source/nn/helpcontent2/source/text/sbasic/shared.po b/source/nn/helpcontent2/source/text/sbasic/shared.po
index 41f35ec4970..c9a0152913a 100644
--- a/source/nn/helpcontent2/source/text/sbasic/shared.po
+++ b/source/nn/helpcontent2/source/text/sbasic/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-09 12:10+0200\n"
-"PO-Revision-Date: 2024-04-05 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsbasicshared/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1566317546.000000\n"
#. yzYVt
@@ -37787,7 +37787,7 @@ msgctxt ""
"N0079\n"
"help.text"
msgid "' your code goes here …"
-msgstr "' her kjem koden din"
+msgstr "' her kjem koden din …"
#. wEaa3
#: ErrVBA.xhp
@@ -39578,7 +39578,7 @@ msgctxt ""
"N0109\n"
"help.text"
msgid "Multiple thorough class examples are available from <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
-msgstr "Fleire grundige eksempel på klasse er tilgjengelege på <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>. "
+msgstr "Fleire grundige eksempel på klasse er tilgjengelege på <link href=\"text/sbasic/guide/access2base.xhp\">Access2Base shared Basic library</link>."
#. vSapF
#: collection.xhp
diff --git a/source/nn/helpcontent2/source/text/scalc/01.po b/source/nn/helpcontent2/source/text/scalc/01.po
index 2edb4ac1d9c..5be85c225fd 100644
--- a/source/nn/helpcontent2/source/text/scalc/01.po
+++ b/source/nn/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-15 09:45+0000\n"
+"PO-Revision-Date: 2024-06-24 09:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565441848.000000\n"
#. sZfWF
@@ -54599,7 +54599,7 @@ msgctxt ""
"par_id431716730587722\n"
"help.text"
msgid "Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present."
-msgstr ""
+msgstr "Kva som helst av dei valfrie innstillingane kan sløydast. Ei valfri innstillinga krev at alle dei føregåande skiljeteikna er til stades."
#. GAPGX
#: common_func_workdaysintl.xhp
@@ -57173,7 +57173,7 @@ msgctxt ""
"par_id711715953325962\n"
"help.text"
msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>. You can however, use the mode modifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> to force search for a case-sensitive match."
-msgstr ""
+msgstr "Funksjonen skil ikkje mellom <emph>små og store bokstavar</emph>, uavhengig av kva som er sett for <emph>Skil mellom store og små bokstavar</emph> i <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>% PRODUCTNAME → Innstillingar</menuitem></caseinline><defaultinline><menuitem>Verktøy → Innstillingar</menuitem></defaultinline></switchinline> → <link href=\"text/shared/optionen/01060500.xhp\"> <menuitem>%PRODUCTNAME Calc → Renk ut</menuitem></link>. Du kan imidlartid bruka modusmodifikatoren <emph>(?-i)</emph> i <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link> for å tvinga fram søk som skil mellom store og små bokstavar."
#. 8DbP2
#: func_aggregate.xhp
@@ -71749,7 +71749,7 @@ msgctxt ""
"par_id631708282151776\n"
"help.text"
msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) or regular expressions for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
-msgstr ""
+msgstr "Funksjonen XSLÅ.OPP er ein nyare og fleksibel erstatning for eldre funksjonar som <link href=\"text/scalc/01/04060109.xhp#Section9\">FINN.RAD</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">FINN.KOLONNE</link> og <link href=\"text/scalc/01/04060109.xhp#Section14\">SLÅ.OPP</link>. XSLÅ.OPP har støtte for omtrentleg og eksakt samsvar, jokerteikn (* ?) eller regulære uttrykk for delvise treff og oppslag i loddrette eller vassrette område. XSLÅ.OPP kan utføra eit omvendt søk og tilbyr eit raskt binært søkealternativ når du arbeidar med store datasett."
#. TwFcc
#: func_xlookup.xhp
@@ -71848,7 +71848,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: eit <link href=\"text/scalc/guide/wildcards.xhp\">jokerteikn</link> samsvarar der teikna *, ? og ~ har spesielle tydningar, eller samsvar med <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link>."
#. EqTBc
#: func_xlookup.xhp
@@ -71902,7 +71902,7 @@ msgctxt ""
"par_id551718627629229\n"
"help.text"
msgid "<emph>MatchType</emph> value 2 cannot be combined with binary search (<emph>SearchMode</emph> value <emph>2</emph> or <emph>-2</emph>)."
-msgstr ""
+msgstr "<emph>Trefftype</emph> verdi 2 kan ikkje kombinerast med binært søk (<emph>Søkjemodus</emph> verdi <emph>2</emph> eller <emph>-2</emph>)."
#. fHQrZ
#: func_xlookup.xhp
@@ -72028,7 +72028,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>Trefftype</emph>: (valfri) spesifiserer samsvarstypen. Verdiar kan vera:"
#. jmwqp
#: func_xmatch.xhp
@@ -72037,7 +72037,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>: eksakt samsvar (standard). Viss <emph>Slåopp</emph>-verdien ikkje vert funne, vert feilen #I/T returnert."
#. 9SMUK
#: func_xmatch.xhp
@@ -72046,7 +72046,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: forsøk på eksakt samsvar. Viss <emph>Slåopp</emph>-verdien ikkje finnst, vert det neste, mindre elementet returnert."
#. hwonA
#: func_xmatch.xhp
@@ -72055,7 +72055,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>1</emph>: forsøk på eksakt samsvar. Viss <emph>Slåopp</emph>-verdien ikkje finnst, vert det neste, større elementet returnert."
#. y5cx9
#: func_xmatch.xhp
@@ -72064,7 +72064,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: eit <link href=\"text/scalc/guide/wildcards.xhp\">jokerteikn</link> samsvarar der teikna *, ? og ~ har spesielle tydningar eller samsvar med <link href=\"text/shared/01/02100001.xhp\">regulære uttrykk</link>."
#. WMXaP
#: func_xmatch.xhp
diff --git a/source/nn/helpcontent2/source/text/schart.po b/source/nn/helpcontent2/source/text/schart.po
index e63d7ac8858..0cff3626867 100644
--- a/source/nn/helpcontent2/source/text/schart.po
+++ b/source/nn/helpcontent2/source/text/schart.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-12-07 19:22+0100\n"
-"PO-Revision-Date: 2020-12-04 19:32+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
-"Language-Team: Norwegian Nynorsk <https://weblate.documentfoundation.org/projects/libo_help-master/textschart/nn/>\n"
+"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textschart/nn/>\n"
"Language: nn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1526500748.000000\n"
#. wtFDe
@@ -689,7 +689,7 @@ msgctxt ""
"hd_id0810200902300555\n"
"help.text"
msgid "Format Selection"
-msgstr "Formater utvalet …"
+msgstr "Formater utvalet"
#. BSwBH
#: main0202.xhp
diff --git a/source/nn/helpcontent2/source/text/schart/01.po b/source/nn/helpcontent2/source/text/schart/01.po
index 345bef394da..2922e84638d 100644
--- a/source/nn/helpcontent2/source/text/schart/01.po
+++ b/source/nn/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-26 22:05+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547758081.000000\n"
#. DsZFP
@@ -2786,7 +2786,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Format Selection"
-msgstr "Formater utvalet …"
+msgstr "Formater utvalet"
#. JGKU8
#: 05010000.xhp
@@ -2804,7 +2804,7 @@ msgctxt ""
"hd_id3149666\n"
"help.text"
msgid "Format Selection"
-msgstr "Formater utvalet …"
+msgstr "Formater utvalet"
#. mefpJ
#: 05010000.xhp
diff --git a/source/nn/helpcontent2/source/text/shared.po b/source/nn/helpcontent2/source/text/shared.po
index c9421a8438f..ed0870e721d 100644
--- a/source/nn/helpcontent2/source/text/shared.po
+++ b/source/nn/helpcontent2/source/text/shared.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-27 12:59+0200\n"
-"PO-Revision-Date: 2024-05-28 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textshared/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547488937.000000\n"
#. fcmzq
@@ -2192,7 +2192,7 @@ msgctxt ""
"par_id9116183\n"
"help.text"
msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
-msgstr "Før du kan bruka ein JDBC-drivar, må du leggja til klassestien han har. Vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Innstillingar</emph></caseinline><defaultinline><emph>Verktøy → Innstillingar</emph></defaultinline></switchinline><emph> → %PRODUCTNAME → Avansert</emph> og klikk på knappen «Klassesti». Start om att %PRODUCTNAME etter at du har lagt inn informasjonen om stien."
+msgstr "Før du kan bruka ein JDBC-drivar, må du leggja til klassestien han har. Vel <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Innstillingar</caseinline><defaultinline>Verktøy → Innstillingar</defaultinline></switchinline> → %PRODUCTNAME → Avansert og klikk på knappen «Klassesti». Start om att %PRODUCTNAME etter at du har lagt inn informasjonen om stien."
#. 9YUwB
#: main0650.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/00.po b/source/nn/helpcontent2/source/text/shared/00.po
index 11082e0e8a4..12ec2ee2cad 100644
--- a/source/nn/helpcontent2/source/text/shared/00.po
+++ b/source/nn/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/nn/>\n"
"Language: nn\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Tilbakestill til opphavet"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Verdiane i denne fana vert sette til dei tilsvarande verdiane i stilen som er gjeve i «Arva frå» i handsamaren. I alle tilfella, også når «Arva frå» er «- Ingen -», vert dei noverande faneverdiane som er spesifiserte i «Inneheld» fjerna."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -797,7 +797,7 @@ msgctxt ""
"par_id261527693436801\n"
"help.text"
msgid "Some options cannot be reset once edited. Either edit back the changes manually or click <emph>Cancel</emph> and reopen the <emph>Options</emph> dialog."
-msgstr "Nokre av vala kan ikkje tilbakestillast når dei først er sett. Skriv inn det opphavlege valet manuelt eller trykk <emph>Avbryt</emph> og opna dialogvindauget på nytt."
+msgstr "Nokre av vala kan ikkje tilbakestillast når dei først er redigert. Du må anten skriva inn det opphavlege innhaldet manuelt eller trykkja <emph>Avbryt</emph> og opna dialogvindauget på nytt."
#. kUnd2
#: 00000002.xhp
@@ -1193,7 +1193,7 @@ msgctxt ""
"hd_id3159125\n"
"help.text"
msgid "Java"
-msgstr "Java "
+msgstr "Java"
#. PWzh7
#: 00000002.xhp
@@ -4955,7 +4955,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the <emph>Styles</emph> window."
-msgstr "I <emph>styles.xml</emph> finn du stilane som er brukte på dokumentet. Desse stilane finn du i stilhandsamaren."
+msgstr "I <emph>styles.xml</emph> finn du stilane som er brukte på dokumentet. Desse stilane finn du i vindauget <emph>Stilar</emph>."
#. 8rXuY
#: 00000021.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "På fana <menuitem>Verktøy</menuitem> klikkar du på knappen <menuitem>Alternativ</menuitem> og opnar deretter <menuitem>Last inn/lagra → Generelt</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vel fana <emph>Format → Celler → Bakgrunn</emph></caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Vel fana <menuitem>Format → Side → Handsamar</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Vel fana <menuitem>Stilar → Rediger stil → Handsam</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Vel <menuitem>Stilar → Handsam stilar</menuitem> – opna sprettoppmenyen og vel fana <menuitem>Ny/Rediger stil → Handsamar</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Vel fana <menuitem>Format → Sidestil → Handsam</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Vel <menuitem>Stilar → Handsam stilar</menuitem> – opna sprettoppmenyen og vel fana <menuitem>Ny/Rediger stil → Handsamar</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Vel fana <menuitem>Format → Stilar → Rediger stil → Handsam</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Vel <menuitem>Format → Stilar → Handsam stilar</menuitem> – opna sprettoppmenyen og vel fana <menuitem>Ny/Rediger stil → Handsamar</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Vel fana <menuitem>Lysbilete → Innstillingar → Lysbilete</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Vel <menuitem>Vis → Stilar</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Kommando + T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> opna sprettoppmenyen og vel fana <menuitem>Ny/Rediger stil → Handsamar</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
@@ -19265,7 +19265,7 @@ msgctxt ""
"par_id3083278\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\" visibility=\"visible\">Bestemmer korleis eit vald biletobjekt skal setjast inn i eit dokument.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Bestemmer korleis eit vald biletobjekt skal setjast inn i eit dokument.</ahelp>"
#. b8o6a
#: 01010000.xhp
@@ -19310,7 +19310,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
-msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\" visibility=\"visible\">Slettar den valde grafikken etter stadfesting.</ahelp>"
+msgstr "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Slettar den valde grafikken etter stadfesting.</ahelp>"
#. 5hJ6a
#: 01020000.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/01.po b/source/nn/helpcontent2/source/text/shared/01.po
index 559ece92b80..6136254aa6d 100644
--- a/source/nn/helpcontent2/source/text/shared/01.po
+++ b/source/nn/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-15 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565284139.000000\n"
#. 3u8hR
@@ -6926,7 +6926,7 @@ msgctxt ""
"par_idN10630\n"
"help.text"
msgid "To change the number of commands that you can undo, go to the <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Expert configuration</emph></link> and set a new value of the property \"/org.openoffice.Office.Common/Undo Steps\"."
-msgstr "For å endra kor mange kommandoar du kan angra, gå til <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Opna avanserte innstillingar</emph></link> og endra verdien for «/org.openoffice.Office.Common/Undo Steps». "
+msgstr "For å endra kor mange kommandoar du kan angra, gå til <link href=\"text/shared/optionen/expertconfig.xhp\"><emph>Opna avanserte innstillingar</emph></link> og endra verdien for «/org.openoffice.Office.Common/Undo Steps»."
#. NcK37
#: 02010000.xhp
@@ -14837,7 +14837,7 @@ msgctxt ""
"par_id3155390\n"
"help.text"
msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Edit Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
-msgstr "For å redigera ein synleg merknad, dobbeltklikk på teksten. For å redigera ein merknad som ikkje er synleg, dobbeltklikk i cella som inneheld merknaden og vel deretter <emph>Rediger merknad</emph>. For å endra formateringa av merknadsteksten, høgreklikk på teksten i redigeringsmodus. "
+msgstr "For å redigera ein synleg merknad, dobbeltklikk på teksten. For å redigera ein merknad som ikkje er synleg, dobbeltklikk i cella som inneheld merknaden og vel deretter <emph>Rediger merknad</emph>. For å endra formateringa av merknadsteksten, høgreklikk på teksten i redigeringsmodus."
#. GeVZN
#: 04050000.xhp
@@ -17915,7 +17915,7 @@ msgctxt ""
"par_id3146927\n"
"help.text"
msgid "Denominator value can also be forced to the value replacing placeholders. For example, to get PI value as a multiple of 1/16th (i.e. 50/16), use format:"
-msgstr "Nemnaren kan også tvingast til å visa verdien som erstattar plasshaldaren. For å visa PI som sekstendelar (dvs. 50/16), bruk formatet "
+msgstr "Nemnaren kan også tvingast til å visa verdien som erstattar plasshaldaren. For å visa PI som sekstendelar (dvs. 50/16), bruk formatet:"
#. JGrQ3
#: 05020301.xhp
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Stiller storleiken på grafikken tilbake til den opphavlege storleiken.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organisering"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>administrera; stilar</bookmark_value><bookmark_value>stilar; administrera</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organisering</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
@@ -25628,7 +25628,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Aligns the selected paragraph(s) to the left and the right container margins. If you want, you can also specify the alignment options for the last line of a paragraph by choosing <menuitem>Format - Paragraph - Alignment</menuitem>.</ahelp></variable>"
-msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Blokkjusterer det/dei valde avsnittet/avsnitta til begge margane. Du skal også kunna setja opp justeringsinnstillingar for den siste linja i eit avsnitt ved å velja <<menuitem>Format → Avsnitt → Justering</menuitem>.</ahelp></variable>"
+msgstr "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Blokkjusterer det/dei valde avsnittet/avsnitta til begge margane. Du skal også kunna setja opp justeringsinnstillingar for den siste linja i eit avsnitt ved å velja <menuitem>Format → Avsnitt → Justering</menuitem>.</ahelp></variable>"
#. 2fGVE
#: 05090000.xhp
@@ -37643,7 +37643,7 @@ msgctxt ""
"par_idN10566\n"
"help.text"
msgid "You can use this dialog to edit, to add, or to delete entries from the conversion dictionary. The file path name for the conversion dictionary is user/wordbook/commonterms.ctd. You cannot delete the default entries in this file."
-msgstr "Du kan bruka dette dialogvindauget til å redigera, leggja til eller sletta oppføringar i konverteringsordlista. Namnet på filstien for konverteringsordlista er «user/wordbook/commonterms.ctd». Du kan ikkje sletta standardoppføringane i denne fila. "
+msgstr "Du kan bruka dette dialogvindauget til å redigera, leggja til eller sletta oppføringar i konverteringsordlista. Namnet på filstien for konverteringsordlista er «user/wordbook/commonterms.ctd». Du kan ikkje sletta standardoppføringane i denne fila."
#. fWL3f
#: 06010601.xhp
@@ -41641,7 +41641,7 @@ msgctxt ""
"par_id3150008\n"
"help.text"
msgid "Lets you record or organize and edit macros."
-msgstr "Let deg ta opp eller organisera og redigera makroar. "
+msgstr "Let deg ta opp eller organisera og redigera makroar."
#. 2BBvC
#: 06130001.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/02.po b/source/nn/helpcontent2/source/text/shared/02.po
index 4bd4f76694c..7a9cb3fdd9d 100644
--- a/source/nn/helpcontent2/source/text/shared/02.po
+++ b/source/nn/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-10 14:48+0200\n"
-"PO-Revision-Date: 2024-06-15 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/nn/>\n"
"Language: nn\n"
@@ -9239,7 +9239,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<variable id=\"text\"><ahelp hid=\".uno:AddField\">Opens a window where you can select a database field to add to the form or report.</ahelp></variable>"
-msgstr "<variable id=\"text\"><ahelp hid=\".uno:AddField\" visibility=\"visible\">Opnar eit vindauge der du kan velja eit databasefelt du vil leggja til i skjemaet eller rapporten.</ahelp></variable>"
+msgstr "<variable id=\"text\"><ahelp hid=\".uno:AddField\">Opnar eit vindauge der du kan velja eit databasefelt du vil leggja til i skjemaet eller rapporten.</ahelp></variable>"
#. r4SGa
#: 01170400.xhp
@@ -11390,7 +11390,7 @@ msgctxt ""
"par_id3149784\n"
"help.text"
msgid "On the <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Text</emph></defaultinline></switchinline> <emph>Formatting</emph> bar, click the arrow next to the <emph>Character Highlighting Color</emph> icon, and then click <emph>No Fill</emph>."
-msgstr "Trykk på pila ved sida av ikonet <emph>Uthevingsfarge for teikn</emph> og deretter på <emph>Ikkje fyll</emph> på verktøylinja <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Tekst</emph></defaultinline></switchinline>."
+msgstr "Trykk på pila ved sida av ikonet <emph>Uthevingsfarge for teikn</emph> og deretter på <emph>Ikkje fyll</emph> på linja <emph>Formatering</emph> på verktøylinja <switchinline select=\"appl\"><caseinline select=\"WRITER\"/><defaultinline><emph>Tekst</emph></defaultinline></switchinline>."
#. yDDr8
#: 02160000.xhp
@@ -12947,7 +12947,7 @@ msgctxt ""
"bm_id3163829\n"
"help.text"
msgid "<bookmark_value>records; saving</bookmark_value>"
-msgstr "<bookmark_value>postar; lagra</bookmark_value><bookmark_value>datapostar; lagra</bookmark_value>"
+msgstr "<bookmark_value>datapostar; lagra</bookmark_value>"
#. sUCih
#: 07070200.xhp
@@ -17744,7 +17744,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "<ahelp hid=\".uno:SelectObject\">Allows you to select objects in the current document.</ahelp>"
-msgstr "<ahelp hid=\".uno:SelectObject\" visibility=\"visible\">Gjer det mogleg å velja objekt i dette dokumentet.</ahelp>"
+msgstr "<ahelp hid=\".uno:SelectObject\">Gjer det mogleg å velja objekt i dette dokumentet.</ahelp>"
#. tCJCT
#: 18010000.xhp
@@ -17978,7 +17978,7 @@ msgctxt ""
"par_id3148983\n"
"help.text"
msgid "<ahelp hid=\".uno:StateZoom\">Specifies the current page display zoom factor.</ahelp>"
-msgstr "<ahelp hid=\".uno:StateZoom\" visibility=\"visible\">Viser den gjeldande skaleringsfaktoren for sidevisinga.</ahelp>"
+msgstr "<ahelp hid=\".uno:StateZoom\">Viser den gjeldande skaleringsfaktoren for sidevisinga.</ahelp>"
#. dfT2m
#: 20030000.xhp
@@ -19202,7 +19202,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "<ahelp hid=\".uno:GrafBlue\">Specifies the proportion of blue RGB color components for the selected graphic.</ahelp> Values from -100% (no blue) to +100% (full blue) are possible."
-msgstr "<ahelp hid=\".uno:GrafBlue\" visibility=\"visible\">I denne talboksen kan du velja kor mykje blåfarge (i RGB-modellen) som skal visast i det valde biletobjektet.</ahelp> Du kan velja verdiar frå -100 % (ingen blåfarge) til +100 % (heilt blått)."
+msgstr "<ahelp hid=\".uno:GrafBlue\">I denne talboksen kan du velja kor mykje blåfarge (i RGB-modellen) som skal visast i det valde biletobjektet.</ahelp> Du kan velja verdiar frå -100 % (ingen blåfarge) til +100 % (heilt blått)."
#. KLqMu
#: 24050000.xhp
@@ -19364,7 +19364,7 @@ msgctxt ""
"par_id3154873\n"
"help.text"
msgid "<ahelp hid=\".uno:GrafGamma\">Specifies the gamma value for the view of the selected object, which affects the brightness of the midtone values.</ahelp> Values from 0.10 (minimum Gamma) to 10 (maximum Gamma) are possible."
-msgstr "<ahelp hid=\".uno:GrafGamma\" visibility=\"visible\">Bestemmer gammaverdien for vising av det valde objektet. Dette påverkar lysstyrken til midttoneverdiar.</ahelp> Du kan velja verdiar frå 0,10 (minste Gamma) til 10 (største Gamma)."
+msgstr "<ahelp hid=\".uno:GrafGamma\">Bestemmer gammaverdien for vising av det valde objektet. Dette påverkar lysstyrken til midttoneverdiar.</ahelp> Du kan velja verdiar frå 0,10 (minste Gamma) til 10 (største Gamma)."
#. EimsU
#: 24080000.xhp
@@ -19418,7 +19418,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".uno:GrafTransparence\">Specifies the transparency in the graphic object.</ahelp> Values from 0% (fully opaque) to +100% (fully transparent) are possible."
-msgstr "<ahelp hid=\".uno:GrafTransparence\" visibility=\"visible\">Bestemmer kor gjennomsiktig biletobjektet skal vera.</ahelp> Du kan velja verdiar frå 0 % (ugjennomsiktig) til 100 % (heilt gjennomsiktig)."
+msgstr "<ahelp hid=\".uno:GrafTransparence\">Bestemmer kor gjennomsiktig biletobjektet skal vera.</ahelp> Du kan velja verdiar frå 0 % (ugjennomsiktig) til 100 % (heilt gjennomsiktig)."
#. WpgDc
#: 24090000.xhp
@@ -19580,7 +19580,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Block Arrows toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja <emph>Blokkpiler</emph> og dra det inn i dokumentet for å teikna forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja «Blokkpiler» og dra det inn i dokumentet for å teikna forma.</ahelp>"
#. 6gEA6
#: blockarrows.xhp
@@ -19625,7 +19625,7 @@ msgctxt ""
"par_idN1056A\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Callouts toolbar from which you can insert graphics into your document.</ahelp>"
-msgstr "<ahelp hid=\".\">Opnar verktøylinja <emph>Snakkebobler</emph> som du kan bruka til å setja bilete inn i dokumentet.</ahelp>"
+msgstr "<ahelp hid=\".\">Opnar verktøylinja «Snakkebobler» som du kan bruka til å setja bilete inn i dokumentet.</ahelp>"
#. 45o2F
#: callouts.xhp
@@ -19634,7 +19634,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Callouts toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja <emph>Snakkebobler</emph> og dra det inn i dokumentet for å teikna forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja «Snakkebobler» og dra det inn i dokumentet for å teikna forma.</ahelp>"
#. p5yPJ
#: callouts.xhp
@@ -19814,7 +19814,7 @@ msgctxt ""
"par_idN10597\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon from the Flowchart toolbar, then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja <emph>Flytdiagram</emph> og dra det inn i dokumentet for å teikna forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja «Flytdiagram» og dra det inn i dokumentet for å teikna forma.</ahelp>"
#. LnnWd
#: fontwork.xhp
@@ -20372,7 +20372,7 @@ msgctxt ""
"par_idN10594\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon on the Stars and Banners toolbar, and then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja <emph>Stjerner</emph> og dra det inn i dokumentet for å teikna forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja «Stjerner» og dra det inn i dokumentet for å teikna forma.</ahelp>"
#. GGWAe
#: stars.xhp
@@ -20417,7 +20417,7 @@ msgctxt ""
"par_idN105EB\n"
"help.text"
msgid "<ahelp hid=\".\">Click an icon on the Symbol Shapes toolbar, and then drag in the document to draw the shape.</ahelp>"
-msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja <emph>Symbolformer</emph> og dra det inn i dokumentet for å teikna forma.</ahelp>"
+msgstr "<ahelp hid=\".\">Trykk på eit ikon på verktøylinja «Symbolformer» og dra det inn i dokumentet for å teikna forma.</ahelp>"
#. 65sGS
#: symbolshapes.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/05.po b/source/nn/helpcontent2/source/text/shared/05.po
index d9322170aa7..06d33656d11 100644
--- a/source/nn/helpcontent2/source/text/shared/05.po
+++ b/source/nn/helpcontent2/source/text/shared/05.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-02-02 00:04+0100\n"
-"PO-Revision-Date: 2024-02-05 09:46+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textshared05/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1544801877.000000\n"
#. WPTtk
@@ -1427,7 +1427,7 @@ msgctxt ""
"par_id801534964285706\n"
"help.text"
msgid "Available only in the online version, select the language to display the current help page."
-msgstr "Berre tilgjengeleg i nettversjonen. Vel språket for visinga av den gjeldande hjelpsida. "
+msgstr "Berre tilgjengeleg i nettversjonen. Vel språket for visinga av den gjeldande hjelpsida."
#. xL9E7
#: new_help.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/autopi.po b/source/nn/helpcontent2/source/text/shared/autopi.po
index a24ee1aa75e..874986077e0 100644
--- a/source/nn/helpcontent2/source/text/shared/autopi.po
+++ b/source/nn/helpcontent2/source/text/shared/autopi.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-09-28 12:40+0200\n"
-"PO-Revision-Date: 2023-04-07 05:34+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsharedautopi/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1529490310.000000\n"
#. hCAzG
@@ -5441,7 +5441,7 @@ msgctxt ""
"par_id3148944\n"
"help.text"
msgid "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">Indicates that the documents are to be converted.</ahelp>"
-msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\" visibility=\"visible\">Merk dette feltet dersom dokumenta skal konverterast.</ahelp>"
+msgstr "<ahelp hid=\"HID_DLGIMPORT_2_CBDOCUMENT\">Indikerer at dokumenta skal konverterast.</ahelp>"
#. YDwV9
#: 01130200.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/help.po b/source/nn/helpcontent2/source/text/shared/help.po
index 40b1b7bf115..7b80a623858 100644
--- a/source/nn/helpcontent2/source/text/shared/help.po
+++ b/source/nn/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2023-12-22 09:45+0000\n"
+"PO-Revision-Date: 2024-06-22 09:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565208020.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">LibreOffice Bøker</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/nn/helpcontent2/source/text/shared/optionen.po b/source/nn/helpcontent2/source/text/shared/optionen.po
index 7aa76f2cefd..06ada8f0c79 100644
--- a/source/nn/helpcontent2/source/text/shared/optionen.po
+++ b/source/nn/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsharedoptionen/nn/>\n"
"Language: nn\n"
@@ -932,15 +932,15 @@ msgctxt ""
"hd_id3154909\n"
"help.text"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Lagra dokumentet automatisk i staden"
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
@@ -1310,7 +1310,7 @@ msgctxt ""
"bm_id3149514\n"
"help.text"
msgid "<bookmark_value>paths; defaults</bookmark_value><bookmark_value>variables; for paths</bookmark_value><bookmark_value>directories;directory structure</bookmark_value><bookmark_value>files and folders in $[officename]</bookmark_value>"
-msgstr "<bookmark_value>stiar; standardar</bookmark_value><bookmark_value>variablar; for stiar</bookmark_value><bookmark_value>mapper; mappestruktur</bookmark_value><bookmark_value>katalogar; mappestruktur</bookmark_value><bookmark_value>filer og mapper i $[officename]</bookmark_value>"
+msgstr "<bookmark_value>stiar; standardar</bookmark_value><bookmark_value>variablar; for stiar</bookmark_value><bookmark_value>mapper; mappestruktur</bookmark_value><bookmark_value>filer og mapper i $[officename]</bookmark_value>"
#. isFG4
#: 01010300.xhp
@@ -5252,7 +5252,7 @@ msgctxt ""
"par_id4571977\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Enter Master Password dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Opnar dialogvindauget <emph>Oppgje hovudpassord</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Opnar dialogvindauget «Oppgje hovudpassord».</ahelp>"
#. CaAgb
#: 01030300.xhp
@@ -5297,7 +5297,7 @@ msgctxt ""
"par_id3472090\n"
"help.text"
msgid "<ahelp hid=\".\">Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog.</ahelp>"
-msgstr "<ahelp hid=\".\">Du vert spurd om hovudpassordet. Dersom du oppgjev det rette passordet, vert dialogvindauget <emph>Lagra informasjon om nettilkopling</emph> opna.</ahelp>"
+msgstr "<ahelp hid=\".\">Du vert spurd om hovudpassordet. Dersom du oppgjev det rette passordet, vert dialogvindauget «Lagra informasjon om nettilkopling» opna.</ahelp>"
#. QiepC
#: 01030300.xhp
@@ -6199,7 +6199,7 @@ msgctxt ""
"bm_id3151299\n"
"help.text"
msgid "<bookmark_value>fonts;default settings</bookmark_value><bookmark_value>defaults;fonts</bookmark_value><bookmark_value>basic fonts</bookmark_value><bookmark_value>predefining fonts</bookmark_value><bookmark_value>fonts;changing in templates</bookmark_value><bookmark_value>templates;changing basic fonts</bookmark_value><bookmark_value>paragraph styles;modifying basic fonts</bookmark_value>"
-msgstr "<bookmark_value>skrifter;standardinnstillingar</bookmark_value><bookmark_value>standardar;skrifter</bookmark_value><bookmark_value>grunnskrifter</bookmark_value><bookmark_value>basisskrifter</bookmark_value><bookmark_value>førehandsdefinerte skrifter</bookmark_value><bookmark_value>skrifter; velja på førehand</bookmark_value><bookmark_value>velja skrifter på førehand</bookmark_value><bookmark_value>skrifter;endra i malar</bookmark_value><bookmark_value>malar;endra grunnskrifter</bookmark_value><bookmark_value>avsnittsstilar;endra grunnskrifter</bookmark_value>"
+msgstr "<bookmark_value>skrifter;standardinnstillingar</bookmark_value> <bookmark_value>standardar;skrifter</bookmark_value> <bookmark_value>grunnskrifter</bookmark_value> <bookmark_value>førehandsdefinerte skrifter</bookmark_value><bookmark_value>skrifter; endra i malar</bookmark_value><bookmark_value>malar; rnfra grunnleggjande skrifter</bookmark_value><bookmark_value>avsnittsstilar;endra grunnskrifter</bookmark_value>"
#. EMeGf
#: 01040300.xhp
@@ -9511,7 +9511,7 @@ msgctxt ""
"bm_id3147242\n"
"help.text"
msgid "<bookmark_value>cells; showing grid lines (Calc)</bookmark_value> <bookmark_value>borders; cells on screen (Calc)</bookmark_value> <bookmark_value>grids; displaying lines (Calc)</bookmark_value> <bookmark_value>colors; grid lines and cells (Calc)</bookmark_value> <bookmark_value>page breaks; displaying (Calc)</bookmark_value> <bookmark_value>guides; showing (Calc)</bookmark_value> <bookmark_value>displaying; zero values (Calc)</bookmark_value> <bookmark_value>zero values; displaying (Calc)</bookmark_value> <bookmark_value>tables in spreadsheets; value highlighting</bookmark_value> <bookmark_value>cells; formatting without effect (Calc)</bookmark_value> <bookmark_value>cells; coloring (Calc)</bookmark_value> <bookmark_value>anchors; displaying (Calc)</bookmark_value> <bookmark_value>colors;restriction (Calc)</bookmark_value> <bookmark_value>text overflow in spreadsheet cells</bookmark_value> <bookmark_value>references; displaying in color (Calc)</bookmark_value> <bookmark_value>objects; displaying in spreadsheets</bookmark_value> <bookmark_value>pictures; displaying in Calc</bookmark_value> <bookmark_value>charts; displaying (Calc)</bookmark_value> <bookmark_value>draw objects; displaying (Calc)</bookmark_value> <bookmark_value>row headers; displaying (Calc)</bookmark_value> <bookmark_value>column headers; displaying (Calc)</bookmark_value> <bookmark_value>scrollbars; displaying (Calc)</bookmark_value> <bookmark_value>sheet tabs; displaying</bookmark_value> <bookmark_value>tabs; displaying sheet tabs</bookmark_value> <bookmark_value>outlines;outline symbols</bookmark_value> <bookmark_value>cells;formula indicator in cell</bookmark_value> <bookmark_value>cells;formula hint</bookmark_value> <bookmark_value>displaying; comment authorship</bookmark_value> <bookmark_value>pointer;themed</bookmark_value> <bookmark_value>pointer;system</bookmark_value> <bookmark_value>find all;displaying search summary</bookmark_value> <bookmark_value>cells;highlighting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>celler; vis rutenettlinjer (Calc)</bookmark_value> <bookmark_value>kantar; celler på skjermen (Calc)</bookmark_value> <bookmark_value>rutenett; visa linjer (Calc)</bookmark_value> <bookmark_value>fargar; rutenettlinjer og celler (Calc)</bookmark_value> <bookmark_value>sideskift; visa (Calc)</bookmark_value> <bookmark_value>hjelpelinjer; visa (Calc)</bookmark_value> <bookmark_value>visa; nullverdiar (Calc)</bookmark_value> <bookmark_value>nullverdiar; visa (Calc)</bookmark_value> <bookmark_value>tabellar i rekneark; verdiutheving</bookmark_value> <bookmark_value>celler; formatera utan effekt (Calc)</bookmark_value> <bookmark_value>celler; fargeleggja (Calc)</bookmark_value> <bookmark_value>anker; visa (Calc)</bookmark_value> <bookmark_value>fargar;restriksjon (Calc)</bookmark_value> <bookmark_value>tekstoverflyt i reknearkceller</bookmark_value> <bookmark_value>referansar; visa i fargar (Calc)</bookmark_value> <bookmark_value>objekt; visa i rekneark</bookmark_value> <bookmark_value>bilete; visa i Calc</bookmark_value> <bookmark_value>diagram; visa (Calc)</bookmark_value> <bookmark_value>teikneobjekt; visa (Calc)</bookmark_value> <bookmark_value>radoverskrifter; visa (Calc)</bookmark_value> <bookmark_value>kolonneoverskrifter; visa (Calc)</bookmark_value> <bookmark_value>rullefelt; visa (Calc)</bookmark_value> <bookmark_value>arkfaner; visa</bookmark_value> <bookmark_value>faner; visa arkfaner</bookmark_value> <bookmark_value>disposisjons;disposisjonssymbol</bookmark_value> <bookmark_value>celler;formelindikator i celle</bookmark_value> <bookmark_value>celler;formelhint</bookmark_value> <bookmark_value>visa; merknad forfattarskap</bookmark_value> <bookmark_value>peikar;tema</bookmark_value> <bookmark_value>peikar;system</bookmark_value> <bookmark_value>finn alle;visa søkjesamandrag</bookmark_value> <bookmark_value>celler;utheving</bookmark_value>"
#. uCp3Q
#: 01060100.xhp
@@ -9628,7 +9628,7 @@ msgctxt ""
"par_id801718821081514\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Comment indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/comment_indicator.png\" id=\"img_id501718821081517\" width=\"159px\" height=\"96px\"><alt id=\"alt_id91718821081519\">Merknadsindikator</alt></image>"
#. T4iFp
#: 01060100.xhp
@@ -9664,7 +9664,7 @@ msgctxt ""
"par_id111715605983990\n"
"help.text"
msgid "If this box is checked, the author of the comment and the date and time at which the comment was made will appear in the comment window, when you mouse over a comment."
-msgstr ""
+msgstr "Viss denne boksen er merkt av, vert forfattaren av merknaden og datoen og klokkeslettet då merknaden vart laga vist i merknadsvindauget når du held musepeikaren over ein merknad."
#. tYLiN
#: 01060100.xhp
@@ -9700,7 +9700,7 @@ msgctxt ""
"par_id381718821990330\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formula indicator</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/formula_indicator.png\" id=\"img_id631718821990332\" width=\"120px\" height=\"58px\"><alt id=\"alt_id141718821990334\">Formelindikator</alt></image>"
#. qmC7Q
#: 01060100.xhp
@@ -9754,7 +9754,7 @@ msgctxt ""
"par_id381718822527122\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Column/Row highlighting</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/row_col_highlight.png\" id=\"img_id251718822527124\" width=\"280px\" height=\"146px\"><alt id=\"alt_id571718822527126\">Utheving Rad/Kolonne</alt></image>"
#. JRrmN
#: 01060100.xhp
@@ -9781,7 +9781,7 @@ msgctxt ""
"par_id311718822104991\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Edit cell highlight</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/edit_highlight.png\" id=\"img_id661718822104993\" width=\"163px\" height=\"66px\"><alt id=\"alt_id941718822104996\">Rediger celleutheving</alt></image>"
#. mKCDj
#: 01060100.xhp
@@ -9808,7 +9808,7 @@ msgctxt ""
"par_id141718822193497\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Image anchor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/anchor.png\" id=\"img_id721718822193499\" width=\"308px\" height=\"255px\"><alt id=\"alt_id551718822193501\">Biletanker></alt></image>"
#. eMNiE
#: 01060100.xhp
@@ -9835,7 +9835,7 @@ msgctxt ""
"par_id531718822934064\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">References in color</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/refs_in_color.png\" id=\"img_id181718822934066\" width=\"326px\" height=\"156px\"><alt id=\"alt_id121718822934068\">Referansar i farge</alt></image>"
#. uGmMv
#: 01060100.xhp
@@ -9916,7 +9916,7 @@ msgctxt ""
"par_id351718822706632\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Themed cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_themed.png\" id=\"img_id281718822706634\" width=\"86px\" height=\"55px\"><alt id=\"alt_id171718822706636\">Tematisert markør</alt></image>"
#. hCRGM
#: 01060100.xhp
@@ -9943,7 +9943,7 @@ msgctxt ""
"par_id951718822797834\n"
"help.text"
msgid "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">System cursor</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/scalc/cursor_system.png\" id=\"img_id681718822797836\" width=\"71px\" height=\"72px\"><alt id=\"alt_id41718822797838\">Systemmarkør</alt></image>"
#. y2GVB
#: 01060100.xhp
@@ -10006,7 +10006,7 @@ msgctxt ""
"hd_id3150043\n"
"help.text"
msgid "Objects/Images"
-msgstr ""
+msgstr "Objekt/bilete"
#. DMhEf
#: 01060100.xhp
@@ -15073,7 +15073,7 @@ msgctxt ""
"bm_id3148668\n"
"help.text"
msgid "<bookmark_value>CTL; options</bookmark_value>"
-msgstr "<bookmark_value>CTL; alternativ</bookmark_value><bookmark_value>komplekst tekstoppsett</bookmark_value>"
+msgstr "<bookmark_value>CTL; alternativ</bookmark_value>"
#. GCABr
#: 01150300.xhp
@@ -16198,7 +16198,7 @@ msgctxt ""
"par_id0609201521430059\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem>- %PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "Vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME → Innstillingar</menuitem></caseinline><defaultinline><menuitem>Verktøy → Innstillingar</menuitem></defaultinline></switchinline><menuitem> → %PRODUCTNAME → Avansert → Opna avanserte innstillingar</menuitem>."
#. eEkqQ
#: expertconfig.xhp
@@ -16207,7 +16207,7 @@ msgctxt ""
"par_id331718738212144\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab click on the <menuitem>Options</menuitem> button, then <menuitem>%PRODUCTNAME - Advanced - Open Expert Configuration</menuitem>."
-msgstr ""
+msgstr "I fana <menuitem>Verktøy</menuitem> klikkar du på knappen <menuitem>Innstillingar</menuitem> og deretter <menuitem>%PRODUCTNAME → Avansert → Opna avanserte innstillingar</menuitem>."
#. 8f9cm
#: expertconfig.xhp
diff --git a/source/nn/helpcontent2/source/text/simpress/00.po b/source/nn/helpcontent2/source/text/simpress/00.po
index 01706150534..c956d2ff460 100644
--- a/source/nn/helpcontent2/source/text/simpress/00.po
+++ b/source/nn/helpcontent2/source/text/simpress/00.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-26 22:05+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress00/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1565209236.000000\n"
#. sqmGT
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "To access this command"
-msgstr "For å gjera dette …"
+msgstr "For å gjera dette"
#. GdNmW
#: 00000004.xhp
diff --git a/source/nn/helpcontent2/source/text/simpress/01.po b/source/nn/helpcontent2/source/text/simpress/01.po
index ab401ab0877..2410ae497b8 100644
--- a/source/nn/helpcontent2/source/text/simpress/01.po
+++ b/source/nn/helpcontent2/source/text/simpress/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-04 19:26+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress01/nn/>\n"
"Language: nn\n"
@@ -3596,7 +3596,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Change Slide Master"
-msgstr "Endra hovudlysbilete …"
+msgstr "Endra hovudlysbilete"
#. pKf6P
#: 05120000.xhp
diff --git a/source/nn/helpcontent2/source/text/simpress/guide.po b/source/nn/helpcontent2/source/text/simpress/guide.po
index 7d12318a434..d0dd60c4f2b 100644
--- a/source/nn/helpcontent2/source/text/simpress/guide.po
+++ b/source/nn/helpcontent2/source/text/simpress/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-26 22:05+0000\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547658069.000000\n"
#. S83CC
@@ -1004,7 +1004,7 @@ msgctxt ""
"par_id3148701\n"
"help.text"
msgid "If you want to change the background fill for all of the slides, choose <menuitem>View - Master Slide</menuitem>. To change the background fill of a single slide, choose <menuitem>View - Normal</menuitem>."
-msgstr "Viss du vil endra bakgrunnsfyllinga i alle lysbileta, vel <emph>Vis → Hovudlysbilete</emph>. For å endra bakgrunnsfyllinga for eitt lysbilete, vel <emph>Vis → Normal</emph>."
+msgstr "Viss du vil endra bakgrunnsfyllinga i alle lysbileta, vel <menuitem>Vis → Hovudlysbilete</menuitem>. For å endra bakgrunnsfyllinga for eitt lysbilete, vel <menuitem>Vis → Normal</menuitem>."
#. uWB9C
#: background.xhp
diff --git a/source/nn/helpcontent2/source/text/smath/01.po b/source/nn/helpcontent2/source/text/smath/01.po
index e46f4f75999..105c008fc64 100644
--- a/source/nn/helpcontent2/source/text/smath/01.po
+++ b/source/nn/helpcontent2/source/text/smath/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-05-22 12:01+0200\n"
-"PO-Revision-Date: 2023-05-28 10:36+0000\n"
+"PO-Revision-Date: 2024-06-27 03:51+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textsmath01/nn/>\n"
"Language: nn\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.15.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547660934.000000\n"
#. QmNGE
@@ -1823,7 +1823,7 @@ msgctxt ""
"par_id3150873\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Inserts the logical operator <emph>precedes or equivalent</emph> with two placeholders.</ahelp> You can also type <emph>precsim</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Set inn den logiske operatoren <emph>kjem før eller er lik</emph> med to plasshaldarar.</ahelp> Du kan òg skriva inn <emph>precsim</emph> i <emph>kommandovindauget</emph>. "
+msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUIV\">Set inn den logiske operatoren <emph>kjem før eller er lik</emph> med to plasshaldarar.</ahelp> Du kan òg skriva inn <emph>precsim</emph> i <emph>kommandovindauget</emph>."
#. iCEWw
#: 03090200.xhp
@@ -4469,7 +4469,7 @@ msgctxt ""
"par_id3147355\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_ITALX\">Inserts a placeholder with italic formatting.</ahelp> You can also type <emph>ital <?></emph> or <emph>italic <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_ITALX\">Set inn ein plasshaldar som er formatert med kursivskrift.</ahelp> Du kan også skriva <emph>ital<?></emph> eller <emph>italic<?></emph> direkte i <emph>kommandovindauget</emph>. "
+msgstr "<ahelp hid=\"HID_SMA_ITALX\">Set inn ein plasshaldar som er formatert med kursivskrift.</ahelp> Du kan også skriva <emph>ital<?></emph> eller <emph>italic<?></emph> direkte i <emph>kommandovindauget</emph>."
#. 59E2J
#: 03090600.xhp
@@ -8683,7 +8683,7 @@ msgctxt ""
"par_id3164961\n"
"help.text"
msgid "Inverse cosine or arccosine"
-msgstr "Invers cosinus "
+msgstr "Invers cosinus"
#. wUf6b
#: 03091504.xhp
diff --git a/source/nn/helpcontent2/source/text/swriter/01.po b/source/nn/helpcontent2/source/text/swriter/01.po
index 3e57bf029b7..7304c91c589 100644
--- a/source/nn/helpcontent2/source/text/swriter/01.po
+++ b/source/nn/helpcontent2/source/text/swriter/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-05-27 13:00+0200\n"
-"PO-Revision-Date: 2024-05-29 09:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565256689.000000\n"
#. sZfWF
@@ -4010,7 +4010,7 @@ msgctxt ""
"par_id3145413\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/editsectiondialog/remove\">Removes the selected section from the document, and inserts the contents of the section into the document.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/remove\" visibility=\"visible\">Fjernar den merkte bolken frå dokumentet og set innhaldet frå den inn i dokumentet.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/editsectiondialog/remove\">Fjernar den merkte bolken frå dokumentet og set innhaldet frå den inn i dokumentet.</ahelp>"
#. 9wGBS
#: 03050000.xhp
@@ -4433,7 +4433,7 @@ msgctxt ""
"par_id3157875\n"
"help.text"
msgid "To enable this feature, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01040600.xhp\"><emph>%PRODUCTNAME Writer - View</emph></link>, and ensure that the <emph>Hidden paragraphs</emph> check box in the <emph>Display fields</emph> area is selected."
-msgstr "Du slår på denne funksjonen ved å velja <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME → Preferansar</item></caseinline><defaultinline><item type=\"menuitem\">Verktøy → Innstillingar</item></defaultinline></switchinline><emph> → </emph><link href=\"text/shared/optionen/01040600.xhp\"><emph>%PRODUCTNAME Writer → Formateringsstøtte</emph></link> og merkja av i <emph>Gøymde avsnitt</emph> i feltet <emph>Vising av</emph>."
+msgstr "Du slår på denne funksjonen ved å velja <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME → Preferansar</menuitem></caseinline><defaultinline><menuitem>Verktøy → Innstillingar</menuitem></defaultinline></switchinline><emph> → </emph><link href=\"text/shared/optionen/01040600.xhp\"><emph>%PRODUCTNAME Writer → Formateringsstøtte</emph></link> og merkja av i <emph>Gøymde avsnitt</emph> i feltet <emph>Vising av</emph>."
#. X42XM
#: 03140000.xhp
@@ -7439,7 +7439,7 @@ msgctxt ""
"par_id4516129\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert.</ahelp> The following fields are available:"
-msgstr "<ahelp hid=\".\">Viser tilgjengelege felttypar. For å leggja eit felt til dokumentet, trykk på ein felttype, vel eit felt i lista og trykk på <emph>Set inn</emph>.</ahelp> Desse felta kan setjast inn:"
+msgstr "<ahelp hid=\".\">Viser tilgjengelege felttypar. For å leggja eit felt til dokumentet, trykk på ein felttype, vel eit felt i lista og trykk på «Set inn».</ahelp> Desse felta kan setjast inn:"
#. XXYfa
#: 04090002.xhp
@@ -7610,7 +7610,7 @@ msgctxt ""
"par_id3150907\n"
"help.text"
msgid "After inserting a bookmark in the document with <emph>Insert - Bookmark</emph>, the bookmarks entry on the <emph>References</emph> tab becomes usable. Bookmarks are used to mark certain text passages in a document. In a text document, you can use the bookmarks, for example, to jump from one passage in the document to another."
-msgstr "Når du har sett inn eit bokmerke i dokumentet med <emph>Set inn → Bokmerke</emph>, kan du bruka typen <emph>Bokmerke</emph> på fana <emph>Kryssreferansar</emph>. Bokmerke vert til vanleg brukte til å merka bestemte tekststykke i eit dokument. I eit tekstdokument kan du for eksempel bruka bokmerke til å hoppe frå eitt tekststykke i dokumentet til eit anna."
+msgstr "Når du har sett inn eit bokmerke i dokumentet med <emph>Set inn → Bokmerkje</emph>, kan fana <emph>Referansar</emph> brukast. Bokmerkje vert til vanleg brukte til å merkja bestemte tekststykke i eit dokument. I eit tekstdokument kan du for eksempel bruka bokmerke til å hoppa frå eitt tekststykke i dokumentet til eit anna."
#. kEd5w
#: 04090002.xhp
@@ -8699,7 +8699,7 @@ msgctxt ""
"par_id0902200804290053\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">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.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Viser ei liste over dei tilgjengelege felttypane. Du kan leggja til eit felt i dokumentet ved å trykkja ein felttype, velja eit felt i lista <emph>Vel</emph> og trykkja <emph>Set inn</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Viser ei liste over dei tilgjengelege felttypane. Du kan leggja til eit felt i dokumentet ved å trykkja ein felttype, velja eit felt i lista «Vel» og trykkja «Set inn».</ahelp>"
#. WufGp
#: 04090004.xhp
@@ -9284,7 +9284,7 @@ msgctxt ""
"par_id3150696\n"
"help.text"
msgid "In an HTML document, two additional fields are available for the \"Set variable\" field type: HTML_ON and HTML_OFF. The text that you type in the <emph>Value </emph>box is converted to an opening HTML <link href=\"text/shared/00/00000002.xhp#tags\">tag</link> (<Value>) or to a closing HTML (</Value>) tag when the file is saved as an HTML document, depending on the option that you select."
-msgstr "I eit HTML-dokument er to ekstra felt tilgjengelege for felttypen «Set variablar»: HTML_ON og HTML_OFF. Teksten du skriv inn i feltet <emph>Verdi</emph> vert konvertert til ein opnings- (<Verdi>) eller ein slutt- (</Verdi>) <link href=\"text/shared/00/00000002.xhp#tags\">HTML-tagg</link> når fila vert lagra som eit HTML-dokument alt etter kva alternativ du har vald."
+msgstr "I eit HTML-dokument er to ekstra felt tilgjengelege for felttypen «Set variabel»: HTML_ON og HTML_OFF. Teksten du skriv inn i feltet <emph>Verdi</emph> vert konvertert til ein opnings-HTML-<link href=\"text/shared/00/00000002.xhp#tags\">HTML-tagg</link> (<Value>) eller ein slutt- (</Value>) når fila vert lagra som eit HTML-dokument alt etter kva alternativ du har vald."
#. BFvdg
#: 04090005.xhp
@@ -9536,7 +9536,7 @@ msgctxt ""
"par_id3151257\n"
"help.text"
msgid "Inserts the contents of the database field that you specify in the <emph>Record Number</emph> box as a mail merge field if the <link href=\"text/swriter/01/04090200.xhp\"><emph>Condition</emph></link> that you enter is met. Only records selected by a multiple selection in the data source view are considered."
-msgstr "Set inn innhaldet av databasefeltet som er spesifisert i feltet <emph>Datapostnummer</emph> som eit brevflettingsfelt viss <link href=\"text/swriter/01/04090200.xhp\"><emph>Vilkår</emph></link> er oppfylt. Berre postar som er valde med ei multimarkering i datakjelda vert tekne med. "
+msgstr "Set inn innhaldet av databasefeltet som er spesifisert i feltet <emph>Datapostnummer</emph> som eit brevflettingsfelt viss <link href=\"text/swriter/01/04090200.xhp\"><emph>Vilkår</emph></link> er oppfylt. Berre postar som er valde med ei multimarkering i datakjelda vert tekne med."
#. abTaE
#: 04090006.xhp
@@ -12884,7 +12884,7 @@ msgctxt ""
"par_id3151315\n"
"help.text"
msgid "Specify the information to be combined to form an index."
-msgstr "Spesifiser informasjon som skal kombinerast for å laga eit register. "
+msgstr "Spesifiser informasjon som skal kombinerast for å laga eit register."
#. C8FBX
#: 04120213.xhp
@@ -15440,7 +15440,7 @@ msgctxt ""
"par_id3153511\n"
"help.text"
msgid "On the Insert toolbar, click the <emph>Table</emph> icon to open the <emph>Insert Table</emph> dialog, where you can insert a table in the current document. You can also click the arrow, drag to select the number of rows and columns to include in the table, and then click in the last cell."
-msgstr "Trykk på knappen <emph>Tabell</emph> i verktøylinja <emph>Set inn</emph> for å opna dialogvindauget <emph>Set inn tabell</emph>, som du kan bruka til å setja inn ein tabell i det gjeldande dokumentet. Du kan også trykkja pila, dra for å velja talet på rader og kolonnar du vil ha i tabellen, og så klikka i den siste cella."
+msgstr "Trykk på knappen <emph>Tabell</emph> i verktøylinja «Set inn» for å opna dialogvindauget <emph>Set inn tabell</emph>, som du kan bruka til å setja inn ein tabell i det gjeldande dokumentet. Du kan også trykkja pila, dra for å velja talet på rader og kolonnar du vil ha i tabellen, og så klikka i den siste cella."
#. CLka9
#: 04150000.xhp
@@ -15746,7 +15746,7 @@ msgctxt ""
"par_id3149880\n"
"help.text"
msgid "An inserted script is indicated by a small green rectangle. If you do not see the rectangle, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - </emph><link href=\"text/shared/optionen/01040200.xhp\"><emph>View</emph></link>, and select the <emph>Comments</emph> check box. To edit a script, double-click the green rectangle."
-msgstr "Eit innsett skript vert indikert med ein liten grøn firkant. Viss denne firkanten ikkje er synleg, vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Innstillingar</emph></caseinline><defaultinline><emph>Verktøy → Innstillingar</emph></defaultinline></switchinline><emph> → %PRODUCTNAME Writer/Web → </emph><link href=\"text/shared/optionen/01040200.xhp\"><emph>Vising</emph></link> og merk av for <emph>Merknadar</emph>. Dobbeltklikk på den grøne firkanten for å redigera skriptet. "
+msgstr "Eit innsett skript vert indikert med ein liten grøn firkant. Viss denne firkanten ikkje er synleg, vel <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME → Innstillingar</emph></caseinline><defaultinline><emph>Verktøy → Innstillingar</emph></defaultinline></switchinline><emph> → %PRODUCTNAME Writer/Web → </emph><link href=\"text/shared/optionen/01040200.xhp\"><emph>Vising</emph></link> og merk av for <emph>Merknadar</emph>. Dobbeltklikk på den grøne firkanten for å redigera skriptet."
#. pB6kM
#: 04200000.xhp
@@ -15818,7 +15818,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Adds a link to a script file. Click the <emph>URL </emph>radio button, and then enter the link in the box. You can also click the <emph>Browse</emph> button, locate the file, and then click <emph>Insert</emph>.</ahelp> The linked script file is identified in the HTML source code by the following tags:"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Legg ei lenkje til ei skriptfil. Klikk på radioknappen <emph>URL</emph> og skriv inn adressa i boksen. Du kan også trykkja på knappen <emph>Bla gjennom</emph> (<emph>…</emph>), finna fila og så trykkja på <emph>Set inn</emph>.</ahelp> Skriptfila du lenkjer til vert identifisert i HTML-kjeldekoden med desse taggane:"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertscript/urlentry\">Legg ei lenkje til ei skriptfil. Klikk på radioknappen <emph>URL</emph> og skriv inn adressa i boksen. Du kan også trykkja på knappen <emph>Bla gjennom</emph>, finna fila og så trykkja på <emph>Set inn</emph>.</ahelp> Skriptfila du lenkjer til vert identifisert i HTML-kjeldekoden med desse taggane:"
#. mnjEL
#: 04200000.xhp
@@ -20660,7 +20660,7 @@ msgctxt ""
"par_id3149250\n"
"help.text"
msgid "image is not successfully loaded"
-msgstr "biletet er ikkje lasta inn fullstendig "
+msgstr "biletet er ikkje lasta inn fullstendig"
#. gipbY
#: 05060700.xhp
@@ -23362,14 +23362,14 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr "Direkte formatering overstyrer alle formateringar sett av ein teiknstil. For å fjerna direkte formatering frå eit utval, bruk <menuitem>Format → Fjern direkte formatering</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Kommando</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode> + M</keycode>)."
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
-msgstr "Bruk avsnittet <emph>Inneheld</emph> i handsamaren for å sjå eigenskapane til teiknstilen."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
+msgstr ""
#. VkwfE
#: 05130004.xhp
@@ -23459,7 +23459,7 @@ msgctxt ""
"par_id3151391\n"
"help.text"
msgid "Conditional styles are paragraph styles that have different properties depending on the context. Once defined, you cannot change the conditional properties of a conditional style."
-msgstr "Vilkårsstilar er avsnittsstilar som kan ha ulike eigenskapar avhengig av samanhangen. Når ein slik stil er definert, kan du ikkje endra vilkåra for stilen. "
+msgstr "Vilkårsstilar er avsnittsstilar som kan ha ulike eigenskapar avhengig av samanhangen. Når ein slik stil er definert, kan du ikkje endra vilkåra for stilen."
#. keRBa
#: 05130100.xhp
@@ -23504,7 +23504,7 @@ msgctxt ""
"par_id3154647\n"
"help.text"
msgid "In <emph>Context</emph>, select the header entry and under <emph>Paragraph Styles</emph> select the style for the header in your business letter; for example, the default Paragraph Style \"Header\". You also can select your own style."
-msgstr "Vel <emph>Topptekst</emph> i lista under <emph>Innhald</emph> og vel stilen du vil bruka på toppteksten i forretningsbrevet i lista under <emph>Avsnittsstilar</emph>. Vel for eksempel standardavsnittsstilen «Topptekst», men du kan sjølvsagt velja kva stil som helst i lista."
+msgstr "Vel «Topptekst» i lista under <emph>Innhald</emph> og vel stilen du vil bruka på toppteksten i forretningsbrevet i lista under <emph>Avsnittsstilar</emph>. Vel for eksempel standardavsnittsstilen «Topptekst», men du kan sjølvsagt velja kva stil som helst i lista."
#. PvNZL
#: 05130100.xhp
@@ -23522,7 +23522,7 @@ msgctxt ""
"par_id3149753\n"
"help.text"
msgid "Click <emph>OK</emph> to close the Paragraph Style dialog, and then format all paragraphs in your business letter, including the header, with the new \"Business letter\" conditional Paragraph Style. (When you click in the header, you may need to display <item type=\"literal\">All Styles</item> or <item type=\"literal\">Custom Styles</item> in the style list to use the new business letter style.)"
-msgstr "Trykk <emph>OK</emph> for å lukka dialogvindauget <emph>Avsnittsstil</emph>. Nå kan du merka alle avsnitta i forretningsbrevet, også toppteksten, og bruka den nye vilkårsstilen du har laga og kalla «Forretningsbrev», til å formatera dei. (Når du skal formatera toppteksten, kan det hende at du må velja <item type=\"literal\">Alle stilar</item> eller <item type=\"literal\">Sjølvvalde stilar</item> nedst i stilhandsamaren for å visa den nye forretningsbrevstilen.)"
+msgstr "Trykk <emph>OK</emph> for å lukka dialogvindauget «Avsnittsstil». Nå kan du merka alle avsnitta i forretningsbrevet, også toppteksten, og bruka den nye vilkårsstilen du har laga og kalla «Forretningsbrev», til å formatera dei. (Når du skal formatera toppteksten, kan det hende at du må velja <item type=\"literal\">Alle stilar</item> eller <item type=\"literal\">Sjølvvalde stilar</item> nedst i stilhandsamaren for å visa den nye forretningsbrevstilen.)"
#. EvVMy
#: 05130100.xhp
@@ -23702,7 +23702,7 @@ msgctxt ""
"par_id0122200903183687\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose Edit Paragraph Style in the context menu of a paragraph to edit the style of all paragraphs of the same style.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vel <emph>Rediger avsnittsstil</emph> i sprettoppmenyen for å redigera stilen til alle avsnitta som brukar denne stilen.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Vel «Rediger avsnittsstil» i sprettoppmenyen for å redigera stilen til alle avsnitta som brukar denne stilen.</ahelp>"
#. aT3RR
#: 05140000.xhp
@@ -30947,7 +30947,7 @@ msgctxt ""
"par_idN10546\n"
"help.text"
msgid "Specify the placement of address data fields in an address block in <link href=\"text/swriter/01/mm_seladdblo.xhp\">mail merge</link> documents."
-msgstr "Vert brukt for å bestemma plasseringa av adressedatafelta i ei adresseblokk i eit <link href=\"text/swriter/01/mm_seladdblo.xhp\">brevflettings</link>-dokument "
+msgstr "Vert brukt for å bestemma plasseringa av adressedatafelta i ei adresseblokk i eit <link href=\"text/swriter/01/mm_seladdblo.xhp\">brevflettings</link>-dokument."
#. kACrC
#: mm_newaddblo.xhp
@@ -33782,7 +33782,7 @@ msgctxt ""
"par_id301516900356824\n"
"help.text"
msgid "<ahelp hid=\".\">Select the transparency level for the watermark. A 0% value produces an opaque watermark and a value of 100% is totally transparent (invisible).</ahelp>"
-msgstr "<ahelp hid=\".\">Vel kor gjennomsiktig vassmerket skal vera. 0 % lagar eit opakt vassmerke, 100 % lagar eit fullstendig gjennomsiktig (usynleg) vassmerke.</ahelp> "
+msgstr "<ahelp hid=\".\">Vel kor gjennomsiktig vassmerket skal vera. 0 % lagar eit opakt vassmerke, 100 % lagar eit fullstendig gjennomsiktig (usynleg) vassmerke.</ahelp>"
#. t8xjF
#: watermark.xhp
diff --git a/source/nn/helpcontent2/source/text/swriter/02.po b/source/nn/helpcontent2/source/text/swriter/02.po
index 3d494cc7283..04e15f2c999 100644
--- a/source/nn/helpcontent2/source/text/swriter/02.po
+++ b/source/nn/helpcontent2/source/text/swriter/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-04-02 12:12+0200\n"
-"PO-Revision-Date: 2024-03-21 09:45+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textswriter02/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1512581123.000000\n"
#. sqxGb
@@ -1643,7 +1643,7 @@ msgctxt ""
"par_id3149805\n"
"help.text"
msgid "Multiple Pages Preview"
-msgstr "Førehandsvis fleire sider "
+msgstr "Førehandsvis fleire sider"
#. 68LCW
#: 10070000.xhp
@@ -3659,7 +3659,7 @@ msgctxt ""
"par_id3147403\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to open the Fields dialog. Click the arrow next to the icon to open a submenu.</ahelp> Click to open the <link href=\"text/swriter/01/04090000.xhp\">Fields</link> dialog. Click the arrow next to the icon to open a submenu."
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trykk for å opna dialogvindauget <emph>Felt</emph>. Trykk på pila ved sida av knappen for å opna ein undermeny.</ahelp> Trykk for å opna dialogvindauget <link href=\"text/swriter/01/04090000.xhp\">Felt</link>. Trykk på pila ved sida av knappen for å opna ein undermeny."
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Trykk for å opna dialogvindauget «Felt». Trykk på pila ved sida av knappen for å opna ein undermeny.</ahelp> Trykk for å opna dialogvindauget <link href=\"text/swriter/01/04090000.xhp\">Felt</link>. Trykk på pila ved sida av knappen for å opna ein undermeny."
#. gthge
#: 18030000.xhp
@@ -3965,7 +3965,9 @@ msgctxt ""
"bm_id3147167\n"
"help.text"
msgid "<bookmark_value>graphics;do not show</bookmark_value> <bookmark_value>images;do not show</bookmark_value> <bookmark_value>pictures;do not show</bookmark_value>"
-msgstr "<bookmark_value>grafikk;ikkje vis</bookmark_value><bookmark_value>bilete;ikkje vis</bookmark_value>"
+msgstr ""
+"<bookmark_value>grafikk;ikkje vis</bookmark_value>\n"
+"<bookmark_value>bilete;ikkje vis</bookmark_value>"
#. kASwh
#: 18120000.xhp
diff --git a/source/nn/helpcontent2/source/text/swriter/guide.po b/source/nn/helpcontent2/source/text/swriter/guide.po
index f3ffe2d9a07..3c236363cbc 100644
--- a/source/nn/helpcontent2/source/text/swriter/guide.po
+++ b/source/nn/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: 2024-05-23 12:40+0200\n"
-"PO-Revision-Date: 2024-05-26 22:05+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 21:47+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1565257384.000000\n"
#. XAt2Y
@@ -1724,7 +1724,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "Select the distance between the border lines and the page contents in the <emph>Padding</emph> area."
-msgstr "Vel avstanden mellom kantlinjene og innhaldet i sida i området <emph>Avstand til innhaldet</emph>. "
+msgstr "Vel avstanden mellom kantlinjene og innhaldet i sida i området <emph>Avstand til innhaldet</emph>."
#. 6JFCA
#: border_object.xhp
@@ -2219,7 +2219,7 @@ msgctxt ""
"par_id1820734\n"
"help.text"
msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
-msgstr "Du kan trykkje i området <emph>Brukardefinert</emph> for å leggja til eller fjerna individuelle linjer. Førehandsvisinga viser tre ulike typar linjer. "
+msgstr "Du kan trykkje i området <emph>Brukardefinert</emph> for å leggja til eller fjerna individuelle linjer. Førehandsvisinga viser tre ulike typar linjer."
#. 9GbPD
#: borders.xhp
@@ -2660,7 +2660,7 @@ msgctxt ""
"bm_id3147406\n"
"help.text"
msgid "<bookmark_value>formulas; complex formulas in text</bookmark_value> <bookmark_value>calculating;formulas/mean values</bookmark_value>"
-msgstr "<bookmark_value>rekna ut;avanserte formlar i tekst</bookmark_value><bookmark_value>formlar; avanserte formlar i tekst</bookmark_value><bookmark_value>rekna ut;formlar/gjennomsnitt</bookmark_value>"
+msgstr "<bookmark_value>formlar; avanserte formlar i tekst</bookmark_value> <bookmark_value>rekna ut;formlar/gjennomsnitt</bookmark_value>"
#. dpsAE
#: calculate_intext.xhp
@@ -2705,7 +2705,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Click the <item type=\"menuitem\">Formula</item> icon, and choose \"Mean\" from the Statistical Functions list."
-msgstr "Trykk på knappen <item type=\"menuitem\">Formel</item> og vel »Gjennomsnitt» frå lista <emph>Statistiske funksjonar</emph>."
+msgstr "Trykk på ikonet <item type=\"menuitem\">Formel</item> og vel »Gjennomsnitt» frå lista «Statistiske funksjonar»."
#. JqeEW
#: calculate_intext.xhp
@@ -3461,7 +3461,7 @@ msgctxt ""
"par_id3147782\n"
"help.text"
msgid "Click the level that you want to assign to the custom paragraph style in the <menuitem>Level</menuitem> list."
-msgstr "Trykk på overskriftnivået du vil knyta den eigendefinerte avsnittstilen til i lista <item type=\"menuitem\">Nivå</item>."
+msgstr "Trykk på overskriftnivået du vil knyta den eigendefinerte avsnittstilen til i lista <menuitem>Nivå</menuitem>."
#. 5jDBU
#: chapter_numbering.xhp
@@ -3560,7 +3560,7 @@ msgctxt ""
"par_id3147759\n"
"help.text"
msgid "Click \"Set variable\" in the <item type=\"menuitem\">Type</item> list."
-msgstr "Trykk på <emph>Vel variabel</emph> i lista <item type=\"menuitem\">Type</item>."
+msgstr "Trykk på «Vel variabel» i lista <item type=\"menuitem\">Type</item>."
#. AADgr
#: conditional_text.xhp
@@ -4282,14 +4282,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Høgreklikk på «Venstreside» i lista over sidestilar og vel <emph>Rediger</emph>."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Trykk på fana <emph>Stilar</emph>."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -5495,7 +5495,7 @@ msgctxt ""
"par_id703451\n"
"help.text"
msgid "When you click <emph>Replace</emph>, Writer will search the whole document for the text in the <emph>Find</emph> box, starting at the current cursor position. When text is found, Writer highlights the text and waits for your response. Click <emph>Replace</emph> to replace the highlighted text in the document with the text in the <emph>Replace</emph> text box. Click <emph>Find Next</emph> to advance to the next found text without replacing the current selection."
-msgstr "Når du klikkar på <emph>Byt ut</emph> vil Writer byrja der markøren er og søkje gjennom heile dokumentet etter søkjeteksten. Når teksten er funne, vil Writer merkja han og venta på kva du vel å gjera. Trykk på <emph>Byt ut</emph> for å byte ut den funne teksten med teksten i tekstboksen <emph>Byt ut med</emph>. Klikk på <emph>Finn neste</emph> for å søkje vidare utan å byta ut teksten i markeringa."
+msgstr "Når du klikkar på <emph>Byt ut</emph> vil Writer byrja der markøren er og søkja gjennom heile dokumentet etter søkjeteksten. Når teksten er funne, vil Writer merkja han og venta på kva du vel å gjera. Trykk på <emph>Byt ut</emph> for å byta ut den funne teksten med teksten i tekstboksen <emph>Byt ut med</emph>. Klikk på <emph>Finn neste</emph> for å søkja vidare utan å byta ut teksten i markeringa."
#. xUoWa
#: finding.xhp
@@ -5792,7 +5792,7 @@ msgctxt ""
"par_id3150955\n"
"help.text"
msgid "Click 'Page' in the <emph>Type</emph> list and 'Next page' in the <emph>Select</emph> list."
-msgstr "Trykk på <emph>Side</emph> i <emph>Typelista</emph> og <emph>Neste side</emph> i lista <emph>Vel</emph>."
+msgstr "Trykk på «Side» i <emph>Typelista</emph> og «Neste side» i lista <emph>Vel</emph>."
#. gWQDr
#: footer_nextpage.xhp
@@ -5810,7 +5810,7 @@ msgctxt ""
"par_id3150537\n"
"help.text"
msgid "If you select 'Text' in the <emph>Format</emph> list, only the text that you enter in the <emph>Value</emph> box is displayed in the field."
-msgstr "Viss du vel <emph>Tekst</emph> i <emph>Formatlista</emph>, vert berre teksten du skriv inn i boksen <emph>Verdi</emph> vist i feltet."
+msgstr "Viss du vel «Tekst» i <emph>Formatlista</emph>, vert berre teksten du skriv inn i boksen <emph>Verdi</emph> vist i feltet."
#. rrZ5Y
#: footer_nextpage.xhp
@@ -6233,7 +6233,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Right-click the Paragraph Style that you want to modify, for example, \"Footnote\", and choose <emph>Modify</emph>."
-msgstr "Høgreklikk på avsnittsstilen du vil redigera, for eksempel <emph>Fotnote </emph>, og vel <emph>Rediger</emph>."
+msgstr "Høgreklikk på avsnittsstilen du vil redigera, for eksempel «Fotnote» og vel <emph>Rediger</emph>."
#. hfBwe
#: footnote_with_line.xhp
@@ -6827,7 +6827,7 @@ msgctxt ""
"par_idN10C40\n"
"help.text"
msgid "When you insert an object like a frame or a picture into a master document, do not anchor the object \"to page\". Instead, set the anchor \"to paragraph\" on the <emph>Format - (Object type) - Type</emph> tab page, and then set the object's position relative to \"Entire Page\" in the <emph>Horizontal</emph> and <emph>Vertical</emph> list boxes."
-msgstr "Når du set inn eit objekt, for eksempel ei ramme eller eit bilete, i eit hovuddokument, så ikkje forankra det «Til side». Vel i staden forankringa «Til avsnitt» i <emph>Format → (Objekttype)</emph> på fana <emph>Type</emph>, og vel plasseringa «Heile sida» i listeboksane <emph>Vassrett</emph> og <emph>Loddrett</emph>."
+msgstr "Når du set inn eit objekt, for eksempel ei ramme eller eit bilete, i eit hovuddokument, så ikkje forankra det «Til side». Vel i staden forankringa «Til avsnitt» i fana <emph>Format → (Objekttype) → Type</emph> og vel plasseringa «Heile sida» i listeboksane <emph>Vassrett</emph> og <emph>Loddrett</emph>."
#. D4ENL
#: globaldoc_howtos.xhp
@@ -7090,14 +7090,14 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Du kan bruka ulike topp- og botntekstar på ulike sider i dokumentet så lenge sidene brukar ulike sidestilar. $[officename] har fleire førehandslaga sidestilar, som for eksempel <emph>Første side</emph>,<emph>Venstreside</emph> og <emph>Høgreside</emph>. I tillegg til desse kan du òg oppretta ein tilpassa sidestil."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
-msgstr "Du kan også bruka det spegelvendte sideoppsettet viss du vil leggja ein topptekst til ein sidestil som har ulike indre og ytre sidemargar. For å bruka denne innstillinga på ein sidestil, vel <item type=\"menuitem\">Format → Sidestil</item>, trykk på fana <item type=\"menuitem\">Side</item> og vel «Spegelvendt» i området <item type=\"menuitem\">Val for utsjånad</item> i feltet <item type=\"menuitem\">Sideoppsett</item>."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
+msgstr ""
#. Fg7fp
#: header_pagestyles.xhp
@@ -7135,32 +7135,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Høgreklikk avsnittsstilen «Høgreside» og vel <emph>Rediger</emph>."
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Trykk på fana <item type=\"menuitem\">Topptekst</item> i dialogvindauget <item type=\"menuitem\">Sidestilar</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vel <item type=\"menuitem\">Vis topptekst</item> og trykk på fana <item type=\"menuitem\">Handsamar</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Vel «Venstreside» i boksen <item type=\"menuitem\">Neste stil</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7180,32 +7180,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Høgreklikk på «Venstreside» i lista over sidestilar i <emph>Stilhandsamaren</emph> og trykk deretter på <emph>Endra</emph>"
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Trykk på fana <item type=\"menuitem\">Topptekst</item> i dialogvindauget <item type=\"menuitem\">Sidestilar</item>."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "Vel <item type=\"menuitem\">Vis topptekst</item> og trykk på fana <item type=\"menuitem\">Handsamar</item>."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Vel «Høgreside» i boksen <item type=\"menuitem\">Neste stil</item>."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11428,14 +11428,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Høgreklikk på eit element i lista over sidestilar og vel <emph>Ny</emph>."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "Skriv inn eit namn på sidestilen i feltet <emph>Namn</emph> på fana <emph>Handsamar</emph>."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11581,14 +11581,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "Vel <emph>Sideskift</emph>."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "I <item type=\"menuitem\">Stilboksen</item> vel du ein sidestil som brukar sidebakgrunnen."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11860,14 +11860,14 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "Eit <emph>automatisk sideskift</emph> kjem fram ved slutten av ei side når den gjeldande sidestilen har ein annan «Neste stil»."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
-msgstr "For eksempel har sidestilen «Første side» «Standard sidestil» som neste stil. For å sjå dette, kan du trykkja på <switchinline select=\"sys\"> <caseinline select=\"MAC\"> <keycode>Kommando + T </keycode> </caseinline> <defaultinline> <keycode> F11 </keycode> </defaultinline> </switchinline> for å opna vindauget <menuitem>Stilar</menuitem> og trykkja på ikonet <menuitem>Sidestilar</menuitem> og så høgreklikka på «Første side». Vel <menuitem>Rediger stil</menuitem> frå menyen som kjem opp. «Neste stil» vert vist i fana <menuitem>Handsamar</menuitem>."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
+msgstr ""
#. yGPGH
#: pagenumbers.xhp
@@ -12184,14 +12184,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Høgreklikk på ein sidestil og vel <emph>Ny</emph>. Den nye sidestilen får dei same eigenskapane som den valde sidestilen."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Skriv inn eit namn på sidestilen i feltet <emph>Namn</emph> på fana <emph>Handsamar</emph>, for eksempel «Liggjande»."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12328,14 +12328,14 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Stilar for ei enkelt side"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
-msgstr "Ein sidestil kan definerast til å gjelda for berre ei enkelt side. Stilen «Første side» er eit eksempel på dette. Du definerer denne eigenskapen ved å velja ein annan sidestil til å vera «Neste stil» på fana <menuitem>Format → Side → Handsamar</menuitem>."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
+msgstr ""
#. BorA4
#: pageorientation.xhp
@@ -12364,14 +12364,14 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Manuelt innstilt område for ein sidestil"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
-msgstr "Sidestilen «Standard» har ikkje ein annan «Neste stil» på fana <menuitem>Format → Side → Handsamar</menuitem>. I staden er «Neste stil» sett til «Standard». Alle sidestilar som har den same sidestilen i «Neste stil» kan halda fram over fleire sider. Den nedste og øvste grensa for stilomfanget vert styrt av «Sideskift med stil». Alle sider mellom to «Sideskift med stil» brukar den same sidestilen."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgstr ""
#. pyFgt
#: pageorientation.xhp
@@ -12425,7 +12425,7 @@ msgctxt ""
"par_id4744407\n"
"help.text"
msgid "To apply the “page break with style” property to an arbitrary paragraph style, choose <menuitem>View - Styles</menuitem>. Click the <menuitem>Paragraph Styles</menuitem> icon. Right-click the name of the paragraph style you want to modify and choose <menuitem>Edit Style</menuitem>. Click the <menuitem>Text Flow</menuitem> tab. In the Breaks area, activate <menuitem>Insert</menuitem> and <menuitem>With Page Style</menuitem>. Select a page style name from the listbox."
-msgstr "For å leggja eigenskapen «Sideskift med stil» til ein vilkårleg stil, vel <menuitem>Vis → Stilar</menuitem>. Klikk på knappen <menuitem>Avsnittsstilar</menuitem>. Høgreklikk på avsnittsstilen du ønskjer å endra og vel så <menuitem>Rediger stil<</menuitem>. Vel fana <menuitem>Tekstflyt</menuitem>. I avsnittet «Skift», må du velja <menuitem>Set inn</menuitem> og <menuitem>Med sidestil</menuitem>. Vel ein sidestil frå lista."
+msgstr "For å leggja eigenskapen «Sideskift med stil» til ein vilkårleg stil, vel <menuitem>Vis → Stilar</menuitem>. Klikk på knappen <menuitem>Avsnittsstilar</menuitem> Høgreklikk på avsnittsstilen du ønskjer å endra og vel så <menuitem>Rediger stil</menuitem>. Vel fana <menuitem>Tekstflyt</menuitem> I avsnittet «Skift», må du velja <menuitem>Set inn</menuitem> og <menuitem>Med sidestil</menuitem>. Vel ein sidestil frå lista."
#. xCQW9
#: pagestyles.xhp
@@ -12499,14 +12499,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Høgreklikk på eit element i lista over sidestilar og vel <emph>Ny</emph>."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "På fana <emph>Handsamar</emph> kan du skriva eit namn på sidestilen i feltet <emph>Namn</emph>."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
@@ -13514,7 +13514,7 @@ msgctxt ""
"par_id181120164739204\n"
"help.text"
msgid "If the section already exists: <variable id=\"gotosection\">Choose menu <item type=\"menuitem\">Format - Sections...</item> and select the section in the list <emph>Section</emph>, or right-click on the section in the Navigator and choose <item type=\"menuitem\">Edit...</item>.</variable>"
-msgstr "Dersom det alt er ein bolk, <variable id=\"gotosection\">Vel <item type=\"menuitem\">Format → Bolkar …</item> og vel bolken i lista <emph>Bolk</emph> eller høgreklikk på bolken i dokumentstrukturen og vel <item type=\"menuitem\">Rediger …</item>.</variable> "
+msgstr "Dersom det alt er ein bolk, <variable id=\"gotosection\">Vel <item type=\"menuitem\">Format → Bolkar …</item> og vel bolken i lista <emph>Bolk</emph> eller høgreklikk på bolken i dokumentstrukturen og vel <item type=\"menuitem\">Rediger …</item>.</variable>"
#. 9FD6t
#: protection.xhp
@@ -14081,7 +14081,7 @@ msgctxt ""
"par_id3153594\n"
"help.text"
msgid "To manually update the cross-references in a document, choose <emph>Tools - Update - Fields</emph> from the menu or press F9."
-msgstr "Du kan oppdatera kryssreferansen manuelt ved å velja <emph>Verktøy → Oppdater → Felt</emph> på menyen, eller trykka tasten F9. "
+msgstr "Du kan oppdatera kryssreferansen manuelt ved å velja <emph>Verktøy → Oppdater → Felt</emph> på menyen, eller trykka tasten F9."
#. FV3HG
#: references.xhp
@@ -18077,7 +18077,7 @@ msgctxt ""
"par_id3150223\n"
"help.text"
msgid "On the <menuitem>Frame</menuitem> bar, click the <menuitem>Link Frames</menuitem> <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"6mm\" height=\"6mm\"><alt id=\"alt_id3148968\">Link Frames icon</alt></image> icon."
-msgstr "Trykk på <menuitem>Kopla rammer</menuitem> <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"6mm\" height=\"6mm\"><alt id=\"alt_id3148968\">Ikon Kopla rammer</alt></image> på verktøylinja <menuitem>Ramme</menuitem>,"
+msgstr "Trykk på <menuitem>Kopla rammer</menuitem> <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"6mm\" height=\"6mm\"><alt id=\"alt_id3148968\">Ikon Kopla rammer</alt></image> på verktøylinja <menuitem>Ramme</menuitem>."
#. vEBwD
#: text_frame.xhp
@@ -19868,7 +19868,7 @@ msgctxt ""
"par_id3149848\n"
"help.text"
msgid "In the Alternatives list, click an entry to copy that related term to the \"Replace with\" text box."
-msgstr "Klikk i lista over alternative ord på oppføringa som skal kopierast til tekstfeltet «Byt med». "
+msgstr "Klikk i lista over alternative ord på oppføringa som skal kopierast til tekstfeltet «Byt med»."
#. dCMA2
#: using_thesaurus.xhp
diff --git a/source/nn/helpcontent2/source/text/swriter/librelogo.po b/source/nn/helpcontent2/source/text/swriter/librelogo.po
index 340275a1e74..026b83693f2 100644
--- a/source/nn/helpcontent2/source/text/swriter/librelogo.po
+++ b/source/nn/helpcontent2/source/text/swriter/librelogo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2023-12-05 20:14+0000\n"
+"PO-Revision-Date: 2024-06-27 03:50+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_help-master/textswriterlibrelogo/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.1.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1497373371.000000\n"
#. kypzs
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_1680\n"
"help.text"
msgid "; number is optional<br/> <br/> REPEAT [ POSITION ANY ] ; endless loop<br/>"
-msgstr "; tal her er valfritt<br/> <br/> GJENTA [ PLASSERING ALLE ] ; endelaus løkke<br/> "
+msgstr "; tal her er valfritt<br/> <br/> GJENTA [ PLASSERING ALLE ] ; endelaus løkke<br/>"
#. 5qg3D
#: LibreLogo.xhp
@@ -1985,7 +1985,7 @@ msgctxt ""
"par_2190\n"
"help.text"
msgid "PRINT INPUT “Input value?” ; ask and print a string by a query dialog box<br/> PRINT FLOAT (INPUT “First number?”) + FLOAT (INPUT “Second number?”) ; simple calculator<br/>"
-msgstr "SKRIV UT INNDATA \"Verdi?\" ; skriv ut spørsmålet i eit dialogvindauge<br/> SKRIV UT FLYTTAL (INNDATA \"Første talet?\") + FLYTTAL (INNDATA \"Andre talet?\") ; enkel kalkulator<br/> "
+msgstr "SKRIV UT INNDATA \"Verdi?\" ; skriv ut spørsmålet i eit dialogvindauge<br/> SKRIV UT FLYTTAL (INNDATA \"Første talet?\") + FLYTTAL (INNDATA \"Andre talet?\") ; enkel kalkulator<br/>"
#. 3uHob
#: LibreLogo.xhp
diff --git a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
index d7519be1c29..3888b80abb6 100644
--- a/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1566133413.000000\n"
#. W5ukN
@@ -35616,7 +35616,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "No Break"
-msgstr ""
+msgstr "Ingen sideskift"
#. ngTBv
#: WriterCommands.xcu
diff --git a/source/nn/readlicense_oo/docs.po b/source/nn/readlicense_oo/docs.po
index 6dbf5ec3891..e5fa9682fca 100644
--- a/source/nn/readlicense_oo/docs.po
+++ b/source/nn/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: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2023-12-11 01:45+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1547909822.000000\n"
#. q6Gg3
@@ -383,7 +383,7 @@ msgctxt ""
"rpminstall4\n"
"readmeitem.text"
msgid "Right-click within the directory and choose \"Open in Terminal\". A terminal window will open. From the command line of the terminal window, enter the following command (you will be prompted to enter your root user's password before the command will execute):"
-msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Skriv den følgjande kommandoen (du vert beden om å oppgje passordet til superbrukar/administrator før køyring av kommandoen) i kommandolinja i terminalvindauget: "
+msgstr "Høgreklikk i mappa og vel «Opna i terminal». Eit terminalvindauge kjem fram. Skriv den følgjande kommandoen (du vert beden om å oppgje passordet til superbrukar/administrator før køyring av kommandoen) i kommandolinja i terminalvindauget:"
#. DSXFr
#: readme.xrm
diff --git a/source/nn/sc/messages.po b/source/nn/sc/messages.po
index 9166eb0f4c5..ac7a08d5fc3 100644
--- a/source/nn/sc/messages.po
+++ b/source/nn/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: 2024-06-06 13:17+0200\n"
-"PO-Revision-Date: 2024-06-15 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1563564342.000000\n"
#. kBovX
@@ -14284,19 +14284,16 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr "Treffmodus"
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 ‒ Nøyaktig samsvar. Returnerer #I/T viss ingen samsvar. (standard).\n"
-"-1 ‒ Nøyaktig samsvar eller neste mindre element.\n"
-"1 ‒ Nøyaktig samsvar eller neste større element.\n"
-"2 ‒ Samsvar med jokerteikn eller regulære uttrykk."
#. EvSiP
#: sc/inc/scfuncs.hrc:3394
@@ -14522,19 +14519,16 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr "Treffmodus"
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
-"0 ‒ Nøyaktig samsvar. Returnerer #I/T viss ingen samsvar. (standard).\n"
-"-1 ‒ Nøyaktig samsvar eller neste mindre element.\n"
-"1 ‒ Nøyaktig samsvar eller neste større element.\n"
-"2 ‒ Samsvar med jokerteikn eller regulære uttrykk."
#. UtoXD
#: sc/inc/scfuncs.hrc:3456
@@ -17459,7 +17453,7 @@ msgstr "Fann meir enn %1 resultat (slutta å telja)"
#: sc/inc/strings.hrc:65
msgctxt "SCSTR_PROTECTDOC"
msgid "Protect Spreadsheet Structure"
-msgstr "Vern reknearkstrukturen …"
+msgstr "Vern reknearkstrukturen"
#. SQCpD
#: sc/inc/strings.hrc:66
@@ -23247,91 +23241,91 @@ msgid "_Standard"
msgstr "_Standard"
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr "Linje"
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr "Område"
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr "Skuggeleggjing"
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr "Gjennomsikt"
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr "Skrifttype"
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og avstand"
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr "Tekst"
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimering"
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensjonering"
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Tekstjustering"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatorar"
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr "Utheving"
@@ -23930,102 +23924,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr "Slett"
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ingen kant"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Alle kantlinjer"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Ytre kantar"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Tykk bokskant"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Tykk nedre kant"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Dobbel nedre kant"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Topp og tykke nedre kantar"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Topp og doble nedre kantar"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Venstre kant"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Høgre kant"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Øvre kant"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Nedre kant"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Diagonal opp kant"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Diagonal ned kant"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Øvre og nedre kant"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Venstre og høgre kant"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24063,49 +23961,49 @@ msgid "Format Cells"
msgstr "Celleeigenskapar"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Tal"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Skrift"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Cellevern"
@@ -27450,7 +27348,7 @@ msgstr "Slå av skilje mellom store og små bokstavar for å vera kompatibel med
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:113
msgctxt "extended_tip|case"
msgid "Specifies whether to distinguish between upper and lower case in texts when comparing cell contents."
-msgstr "Kryss av her for å skilje mellom små og store bokstavar i teksten når du samanliknar innhaldet i celler. "
+msgstr "Kryss av her for å skilje mellom små og store bokstavar i teksten når du samanliknar innhaldet i celler."
#. 9W56L
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:124
@@ -28194,43 +28092,43 @@ msgid "Page Style"
msgstr "Sidestil"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Side"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Topptekst"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Botntekst"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Ark"
@@ -28272,55 +28170,55 @@ msgid "Cell Style"
msgstr "Cellestil"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Tal"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Skrift"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Bakgrunn"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Cellevern"
@@ -29433,7 +29331,7 @@ msgstr "Marker celler som ikkje er verna"
#: sc/uiconfig/scalc/ui/protectsheetdlg.ui:407
msgctxt "protectsheetdlg|extended_tip|ProtectSheetDialog"
msgid "Protects the cells in the current sheet from being modified."
-msgstr "Vernar cellene i dette arket mot endring. "
+msgstr "Vernar cellene i dette arket mot endring."
#. 3n2mh
#: sc/uiconfig/scalc/ui/queryrunstreamscriptdialog.ui:13
@@ -29535,7 +29433,7 @@ msgstr "Poisson"
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:247
msgctxt "randomnumbergenerator|extended_tip|distribution-combo"
msgid "The distribution function for the random number generator."
-msgstr "Fordelingsfunksjonen for genereringa av tilfeldige tal. "
+msgstr "Fordelingsfunksjonen for genereringa av tilfeldige tal."
#. vMADv
#: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:261
diff --git a/source/nn/scaddins/messages.po b/source/nn/scaddins/messages.po
index 51c2db555c7..ce84c62155b 100644
--- a/source/nn/scaddins/messages.po
+++ b/source/nn/scaddins/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-11-14 14:36+0100\n"
-"PO-Revision-Date: 2022-11-22 13:49+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/scaddinsmessages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1564508014.000000\n"
#. i8Y7Z
@@ -4409,7 +4409,7 @@ msgstr "Forfall"
#: scaddins/inc/pricing.hrc:39
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "Time to maturity of the option in years"
-msgstr "Tid i år til utløp av opsjonen "
+msgstr "Tid i år til utløp av opsjonen"
#. BBwLE
#: scaddins/inc/pricing.hrc:40
@@ -4481,7 +4481,7 @@ msgstr "Knock-In/Out"
#: scaddins/inc/pricing.hrc:51
msgctxt "PRICING_FUNCDESC_OptBarrier"
msgid "String to define if the option is of type knock-(i)n or knock-(o)ut"
-msgstr "Streng som definerar om opsjonen er av typen knock-(i)n eller knock-(o)ut "
+msgstr "Streng som definerar om opsjonen er av typen knock-(i)n eller knock-(o)ut"
#. FG7Bu
#: scaddins/inc/pricing.hrc:52
diff --git a/source/nn/sd/messages.po b/source/nn/sd/messages.po
index e7f9ad5118d..b7c5de23bd7 100644
--- a/source/nn/sd/messages.po
+++ b/source/nn/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: 2024-06-17 15:59+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/nn/>\n"
"Language: nn\n"
@@ -8679,7 +8679,7 @@ msgstr "Papirskuff frå _skrivaroppsettet"
#: sd/uiconfig/simpress/ui/prntopts.ui:41
msgctxt "extended_tip|papertryfrmprntrcb"
msgid "Determines that the paper tray to be used is the one defined in the printer setup."
-msgstr "Gjer at den papirskuffen som er definert i skrivaroppsettet skal brukast. "
+msgstr "Gjer at den papirskuffen som er definert i skrivaroppsettet skal brukast."
#. Byo4C
#: sd/uiconfig/simpress/ui/prntopts.ui:59
@@ -9558,97 +9558,97 @@ msgid "_Standard"
msgstr "_Standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr "Generelt"
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linje"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Område"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Skuggeleggjing"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Gjennomsikt"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Skrift"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og avstand"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tekst"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tekstanimering"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Dimensjonering"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Sambandslinje"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Justering"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulatorar"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Markering"
diff --git a/source/nn/sfx2/messages.po b/source/nn/sfx2/messages.po
index 905effc1efd..2b6f7c829af 100644
--- a/source/nn/sfx2/messages.po
+++ b/source/nn/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: 2024-06-03 12:06+0200\n"
-"PO-Revision-Date: 2024-06-05 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561144707.000000\n"
#. bHbFE
@@ -1634,376 +1634,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr "Makroar er slått av på grunn av innstillingane sett for makrotryggleik."
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr "Makroar er signerte, men dokumentet (som inneheld dokumenthendingar) er ikkje signert."
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr "Vis makroar"
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr "Vis tryggleiksinnstillingar"
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr "Vis hendingar"
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Elegant grå"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Bikube"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Blå kurve"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Blåkopi planar"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Snop"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Gul idé"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "DNA"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fokus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Skogsfugl"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frisk"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspirasjon"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lys"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Vaksande fridom"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropol"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Midnattblå"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Naturillustrasjon"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Blyant"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portefølje"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Framdrift"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solnedgang"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Årgang"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Livleg"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resyme"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Standard"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Moderne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr "Moderne forretningsbrev sans-serif"
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr "Moderne forretningsbrev serif"
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Visittkort med logo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr "Enkel"
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr "BPMN"
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Forenkla kinesisk, normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr "Japansk, normal"
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Fjern"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Fjern alt"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Passordlengd"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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 "Passordet du skreiv inn skapar kompatibilitetsproblem. Skriv inn eit passord med mindre enn 52 bytes eller meir enn 55 bytes."
#. jBQFN
-#: include/sfx2/strings.hrc:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-klikk for å opna hyperlenkja: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Trykk for å opna hyperlenkja: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr "(brukt av: %STYLELIST)"
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Dokument"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Rekneark"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentasjon"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Teikning"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "Tidlegare brukt"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Ingen tidlegare brukte teikn"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr "Tilbakestill alle ~standardmalane"
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr "~Tilbakestill standard tekstdokument"
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr "Tilbakestill standard ~rekneark"
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr "Tilbakestill standard ~presentasjon"
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr "Tilbakestill ~standard teikning"
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "~Importer"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "Ut~vidingar"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Gje nytt namn"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "Gje kategorien nytt namn"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Ny kategori"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr "UNO-objektinspektor"
@@ -4295,7 +4301,7 @@ msgstr "Utskrift i _normal kvalitet"
#: sfx2/uiconfig/ui/optprintpage.ui:437
msgctxt "extended_tip|reducebitmapnormal"
msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
-msgstr "Høg utskriftskvalitet svarar til ei oppløysing på 300 dpi. Normal utskriftskvalietet svarar til ei oppløysing på 200 dpi."
+msgstr "Høg utskriftskvalitet svarar til ei oppløysing på 300 dpi. Normal utskriftskvalietet svarar til ei oppløysing på 200 dpi. "
#. EZGK5
#: sfx2/uiconfig/ui/optprintpage.ui:454
@@ -4361,7 +4367,7 @@ msgstr "Utskrift i _høg kvalitet"
#: sfx2/uiconfig/ui/optprintpage.ui:512
msgctxt "extended_tip|reducebitmapoptimal"
msgid "High print quality corresponds to a resolution of 300dpi. Normal print quality corresponds to a resolution of 200dpi. "
-msgstr "Høg utskriftskvalitet svarar til ei oppløysing på 300 dpi. Normal utskriftskvalietet svarar til ei oppløysing på 200 dpi."
+msgstr "Høg utskriftskvalitet svarar til ei oppløysing på 300 dpi. Normal utskriftskvalietet svarar til ei oppløysing på 200 dpi. "
#. YxX2s
#: sfx2/uiconfig/ui/optprintpage.ui:559
diff --git a/source/nn/starmath/messages.po b/source/nn/starmath/messages.po
index ae9cc830bc5..bd090164adc 100644
--- a/source/nn/starmath/messages.po
+++ b/source/nn/starmath/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2023-12-04 15:07+0100\n"
-"PO-Revision-Date: 2023-10-09 07:36+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/starmathmessages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1566134030.000000\n"
#. GrDhX
@@ -3068,7 +3068,7 @@ msgstr "S_ans-serif"
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:68
msgctxt "fonttypedialog|menuitem7"
msgid "Fixe_d-width"
-msgstr "_Fast breidd: "
+msgstr "_Fast breidd"
#. dXCDj
#: starmath/uiconfig/smath/ui/fonttypedialog.ui:76
@@ -3813,7 +3813,7 @@ msgstr "_Endra"
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:272
msgctxt "symdefinedialog|extended_tip|modify"
msgid "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box."
-msgstr "Trykk her for å byta ut symbolnamnet i det venstre førehandsvisingsvindauget med det nye namnet som du har skrive inn i listeboksen Symbol. (Det gamle namnet vertvist i listeboksen Gamle symbol) "
+msgstr "Trykk her for å byta ut symbolnamnet i det venstre førehandsvisingsvindauget med det nye namnet som du har skrive inn i listeboksen Symbol. (Det gamle namnet vert vist i listeboksen Gamle symbol)."
#. 3GfeR
#: starmath/uiconfig/smath/ui/symdefinedialog.ui:291
diff --git a/source/nn/svtools/messages.po b/source/nn/svtools/messages.po
index 534c943ea90..9f40c5a9ade 100644
--- a/source/nn/svtools/messages.po
+++ b/source/nn/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-04-17 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/nn/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1561144643.000000\n"
#. fLdeV
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Klarte ikkje å oppretta Internett-samband til $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Feilmelding frå tenaren: $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Feilmelding frå tenaren: $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Det oppstod ein generell Internett-feil."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Dei Internett-dataa du ba om er ikkje tilgjengelege i mellomlageret og kan ikkje overførast sidan programmet ikkje er tilkopla."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Klarte ikkje laga innhaldet."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Filnamnet er for langt for filsystemet det skal brukast på."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Inndatasyntaksen er ugyldig."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Dokumentet bør lagrast i eit %PRODUCTNAME %PRODUCTVERSION-filformat i staden."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Det høgste talet på dokument som kan vera opne om gongen er nådd. Du må lukka eitt eller fleire dokument før du kan opna eit nytt dokument."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Klarte ikkje laga reservekopi."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ugyldig datalengd."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Funksjonen kan ikkje utførast fordi stien inneheld den gjeldande mappa."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Funksjonen kan ikkje utførast fordi einingane (stasjonane) ikkje er identiske."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Eininga (stasjonen) er ikkje klar."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr "Feil kontrollsum"
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Funksjonen kan ikkje utførast fordi fila er skriveverna."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"Du må først slå av delemodus."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr "Fann filformatfeil ved $(ARG1)(rad,kolonne)."
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr "Filteret for dette filformatet er kopla frå i oppsettet. Kontakt systemadministrator."
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Generell OLE-feil."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Handlinga kan ikkje utførast når objektet er i denne tilstanden."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Objektet støttar ingen handlingar."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Objektet støttar ikkje denne handlinga."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) då objektet vart teke i bruk"
diff --git a/source/nn/svx/messages.po b/source/nn/svx/messages.po
index 2d2119c5f35..0412a52f1ec 100644
--- a/source/nn/svx/messages.po
+++ b/source/nn/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: 2024-06-17 15:58+0200\n"
-"PO-Revision-Date: 2024-06-15 01:45+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/nn/>\n"
"Language: nn\n"
@@ -4630,7 +4630,7 @@ msgstr "Skravering"
#: include/svx/strings.hrc:815
msgctxt "RID_SVXSTR_BMP0"
msgid "Empty"
-msgstr "Tom "
+msgstr "Tom"
#. Q4jUs
#: include/svx/strings.hrc:816
@@ -8113,7 +8113,7 @@ msgstr "Latin (enkel)"
#: include/svx/strings.hrc:1467
msgctxt "RID_SUBSETMAP"
msgid "Latin-1 Supplement"
-msgstr ""
+msgstr "Latin-1 Tillegg"
#. h6THj
#: include/svx/strings.hrc:1468
@@ -8149,7 +8149,7 @@ msgstr "Samansette diakritiske teikn"
#: include/svx/strings.hrc:1473
msgctxt "RID_SUBSETMAP"
msgid "Greek and Coptic"
-msgstr ""
+msgstr "Gresk og koptisk"
#. jGT5E
#: include/svx/strings.hrc:1474
@@ -8749,7 +8749,7 @@ msgstr "Cherokee"
#: include/svx/strings.hrc:1573
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllables"
-msgstr ""
+msgstr "Sameinte Canadiske aboriginalstavingar"
#. d5JWE
#: include/svx/strings.hrc:1574
@@ -9151,7 +9151,7 @@ msgstr "Samaritansk"
#: include/svx/strings.hrc:1640
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended"
-msgstr ""
+msgstr "Sameinte Canadiske aboriginalstavingar utvida"
#. H4FpF
#: include/svx/strings.hrc:1641
@@ -10003,7 +10003,7 @@ msgstr "Toto"
#: include/svx/strings.hrc:1782
msgctxt "RID_SUBSETMAP"
msgid "Unified Canadian Aboriginal Syllabics Extended-A"
-msgstr ""
+msgstr "Sameinte Canadiske aboriginalstavingar utvida-A"
#. NpBis
#: include/svx/strings.hrc:1783
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Ingen kantlinjer"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Sett berre ytre kantlinje"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Ytre kantlinjer og vassrette linjer"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Ytre kantlinjer og alle indre linjer"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Ytre kantlinjer og loddrette linjer"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Sett ytre kantlinjer utan å endra dei indre linjene"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr "Berre diagonale linjer"
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr "Kantlinje diagonalt nedover"
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr "Kantlinje diagonalt oppover"
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr "Krysover kantlinje"
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "Alle fire kantlinjene"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "Berre venstre og høgre kantlinjer"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "Berre øvre og nedre kantlinjer"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "Øvre og nedre kantlinjer og alle vassrette linjer"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "Berre venstre kantlinje"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "Berre høgre kantlinje"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "Berre øvre kantlinje"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "Bere nedre kantlinje"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr "Øvre og nedre kantlinjer og alle indre linjer"
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr "Venstre og høgre kantlinjer og alle indre linjer"
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr "Fjern frå favorittar"
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr "Manglande teikn"
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr "Legg til i favorittar"
@@ -10281,19 +10331,19 @@ msgstr "Legg til i favorittar"
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Kontroll av grafisk storleik"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_LOW"
msgid "Image '%NAME%' has too few pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Biletet «%NAME%» har for få pikslar for den gjeldande storleiken (%DPIX% x %DPIY% DPI)"
#. Q2kMw
-#: include/svx/strings.hrc:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr "Biletet «%NAME%» har for mange pikslar for den gjeldande storleiken (%DPIX% x %DPIY% DPI)"
@@ -10835,7 +10885,7 @@ msgstr "Gjennomsnitt"
#: svx/inc/fmstring.hrc:39
msgctxt "RID_RSC_SQL_INTERNATIONAL"
msgid "Count"
-msgstr "Tal på"
+msgstr "Talpå"
#. TFaGE
#: svx/inc/fmstring.hrc:40
@@ -11330,7 +11380,7 @@ msgstr "А, Б, .., Аа, Аб, … (russisk)"
#: svx/inc/numberingtype.hrc:52
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "а, б, .., аа, аб, ... (Russian)"
-msgstr "а, б, .., аа, аб, … (russisk) "
+msgstr "а, б, .., аа, аб, … (russisk)"
#. kHAr7
#. CHARS_CYRILLIC_UPPER_LETTER_N_RU
@@ -11480,13 +11530,13 @@ msgstr "Frå nedre cellekant"
#: svx/inc/samecontent.hrc:20
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "All Pages"
-msgstr "Alle sider "
+msgstr "Alle sider"
#. kKCQR
#: svx/inc/samecontent.hrc:21
msgctxt "RID_SVXSTRARY_SAMECONTENT"
msgid "First Page"
-msgstr "Første side "
+msgstr "Første side"
#. MHuCA
#: svx/inc/samecontent.hrc:22
@@ -12680,121 +12730,121 @@ msgstr "C6-konvolutt"
#: svx/source/dialog/page.hrc:51
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C6/5 Envelope"
-msgstr "C6/C5-konvolutt "
+msgstr "C6/C5-konvolutt"
#. XsMRE
#: svx/source/dialog/page.hrc:52
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C5 Envelope"
-msgstr "C5-konvolutt "
+msgstr "C5-konvolutt"
#. uFwGu
#: svx/source/dialog/page.hrc:53
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "C4 Envelope"
-msgstr "C4-konvolutt "
+msgstr "C4-konvolutt"
#. dCpd2
#: svx/source/dialog/page.hrc:54
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#6¾ Envelope"
-msgstr "#6¾ konvolutt "
+msgstr "#6¾ konvolutt"
#. zy6rP
#: svx/source/dialog/page.hrc:55
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#7¾ (Monarch) Envelope"
-msgstr "#7¾ (Monarch) konvolutt "
+msgstr "#7¾ (Monarch) konvolutt"
#. m4N6Q
#: svx/source/dialog/page.hrc:56
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#9 Envelope"
-msgstr "#9 konvolutt "
+msgstr "#9 konvolutt"
#. JsBkZ
#: svx/source/dialog/page.hrc:57
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#10 Envelope"
-msgstr "#10 konvolutt "
+msgstr "#10 konvolutt"
#. 7FeU9
#: svx/source/dialog/page.hrc:58
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#11 Envelope"
-msgstr "#11-konvolutt "
+msgstr "#11-konvolutt"
#. 6sqhV
#: svx/source/dialog/page.hrc:59
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "#12 Envelope"
-msgstr "#12 konvolutt "
+msgstr "#12 konvolutt"
#. 8uXDq
#: svx/source/dialog/page.hrc:60
msgctxt "RID_SVXSTRARY_PAPERSIZE_STD"
msgid "Japanese Postcard"
-msgstr "Japansk postkort "
+msgstr "Japansk postkort"
#. N2J2b
#: svx/source/dialog/page.hrc:65
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A6"
-msgstr "A6 "
+msgstr "A6"
#. 78f4A
#: svx/source/dialog/page.hrc:66
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A5"
-msgstr "A5 "
+msgstr "A5"
#. i6x38
#: svx/source/dialog/page.hrc:67
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A4"
-msgstr "A4 "
+msgstr "A4"
#. Dmqus
#: svx/source/dialog/page.hrc:68
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A3"
-msgstr "A3 "
+msgstr "A3"
#. XjWtg
#: svx/source/dialog/page.hrc:69
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A2"
-msgstr "A2 "
+msgstr "A2"
#. yqBrH
#: svx/source/dialog/page.hrc:70
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A1"
-msgstr "A1 "
+msgstr "A1"
#. Ao3sz
#: svx/source/dialog/page.hrc:71
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "A0"
-msgstr "A0 "
+msgstr "A0"
#. jvpHD
#: svx/source/dialog/page.hrc:72
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (ISO)"
-msgstr "B6 (ISO) "
+msgstr "B6 (ISO)"
#. DGqE3
#: svx/source/dialog/page.hrc:73
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (ISO)"
-msgstr "B5 (ISO) "
+msgstr "B5 (ISO)"
#. JrZiW
#: svx/source/dialog/page.hrc:74
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (ISO)"
-msgstr "B4 (ISO) "
+msgstr "B4 (ISO)"
#. 8zZQc
#: svx/source/dialog/page.hrc:75
@@ -12806,115 +12856,115 @@ msgstr "US Letter"
#: svx/source/dialog/page.hrc:76
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Legal"
-msgstr "Legal "
+msgstr "Legal"
#. GyH6H
#: svx/source/dialog/page.hrc:77
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Long Bond"
-msgstr "Long Bond "
+msgstr "Long Bond"
#. gWjE2
#: svx/source/dialog/page.hrc:78
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Tabloid"
-msgstr "Tabloid "
+msgstr "Tabloid"
#. 5Dddp
#: svx/source/dialog/page.hrc:79
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B6 (JIS)"
-msgstr "B6 (JIS) "
+msgstr "B6 (JIS)"
#. sYcjZ
#: svx/source/dialog/page.hrc:80
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B5 (JIS)"
-msgstr "B5 (JIS) "
+msgstr "B5 (JIS)"
#. f9tD2
#: svx/source/dialog/page.hrc:81
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "B4 (JIS)"
-msgstr "B4 (JIS) "
+msgstr "B4 (JIS)"
#. DGFbZ
#: svx/source/dialog/page.hrc:82
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "16 Kai"
-msgstr "16 Kai "
+msgstr "16 Kai"
#. JbFMy
#: svx/source/dialog/page.hrc:83
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "32 Kai"
-msgstr "32 Kai "
+msgstr "32 Kai"
#. E3CDE
#: svx/source/dialog/page.hrc:84
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Big 32 Kai"
-msgstr "Stor 32 Kai "
+msgstr "Stor 32 Kai"
#. rSAv7
#: svx/source/dialog/page.hrc:85
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "User"
-msgstr "Brukar "
+msgstr "Brukar"
#. z3HXV
#: svx/source/dialog/page.hrc:86
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "DL Envelope"
-msgstr "DL-konvolutt "
+msgstr "DL-konvolutt"
#. k2HBd
#: svx/source/dialog/page.hrc:87
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6 Envelope"
-msgstr "C6-konvolutt "
+msgstr "C6-konvolutt"
#. t43Ta
#: svx/source/dialog/page.hrc:88
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C6/5 Envelope"
-msgstr "C6/C5-konvolutt "
+msgstr "C6/C5-konvolutt"
#. jfDNz
#: svx/source/dialog/page.hrc:89
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C5 Envelope"
-msgstr "C5-konvolutt "
+msgstr "C5-konvolutt"
#. h2cDh
#: svx/source/dialog/page.hrc:90
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "C4 Envelope"
-msgstr "C4-konvolutt "
+msgstr "C4-konvolutt"
#. j4Hms
#: svx/source/dialog/page.hrc:91
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Dia Slide"
-msgstr "Lysbilete "
+msgstr "Lysbilete"
#. ePYVT
#: svx/source/dialog/page.hrc:92
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 4:3"
-msgstr "Skjerm 4:3 "
+msgstr "Skjerm 4:3"
#. pWa4A
#: svx/source/dialog/page.hrc:93
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:9"
-msgstr "Skjerm 16:9 "
+msgstr "Skjerm 16:9"
#. T62Dx
#: svx/source/dialog/page.hrc:94
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Screen 16:10"
-msgstr "Skjerm 16:10 "
+msgstr "Skjerm 16:10"
#. hwMzF
#: svx/source/dialog/page.hrc:95
@@ -12944,7 +12994,7 @@ msgstr "Skjermvising (16 : 10)"
#: svx/source/dialog/page.hrc:99
msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW"
msgid "Japanese Postcard"
-msgstr "Japansk postkort "
+msgstr "Japansk postkort"
#. 3gfeR
#: svx/uiconfig/ui/acceptrejectchangesdialog.ui:8
@@ -19019,7 +19069,7 @@ msgstr "Filtrerer lista over endringar etter tidspunktet du vel."
#: svx/uiconfig/ui/redlinefilterpage.ui:417
msgctxt "redlinefilterpage|endclock|tooltip_text"
msgid "Set current time and date"
-msgstr "Set noverande klokkeslett og dato "
+msgstr "Set noverande klokkeslett og dato"
#. efdRD
#: svx/uiconfig/ui/redlinefilterpage.ui:444
@@ -20396,7 +20446,7 @@ msgstr "Innrykk og avstand"
#: svx/uiconfig/ui/textcontrolparadialog.ui:183
msgctxt "textcontrolparadialog|labelTP_PARA_ALIGN"
msgid "Alignment"
-msgstr "Justering "
+msgstr "Justering"
#. mwKiB
#: svx/uiconfig/ui/textcontrolparadialog.ui:232
diff --git a/source/nn/sw/messages.po b/source/nn/sw/messages.po
index e3a54e7baf9..c7a6ae968c7 100644
--- a/source/nn/sw/messages.po
+++ b/source/nn/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-15 01:45+0000\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/nn/>\n"
"Language: nn\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Liste 5 framhald"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Topp- og botntekst"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10604,41 +10604,47 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr "Tabell"
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr "Formatering"
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr "Hyperlenkje"
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr "Simulerte bilettekstar"
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr "Nummerering"
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr "Anna"
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
-msgstr ""
+msgstr "Trykk for å oppdatera…"
#. MEgcB
#: sw/uiconfig/swriter/ui/abstractdialog.ui:22
@@ -11586,7 +11592,7 @@ msgstr "_Sti …"
#: sw/uiconfig/swriter/ui/autotext.ui:224
msgctxt "autotext|extended_tip|path"
msgid "Opens the Edit Paths dialog, where you can select the directory to store AutoText."
-msgstr "Opnar dialogvindauget «Vel stiar», der du kan velja mappa du vil lagra autotekst i. "
+msgstr "Opnar dialogvindauget «Vel stiar», der du kan velja mappa du vil lagra autotekst i."
#. DCz3b
#: sw/uiconfig/swriter/ui/autotext.ui:250
@@ -11742,7 +11748,7 @@ msgstr "Set inn"
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:101
msgctxt "bibliographyentry|extended_tip|insert"
msgid "Inserts the bibliographic reference into the document. If you created a new record, you must also insert it as an entry, otherwise the record is lost when you close the document."
-msgstr "Set litteraturtilvisinga inn i dokumentet. Dersom du laga ein ny datapost, må du setja han inn som ei oppføring elles vert dataposten borte når du lukkar dokumentet. "
+msgstr "Set litteraturtilvisinga inn i dokumentet. Dersom du laga ein ny datapost, må du setja han inn som ei oppføring elles vert dataposten borte når du lukkar dokumentet."
#. JT2A7
#: sw/uiconfig/swriter/ui/bibliographyentry.ui:113
@@ -12906,7 +12912,7 @@ msgstr "Skriv inn nummeret for den kolonnen du vil endra breidda på."
#: sw/uiconfig/swriter/ui/columnwidth.ui:153
msgctxt "columnwidth|extended_tip|width"
msgid "Enter the width that you want for the selected column(s)."
-msgstr "Skriv inn den ønskte breidda for den valde kolonnen eller dei valde kolonnane. "
+msgstr "Skriv inn den ønskte breidda for den valde kolonnen eller dei valde kolonnane."
#. A9Zr4
#: sw/uiconfig/swriter/ui/columnwidth.ui:168
@@ -14346,7 +14352,7 @@ msgstr "Database"
#: sw/uiconfig/swriter/ui/envaddresspage.ui:117
msgctxt "envaddresspage|extended_tip|database"
msgid "Select the database containing the address data that you want to insert."
-msgstr "Vel databasen som inneheld dei adressene du ønskjer å setja inn. "
+msgstr "Vel databasen som inneheld dei adressene du ønskjer å setja inn."
#. hSE39
#: sw/uiconfig/swriter/ui/envaddresspage.ui:144
@@ -16436,55 +16442,55 @@ msgid "Frame"
msgstr "Ramme"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr "Posisjon og storleik"
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Val"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Linjebryting"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlenkje"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Område"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Gjennomsikt"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Spalter"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -17771,7 +17777,7 @@ msgstr "Produkt"
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:310
msgctxt "inputwinmenu|extended_tip|statistics"
msgid "You can choose from the following statistical functions:"
-msgstr "Du kan velja mellom desse statistiske funksjonane: "
+msgstr "Du kan velja mellom desse statistiske funksjonane:"
#. vEC7B
#: sw/uiconfig/swriter/ui/inputwinmenu.ui:319
@@ -17993,7 +17999,7 @@ msgstr "Endra namn"
#: sw/uiconfig/swriter/ui/insertbookmark.ui:411
msgctxt "insertbookmark|extended_tip|InsertBookmarkDialog"
msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time."
-msgstr "Set inn eit bokmerke på markørposisjonen. Du kan seinare bruka dokumentstrukturen for å raskt hoppa til den merkte staden. "
+msgstr "Set inn eit bokmerke på markørposisjonen. Du kan seinare bruka dokumentstrukturen for å raskt hoppa til den merkte staden."
#. ydP4q
#: sw/uiconfig/swriter/ui/insertbreak.ui:14
@@ -18515,7 +18521,7 @@ msgstr "Teikn:"
#: sw/uiconfig/swriter/ui/insertfootnote.ui:194
msgctxt "insertfootnote|extended_tip|character"
msgid "Choose this option to define a character or symbol for the current footnote."
-msgstr "Vel dette alternativet for å definera eit teikn eller symbol for den gjeldande fotnota. "
+msgstr "Vel dette alternativet for å definera eit teikn eller symbol for den gjeldande fotnota."
#. BrqCB
#: sw/uiconfig/swriter/ui/insertfootnote.ui:218
@@ -18527,7 +18533,7 @@ msgstr "Teikn"
#: sw/uiconfig/swriter/ui/insertfootnote.ui:219
msgctxt "insertfootnote|extended_tip|characterentry"
msgid "Choose this option to define a character or symbol for the current footnote."
-msgstr "Vel dette alternativet for å definera eit teikn eller symbol for den gjeldande fotnota. "
+msgstr "Vel dette alternativet for å definera eit teikn eller symbol for den gjeldande fotnota."
#. yx2tm
#: sw/uiconfig/swriter/ui/insertfootnote.ui:230
@@ -28881,43 +28887,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr "Tilbakestiller alle endringar som er gjort i den viste fana til innstillingane som var i bruk då dette dialogvindauget vart opna."
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr "Generelt"
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Skrift"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Plassering"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk oppsett"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Utheving"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Kantlinjer"
@@ -28929,85 +28935,85 @@ msgid "List Style"
msgstr "Listestil"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr "Namngjev og gøym brukardefinerte stilar"
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr "Generelt"
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr "Vel ein førehandsdefinert punkttype"
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Usortert"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Vel ei førehandsdefinert sortert liste"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Sortert"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr "Vel eit førehandsdefinert disposisjonsformat"
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Disposisjon"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr "Vel eit førehandsdefinert grafisk punktteikn"
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Bilete"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr "Endra innrykk, avstand og justering for listenummer eller symbol"
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Plassering"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr "Utforma ditt eige liste- eller disposisjonsformat"
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Tilpass"
@@ -29019,109 +29025,109 @@ msgid "Paragraph Style"
msgstr "Avsnittstil"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr "Generelt"
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Innrykk og mellomrom"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Justering"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Tekstflyt"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Asiatisk typografi"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Skrift"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Skrifteffektar"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Plassering"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Asiatisk oppsett"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Utheving"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulatorar"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Innfelde forbokstavar"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Område"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Gjennomsikt"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Vilkår"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr "Sett disposisjonsnivå, listestil og linjenummerering for avsnittsstil."
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Disposisjon og liste"
@@ -29133,55 +29139,55 @@ msgid "Frame Style"
msgstr "Rammestil"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr "Generelt"
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Type"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Val"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Linjebryting"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Område"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Gjennomsikt"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Spalter"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makro"
@@ -29199,61 +29205,61 @@ msgid "Standard"
msgstr "Standard"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr "Generelt"
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Side"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Område"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Gjennomsikt"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Topptekst"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Botntekst"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Kantlinjer"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Spalter"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Fotnote"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Tekstrutenett"
@@ -31014,7 +31020,7 @@ msgstr "_Jamn rulling"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:499
msgctxt "extended_tip|smoothscroll"
msgid "Activates the smooth page scrolling function. "
-msgstr "Vel denne for å slå på mjuk siderulling."
+msgstr "Vel denne for å slå på mjuk siderulling. "
#. ThYRV
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:518
diff --git a/source/nn/swext/mediawiki/help.po b/source/nn/swext/mediawiki/help.po
index 51b9d4e6634..0c9ac1fdc76 100644
--- a/source/nn/swext/mediawiki/help.po
+++ b/source/nn/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-09-09 11:26+0000\n"
+"PO-Revision-Date: 2024-06-28 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/swextmediawikihelp/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542374710.000000\n"
#. 7EFBE
@@ -167,7 +167,7 @@ msgctxt ""
"par_id368968\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikisettings.xhp\"><emph>Options</emph></link> dialog, click <emph>Add</emph>."
-msgstr "Trykk på <emph>Legg til</emph> i dialogvindauget <link href=\"com.sun.wiki-publisher/wikisettings.xhp\"><emph>Val</emph></link>"
+msgstr "Trykk på <emph>Legg til</emph> i dialogvindauget <link href=\"com.sun.wiki-publisher/wikisettings.xhp\"><emph>Val</emph></link>."
#. pkAFV
#: wiki.xhp
diff --git a/source/nn/wizards/source/resources.po b/source/nn/wizards/source/resources.po
index 866e0fa1035..bb470db1488 100644
--- a/source/nn/wizards/source/resources.po
+++ b/source/nn/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: 2022-12-12 14:06+0100\n"
-"PO-Revision-Date: 2022-12-19 14:08+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/wizardssourceresources/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1557861305.000000\n"
#. 8UKfi
@@ -1592,7 +1592,7 @@ msgctxt ""
"RID_QUERY_21\n"
"property.text"
msgid "Table:"
-msgstr "Tabell: "
+msgstr "Tabell:"
#. jaKR7
#: resources_en_US.properties
@@ -1808,7 +1808,7 @@ msgctxt ""
"RID_QUERY_50\n"
"property.text"
msgid "Fie~lds in the Query:"
-msgstr "Fel~t i spørjinga: "
+msgstr "Fel~t i spørjinga:"
#. CScUQ
#: resources_en_US.properties
@@ -2465,7 +2465,7 @@ msgctxt ""
"RID_FORM_45\n"
"property.text"
msgid "Existing data will not be displayed"
-msgstr "Eksisterande data vert ikkje viste "
+msgstr "Eksisterande data vert ikkje viste"
#. hrpiG
#: resources_en_US.properties
@@ -3401,7 +3401,7 @@ msgctxt ""
"STATUSLINE_0\n"
"property.text"
msgid "Conversion status:"
-msgstr "Status for konvertering: "
+msgstr "Status for konvertering:"
#. 8EcKA
#: resources_en_US.properties
diff --git a/source/nn/xmlsecurity/messages.po b/source/nn/xmlsecurity/messages.po
index d466ee11aef..c504160f6c7 100644
--- a/source/nn/xmlsecurity/messages.po
+++ b/source/nn/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: 2024-04-20 14:13+0200\n"
-"PO-Revision-Date: 2024-04-26 01:46+0000\n"
+"PO-Revision-Date: 2024-06-27 01:45+0000\n"
"Last-Translator: Kolbjørn Stuestøl <kolbjoern@stuestoel.no>\n"
"Language-Team: Norwegian Nynorsk <https://translations.documentfoundation.org/projects/libo_ui-master/xmlsecuritymessages/nn/>\n"
"Language: nn\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.3.1\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1556119940.000000\n"
#. EyJrF
@@ -377,13 +377,13 @@ msgstr "Sertifikatet er gyldig."
#: xmlsecurity/uiconfig/ui/certgeneral.ui:109
msgctxt "certgeneral|issued_to"
msgid "Issued to: "
-msgstr "Utferda til:"
+msgstr "Utferda til: "
#. UzJpm
#: xmlsecurity/uiconfig/ui/certgeneral.ui:136
msgctxt "certgeneral|issued_by"
msgid "Issued by: "
-msgstr "Utferda av:"
+msgstr "Utferda av: "
#. tXsEv
#: xmlsecurity/uiconfig/ui/certgeneral.ui:162
diff --git a/source/nr/cui/messages.po b/source/nr/cui/messages.po
index a211a78daf5..4ffc6d52cf8 100644
--- a/source/nr/cui/messages.po
+++ b/source/nr/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2576,10 +2576,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/nr/sc/messages.po b/source/nr/sc/messages.po
index 886dc36f512..268b788b095 100644
--- a/source/nr/sc/messages.po
+++ b/source/nr/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14824,14 +14824,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -15063,14 +15064,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -24087,91 +24089,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24792,103 +24794,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Akunamkhawulo"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24928,50 +24833,50 @@ msgid "Format Cells"
msgstr "Fometha iseli"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Iinomboro"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Ifonti"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
#, fuzzy
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Inqophiso"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Isendlalelo"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -29232,46 +29137,46 @@ msgid "Page Style"
msgstr "Indlela yekhasi"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Amakhasi"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Isendlalelo"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
#, fuzzy
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Amaheda"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
#, fuzzy
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Amafuta"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -29317,56 +29222,56 @@ msgid "Cell Style"
msgstr "Iindlela Zamaseli"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Iinomboro"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Ifonti"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
#, fuzzy
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Inqophiso"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Isendlalelo"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/nr/sd/messages.po b/source/nr/sd/messages.po
index dd06d89c8de..fc502c816a7 100644
--- a/source/nr/sd/messages.po
+++ b/source/nr/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9837,102 +9837,102 @@ msgid "_Standard"
msgstr "Istandadi"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
#, fuzzy
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Umuda"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr ""
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Khanyela"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Ifonti"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
#, fuzzy
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Itheksithi:"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Ukudlalwa komtlolo Ziinlwana"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Umuda wobungako"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Isithintanisi"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Inqophiso"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/nr/sfx2/messages.po b/source/nr/sfx2/messages.po
index 8d276a0245e..83741db1dd8 100644
--- a/source/nr/sfx2/messages.po
+++ b/source/nr/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1597,376 +1597,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Susa"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/nr/svtools/messages.po b/source/nr/svtools/messages.po
index 9c7e0ddc5ee..3d3d0974215 100644
--- a/source/nr/svtools/messages.po
+++ b/source/nr/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2407,16 +2407,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2424,37 +2432,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Okungaphakathi akhenge kwenziwe."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Igama lefayili lide khulu bona lingangena erherhweni lefayili enqotjhiweko."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr ""
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2462,19 +2470,19 @@ msgid ""
msgstr ""
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr ""
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Ayikwazi ukwenza ikhophi yokusekela."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2487,43 +2495,43 @@ msgid ""
msgstr ""
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Ubukhulu bedatha obungasbenziko."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Umsebenzi awukghonakali indledlana inerhemo lanjesi."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Umsebenzi awukghonakali: isisetjenziswa (i-drive) ayifani."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Isisetjenziswa (i-drive) ayisebenzi."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Umsebenzi awukghoneki: ukutlola kuvikelwe."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2531,44 +2539,44 @@ msgid ""
msgstr ""
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr ""
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Isenzo angeze senziwa ebujameni banjesi."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr ""
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr ""
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/nr/svx/messages.po b/source/nr/svx/messages.po
index ce80d5fa7a2..d50d6987de9 100644
--- a/source/nr/svx/messages.po
+++ b/source/nr/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-02-01 14:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: South Ndebele <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/nr/>\n"
@@ -10322,134 +10322,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10458,19 +10508,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/nr/sw/messages.po b/source/nr/sw/messages.po
index da6669dbbcf..5f3e11c649b 100644
--- a/source/nr/sw/messages.po
+++ b/source/nr/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3068,9 +3068,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10889,38 +10889,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16983,59 +16989,59 @@ msgid "Frame"
msgstr "Isakhiwo"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr " Ukukhetha"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~Dlulisa igama"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Ama-haephalink"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr ""
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Khanyela"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Amakholomu"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
#, fuzzy
msgctxt "framedialog|macro"
msgid "Macro"
@@ -29923,47 +29929,47 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
#, fuzzy
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "~Ifonti"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
#, fuzzy
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Ubujamo X"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Ubunjalo be-Asia"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Esele kukhethwe yikhompyutha"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Imikhawulo"
@@ -29975,88 +29981,88 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
#, fuzzy
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Tlama"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
#, fuzzy
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Isitjengiso"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
#, fuzzy
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Ubujamo X"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -30069,117 +30075,117 @@ msgid "Paragraph Style"
msgstr "(Indlela Yendima: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
#, fuzzy
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Inqophiso"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
#, fuzzy
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "~Ifonti"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
#, fuzzy
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Ubujamo X"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Ubunjalo be-Asia"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Esele kukhethwe yikhompyutha"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Amathe~bhu"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Lisa Amagabhadlhela"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr ""
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Khanyela"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Ubujamo"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30192,58 +30198,58 @@ msgid "Frame Style"
msgstr "Ijamo Lesakhelo"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Umhlobo"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr " Ukukhetha"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Dlulisa igama"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr ""
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Khanyela"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Amakholomu"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
#, fuzzy
msgctxt "templatedialog4|macros"
msgid "Macro"
@@ -30263,66 +30269,66 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
#, fuzzy
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "~Ikhasi"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr ""
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Khanyela"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
#, fuzzy
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Amaheda"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
#, fuzzy
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Amafuta"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Imikhawulo"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Amakholomu"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
#, fuzzy
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "~Ifutnoti"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/nso/cui/messages.po b/source/nso/cui/messages.po
index 1a4da90dfa1..00332cd0226 100644
--- a/source/nso/cui/messages.po
+++ b/source/nso/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Pedi <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/nso/>\n"
@@ -2588,10 +2588,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/nso/sc/messages.po b/source/nso/sc/messages.po
index cf090d0a20f..ac6056f2aa0 100644
--- a/source/nso/sc/messages.po
+++ b/source/nso/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14780,14 +14780,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -15017,14 +15018,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -24005,91 +24007,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24710,103 +24712,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Ga go na mollwane"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24846,49 +24751,49 @@ msgid "Format Cells"
msgstr "Fometa sele"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Dinomoro"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Fonte"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Tsepanyo"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr ""
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Mellwane"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Bokamorago"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -29133,44 +29038,44 @@ msgid "Page Style"
msgstr "Setaele sa Letlakala"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Matlakala"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Mellwane"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Bokamorago"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Hlogwana ya godimo"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Hlogwana ya tlase"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
#, fuzzy
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
@@ -29215,55 +29120,55 @@ msgid "Cell Style"
msgstr "Ditaele tša sele"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Dinomoro"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Fonte"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr ""
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Tsepanyo"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Mellwane"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Bokamorago"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/nso/sd/messages.po b/source/nso/sd/messages.po
index 1d865b7ac6a..6c8c961288c 100644
--- a/source/nso/sd/messages.po
+++ b/source/nso/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9821,99 +9821,99 @@ msgid "_Standard"
msgstr "Motheo"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Mothaladi"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Lefelo"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Go fifatša"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Ponagatšo"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Fonte"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Sengwalwa"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Tiragatšo ya sengwalwa"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Mothaladi wa selekanyo"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Sekgokaganyi"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Tsepanyo"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/nso/sfx2/messages.po b/source/nso/sfx2/messages.po
index 2443c5cb694..db0dafb2a63 100644
--- a/source/nso/sfx2/messages.po
+++ b/source/nso/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1619,376 +1619,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Tloša"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/nso/svtools/messages.po b/source/nso/svtools/messages.po
index 8a6fb99c585..dda58914483 100644
--- a/source/nso/svtools/messages.po
+++ b/source/nso/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2401,16 +2401,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2418,37 +2426,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Dikagare di ka se hlangwe."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Leina la faele ke le letelele kudu bakeng sa tshepedišo ya faele yeo e lebantšwego."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Popafoko e tsentšwego ga e šome."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2458,19 +2466,19 @@ msgstr ""
"Hle boloka tokumente ka fomate ya faele ya %PRODUCTNAME %PRODUCTVERSION."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Palo e kgolo ya ditokumente tšeo di ka bulwago ka nako e tee e fihleletšwe. O swanetše go tswalela tokumente e tee goba tše dintši pele o ka bula tokumente e mpsha."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Ga e kgone go hlama kopi ya pekapo."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2490,43 +2498,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Botelele bja tsebišo bjo sa šomego."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Modiro ga o kgonege: tsejana e na le tšhupetšo ya gabjale."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Modiro ga o kgonege: sedirišwa (mootledi) ga se swane."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Sedirišwa (mootledi) ga se sešo se itokiše."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Modiro ga o kgonege: o šireleditšwe go ngwalwa."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2536,47 +2544,47 @@ msgstr ""
"Thoma ka go dira gore moutu wa go abelana o se ke wa šoma."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Phošo ya kakaretšo ya OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Tiro e ka se phethwe boemong bja gona bjale bja sedirišwa."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Sedirišwa ga se thekge ditiro dife goba dife."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Sedirišwa ga se thekge tiro ye."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/nso/svx/messages.po b/source/nso/svx/messages.po
index d54d72acc18..c90a23f4cd4 100644
--- a/source/nso/svx/messages.po
+++ b/source/nso/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-02-01 14:50+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Pedi <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/nso/>\n"
@@ -10275,134 +10275,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10411,19 +10461,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/nso/sw/messages.po b/source/nso/sw/messages.po
index 8f063dd1297..33ad42ab1a4 100644
--- a/source/nso/sw/messages.po
+++ b/source/nso/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3083,9 +3083,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10840,38 +10840,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16889,56 +16895,56 @@ msgid "Frame"
msgstr "Foreimi"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Dikgetho"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "~Phuthela"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Lomaganyo-kgolo"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Mellwane"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Lefelo"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Ponagatšo"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Dikholomo"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Makhro"
@@ -29755,45 +29761,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Fonte"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr ""
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Maemo"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Tlhamego ya Asia"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Ponagatšo"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Mellwane"
@@ -29805,85 +29811,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Kakaretšo"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Seswantšho"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Maemo"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29896,113 +29902,113 @@ msgid "Paragraph Style"
msgstr "(Setaele sa temana: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Tsepanyo"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr ""
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Fonte"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr ""
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Maemo"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Tlhamego ya Asia"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Ponagatšo"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Dithepo"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Tlogela ditlhaka-kgolo"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Lefelo"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Ponagatšo"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Mellwane"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
#, fuzzy
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "~Boemo"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30015,56 +30021,56 @@ msgid "Frame Style"
msgstr "Setaele sa foreimi"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Mohuta"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Dikgetho"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "~Phuthela"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Lefelo"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Ponagatšo"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Mellwane"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Dikholomo"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Makhro"
@@ -30083,61 +30089,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Letlakala"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Lefelo"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Ponagatšo"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Hlogwana ya godimo"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Hlogwana ya tlase"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Mellwane"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Dikholomo"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Kgakollofase"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/oc/cui/messages.po b/source/oc/cui/messages.po
index 66b4857c3fd..df5e7125b82 100644
--- a/source/oc/cui/messages.po
+++ b/source/oc/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/oc/>\n"
@@ -2561,10 +2561,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Per dobrir un fichièr CSV coma un fuèlh de calcul novèl al classador actual ▸ Inserir un fuèlh a partir d'un fichièr."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/oc/sc/messages.po b/source/oc/sc/messages.po
index 6d3f8e6a635..4fec598e346 100644
--- a/source/oc/sc/messages.po
+++ b/source/oc/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/oc/>\n"
@@ -14265,14 +14265,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14495,14 +14496,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23212,91 +23214,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr "Alinhament"
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -23895,102 +23897,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Pas cap de bordadura"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr "Totas las bordaduras"
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "Bordaduras extèrnas"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr "Bordadura de zòna espessa"
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr "Bordadura bassa espessa"
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr "Bordadura bassa dobla"
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr "Bordadura nauta e bassa espessa"
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr "Bordadura nauta e bassa dobla"
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr "Bordadura esquèrra"
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr "Bordadura dreita"
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr "Bordadura nauta"
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr "Bordadura bassa"
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr "Bordadura diagonala superiora"
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr "Bordadura diagonala descendenta"
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr "Bordaduras nauta e bassa"
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr "Bordaduras esquèrra e dreita"
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24028,49 +23934,49 @@ msgid "Format Cells"
msgstr "Atributs de la cellula"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Nombres"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Polissa"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Efèits de caractèr"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Alinhament"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Bordaduras"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Rèireplan"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "Proteccion de cellula"
@@ -28159,43 +28065,43 @@ msgid "Page Style"
msgstr "Estil de pagina"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Pagina"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Bordaduras"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Rèireplan"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Entèsta"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Pè de pagina"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Fuèlh"
@@ -28237,55 +28143,55 @@ msgid "Cell Style"
msgstr "Estil de cellula"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Nombres"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Polissa"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Efèits de caractèr"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Alinhament"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Bordaduras"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Rèireplan"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "Proteccion de cellula"
diff --git a/source/oc/sd/messages.po b/source/oc/sd/messages.po
index 47fb93af95b..770bce30af6 100644
--- a/source/oc/sd/messages.po
+++ b/source/oc/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-22 01:45+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/oc/>\n"
@@ -9550,97 +9550,97 @@ msgid "_Standard"
msgstr "E_standard"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Linha"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Emplenatge"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Ombratge"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Transparéncia"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Polissa"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Efèits de caractèr"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "Alinèas e espaçament"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Tèxte"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Animacion de tèxte"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Cotacion"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Connectador"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Alinhament"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "Tabulacions"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "Suslinhament"
diff --git a/source/oc/sfx2/messages.po b/source/oc/sfx2/messages.po
index d33c54ed5b3..e91450ade51 100644
--- a/source/oc/sfx2/messages.po
+++ b/source/oc/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-01-23 01:45+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/oc/>\n"
@@ -1615,376 +1615,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr "Gris elegant"
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr "Buc"
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr "Corba blava"
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr "Plans blaus"
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr "Bonbon"
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr "Idèa jauna"
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr "ADN"
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr "Fòcus"
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr "Ausèl del bòsc"
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr "Frescor"
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr "Inspiracion"
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr "Lums"
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr "Libertat creissenta"
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr "Metropòli"
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr "Blau de mièjanuèit"
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr "Natura"
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr "Gredon"
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr "Piano"
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr "Portfolio"
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr "Progression"
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr "Solelh colc"
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr "Millesime"
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr "Vivid"
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr "CV"
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr "Resumit"
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr "Per defaut"
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr "Modèrne"
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr "Carta de visita amb lògo"
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr "Chinés simplificat normal"
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Suprimir"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr "Voidar tot"
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr "Longor del senhal"
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "%{key}-clic per dobrir l'iperligam : %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "Clicar per dobrir l'iperligam : %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "Document"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "Fuèlh de calcul"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "Presentacion"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "Dessenh"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "Cap de caractèr recent"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "E~xtensions"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "Renomenar"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "Categoria nòva"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/oc/svtools/messages.po b/source/oc/svtools/messages.po
index c94f730df1c..4d67ed947d9 100644
--- a/source/oc/svtools/messages.po
+++ b/source/oc/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-05-21 14:51+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/oc/>\n"
@@ -2384,10 +2384,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "Impossible d'establir la connexion Internet a $(ARG1)."
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2395,7 +2403,7 @@ msgstr ""
"Messatge d'error del servidor : $(ARG1)."
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2405,37 +2413,37 @@ msgstr ""
"Messatge d'error del servidor : $(ARG1)."
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "Una error Internet generala s'es produita."
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "Las donadas internet requeridas son pas disponiblas dins lo cache e pòdon pas èsser transmesas per çò que lo mòde en linha es pas actiu."
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Impossible de crear lo contengut."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Lo nom de fichièr es tròp long pel sistèma de fichièr de destinacion."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "La sintaxi de l'intrada es invalida."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2445,19 +2453,19 @@ msgstr ""
"Enregistratz lo document dins un format de fichièr %PRODUCTNAME %PRODUCTVERSION"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "As atench lo nombre maximal de documents dobèrts a l'encòp. Deves tampar un o mantun document abans de ne poder dobrir un novèl."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Impossible de crear una còpia de salvament."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2477,43 +2485,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Longor de donadas invalida."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Impossible d'executar la foncion : lo camin conten lo repertòri actiu."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Impossible d'executar la foncion : lo periferic (disc) es pas identic."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Lo periferic (disc) es pas prèst."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Impossible d'executar la foncion : en lectura sola."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2523,43 +2531,43 @@ msgstr ""
"D'en primièr, vos cal desactivar lo mòde partejar."
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Error generala d'OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "L'estat actual de l'objècte permet pas d'executar aquesta accion."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "L'objècte pren pas en carga cap d'accion."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "L'objècte supòrta pas aquela accion."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
msgstr "$(ERR) al moment de l'activacion de l'objècte"
diff --git a/source/oc/svx/messages.po b/source/oc/svx/messages.po
index fc8367089f9..51bd273753e 100644
--- a/source/oc/svx/messages.po
+++ b/source/oc/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/oc/>\n"
@@ -10145,134 +10145,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr "Cap de bordadura"
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr "Bordadura exteriora sonque"
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr "Bordadura exteriora e linhas orizontalas"
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr "Bordadura exteriora e totas las linhas interioras"
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr "Bordadura exteriora e linhas verticalas"
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr "Bordadura exteriora sens cambiar las linhas interioras"
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10281,19 +10331,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr "Verificacion de la talha de l’imatge"
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/oc/sw/messages.po b/source/oc/sw/messages.po
index 804f9400a4a..b5234406c5e 100644
--- a/source/oc/sw/messages.po
+++ b/source/oc/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-03-26 14:39+0000\n"
"Last-Translator: Quentin PAGÈS <quentinantonin@free.fr>\n"
"Language-Team: Occitan <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/oc/>\n"
@@ -3027,11 +3027,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "Lista 5 seguida"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "Entèsta e pè de pagina"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10597,38 +10597,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16431,55 +16437,55 @@ msgid "Frame"
msgstr "Quadre"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "Opcions"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Adaptar"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Iperligam"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Bordaduras"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "Zòna"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Transparéncia"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Colomnas"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -28876,43 +28882,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Polissa"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Efèits de caractèr"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Posicion"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Mesa en pagina asiatica"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Suslinhament"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Bordaduras"
@@ -28924,85 +28930,85 @@ msgid "List Style"
msgstr "Estil de lista"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr "Non ordenada"
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr "Causissètz una lista ordenada predefinida"
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "Ordenada"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Contorn"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Imatge"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Posicion"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "Personalizar"
@@ -29014,109 +29020,109 @@ msgid "Paragraph Style"
msgstr "Estil de paragraf"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "Alinèas e espaçament"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Alinhament"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "Encadenaments"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipografia asiatica"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Polissa"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Efèits de caractèr"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Posicion"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Mesa en pagina asiatica"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Suslinhament"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Tabulacions"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Letrinas"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Zòna"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Transparéncia"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Bordaduras"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Condicion"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "Plan e lista"
@@ -29128,55 +29134,55 @@ msgid "Frame Style"
msgstr "Estil de quadre"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Tipe"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Opcions"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Adaptar"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Zòna"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Transparéncia"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Bordaduras"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Colomnas"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Macro"
@@ -29194,61 +29200,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Pagina"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Zòna"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Transparéncia"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Entèsta"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Pè de pagina"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Bordaduras"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Colomnas"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Nòtas de bas de pagina"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "Grasilha del tèxte"
diff --git a/source/om/cui/messages.po b/source/om/cui/messages.po
index d4dd489390e..5133e1b19a2 100644
--- a/source/om/cui/messages.po
+++ b/source/om/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Oromo <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/om/>\n"
@@ -2583,10 +2583,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/om/helpcontent2/source/text/shared/00.po b/source/om/helpcontent2/source/text/shared/00.po
index 32536397912..b83c5ff77c1 100644
--- a/source/om/helpcontent2/source/text/shared/00.po
+++ b/source/om/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -609,13 +609,13 @@ msgctxt ""
msgid "Reset to Parent"
msgstr ""
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
msgstr ""
#. 3brfZ
@@ -13740,67 +13740,67 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr ""
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. rSUuK
@@ -13812,13 +13812,13 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr ""
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
msgstr ""
#. eEUQg
diff --git a/source/om/helpcontent2/source/text/shared/01.po b/source/om/helpcontent2/source/text/shared/01.po
index 1bf91f02861..be695c20bea 100644
--- a/source/om/helpcontent2/source/text/shared/01.po
+++ b/source/om/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2023-12-29 09:47+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Oromo <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/om/>\n"
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Saxaatoo filatame gara hammamtaa xabboo isaatti deebisa.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Gurmeessaa"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Gurmeessaa</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/om/helpcontent2/source/text/shared/optionen.po b/source/om/helpcontent2/source/text/shared/optionen.po
index 1a573040c6d..215eb77abaf 100644
--- a/source/om/helpcontent2/source/text/shared/optionen.po
+++ b/source/om/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: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -933,13 +933,13 @@ msgctxt ""
msgid "Automatically save the document instead"
msgstr ""
-#. jFSiz
+#. dTKaN
#: 01010200.xhp
msgctxt ""
"01010200.xhp\n"
"par_id3149561\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that LibreOffice saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optsavepage/userautosave\">Specifies that %PRODUCTNAME saves the modified document itself instead of creating a temporary AutoRecovery version. Uses the time interval specified in <menuitem>Minutes</menuitem>.</ahelp>"
msgstr ""
#. CxT6b
diff --git a/source/om/helpcontent2/source/text/swriter/01.po b/source/om/helpcontent2/source/text/swriter/01.po
index 691f40b86d7..3c769b8a164 100644
--- a/source/om/helpcontent2/source/text/swriter/01.po
+++ b/source/om/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: 2024-05-27 13:00+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-09-17 17:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Oromo <https://weblate.documentfoundation.org/projects/libo_help-master/textswriter01/om/>\n"
@@ -23362,13 +23362,13 @@ msgctxt ""
msgid "Direct formatting overrides any formatting provided by a character style. To remove direct formatting from a selection, use <menuitem>Format - Clear Direct Formatting</menuitem> (<switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command</keycode></caseinline><defaultinline><keycode>Ctrl</keycode></defaultinline></switchinline><keycode>+M</keycode>)."
msgstr ""
-#. 9DaEA
+#. PF2ub
#: 05130002.xhp
msgctxt ""
"05130002.xhp\n"
"par_id701610668103877\n"
"help.text"
-msgid "Use the <emph>Contains</emph> section in the Organizer to see the properties of the character style."
+msgid "Use the <emph>Contains</emph> section in the General tab to see the properties of the character style."
msgstr ""
#. VkwfE
diff --git a/source/om/helpcontent2/source/text/swriter/guide.po b/source/om/helpcontent2/source/text/swriter/guide.po
index ee2319932dc..63d9573eed3 100644
--- a/source/om/helpcontent2/source/text/swriter/guide.po
+++ b/source/om/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: 2024-05-23 12:40+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -4281,14 +4281,14 @@ msgctxt ""
msgid "In the list of page styles, right-click \"Left Page\" and choose <emph>Modify</emph>."
msgstr "Tarree Akkaataa fuula keessatti, \"Fuula Bitaa\" mirga cuqaasi booda <emph>Fooyyessi</emph> fili."
-#. J9WgE
+#. 7HARM
#: even_odd_sdw.xhp
msgctxt ""
"even_odd_sdw.xhp\n"
"par_id3153179\n"
"help.text"
-msgid "Click the <emph>Organizer</emph> tab."
-msgstr "Caancalaa <emph>Qindeessaa</emph> cuqaasi."
+msgid "Click the <emph>General</emph> tab."
+msgstr ""
#. fYHA2
#: even_odd_sdw.xhp
@@ -7089,13 +7089,13 @@ msgctxt ""
msgid "You can use different headers and footers on different pages in your document, so long as the pages use different page styles. $[officename] provides several predefined page styles, such as <emph>First page</emph>, <emph>Left page</emph> and <emph>Right page</emph>, or you can create a custom page style."
msgstr "Galmee kee keessatti olaantoota fi jalaantoota gara garaa fuulaa gara biraa irratti fayyadamuu kan dandeessu,hamma fuulotni akkaataalee fuulaa gara biraa fayyadama yoo ta'e dha. $[officename]'n akkaataalee fuulaa duraan dursuun hiikaman kenna, kan akka <emph>Fuulaa jalqabaa</emph>, <emph>Fuulaa bitaa</emph> fi <emph>Fuulaa mirgaa</emph> ykn akkaataalee amala fuulaa uumuu dandeessa."
-#. taSv6
+#. Z3mwA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147105\n"
"help.text"
-msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <item type=\"menuitem\">Format - Page Style</item>, click the <item type=\"menuitem\">Page</item> tab, and in the <item type=\"menuitem\">Layout settings</item> area, choose “Mirrored” in the <item type=\"menuitem\">Page layout</item> box."
+msgid "You can also use the mirrored page layout if you want to add a header to a page style that has different inner and outer page margins. To apply this option to a page style, choose <menuitem>Format - Page Style</menuitem>, click the <menuitem>Page</menuitem> tab, and in the <menuitem>Layout settings</menuitem> area, choose “Mirrored” in the <menuitem>Page layout</menuitem> box."
msgstr ""
#. Fg7fp
@@ -7134,32 +7134,32 @@ msgctxt ""
msgid "Right-click \"Right Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr "Tarree akkaataalee fuulaa keessaa \"Fuulaa Mirgaa\" jedhu keesssa mirga cuqaasi fi <emph>Fooyyeessi</emph> fili"
-#. poyui
+#. 7Nw8r
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150536\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Qaaqa <item type=\"menuitem\">Haalataalee Fuulaa</item> keessaa, caancalee <item type=\"menuitem\">Irraantoo</item> cuqaasi."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. PY2bt
+#. eGvGA
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153750\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">Irraantoo irraa</item> filadhu akkasumas caancalee <item type=\"menuitem\">Qindeessaa</item> cuqaasi."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>General</menuitem> tab."
+msgstr ""
-#. R7KgF
+#. gnQMs
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3146865\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Left Page\"."
-msgstr "Sanduuqa <item type=\"menuitem\">Akkaataa itti aanu </item> keessaa, \"Fuula Bitaa\" fili."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Left Page\"."
+msgstr ""
#. RRd7v
#: header_pagestyles.xhp
@@ -7179,32 +7179,32 @@ msgctxt ""
msgid "In the <emph>Styles</emph> window, right-click \"Left Page\" in the list of page styles and choose <emph>Modify</emph>."
msgstr ""
-#. SrMMw
+#. UDDF9
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3150748\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Page Styles</item> dialog, click the <item type=\"menuitem\">Header</item> tab."
-msgstr "Qaaqa <item type=\"menuitem\">Haalataalee Fuulaa</item> keessaa, caancalee <item type=\"menuitem\">Irraantoo</item> cuqaasi."
+msgid "In the <menuitem>Page Styles</menuitem> dialog, click the <menuitem>Header</menuitem> tab."
+msgstr ""
-#. GvMFs
+#. sECwB
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3153172\n"
"help.text"
-msgid "Select <item type=\"menuitem\">Header on</item> and click the <item type=\"menuitem\">Organizer</item> tab."
-msgstr "<item type=\"menuitem\">Irraantoo irraa</item> filadhu akkasumas caancalee <item type=\"menuitem\">Qindeessaa</item> cuqaasi."
+msgid "Select <menuitem>Header on</menuitem> and click the <menuitem>Organizer</menuitem> tab."
+msgstr ""
-#. bu4Ar
+#. rNExd
#: header_pagestyles.xhp
msgctxt ""
"header_pagestyles.xhp\n"
"par_id3147061\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Next Style</item> box, select \"Right Page\"."
-msgstr "Sanduuqa <item type=\"menuitem\">Haalata itti aanu</item> keessaa, \"Fuulaa Mirgaa\" fili."
+msgid "In the <menuitem>Next Style</menuitem> box, select \"Right Page\"."
+msgstr ""
#. sXiNx
#: header_pagestyles.xhp
@@ -11427,14 +11427,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Haalataalee fuulaa tarreefaman keessatti, wanta irratti cuqaasa mirgaamirga cuqaasi, fi achumaan <emph>Haaraa</emph> filadhu."
-#. sDeqh
+#. Br6ak
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN1083F\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
-msgstr "<emph>Qindeessaa</emph> Caancala fuulaa irratti, haalata fuulichaaf<emph>Maqaa</emph> sanduuqa keessatti barreessiif."
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box."
+msgstr ""
#. np5V4
#: pagebackground.xhp
@@ -11580,14 +11580,14 @@ msgctxt ""
msgid "Select <emph>Page break</emph>."
msgstr "<emph>Qurxinsa fuulaa</emph>filadhu."
-#. 6AhDp
+#. hmeDm
#: pagebackground.xhp
msgctxt ""
"pagebackground.xhp\n"
"par_idN108D1\n"
"help.text"
-msgid "In the <item type=\"menuitem\">Style</item> box, select a page style that uses the page background."
-msgstr "Saanduuqa <item type=\"menuitem\">Haalata</item> keessaa, haalata fuulaa fuula duubeetti fayyadamu fili."
+msgid "In the <menuitem>Style</menuitem> box, select a page style that uses the page background."
+msgstr ""
#. iRsej
#: pagebackground.xhp
@@ -11859,13 +11859,13 @@ msgctxt ""
msgid "An <emph>automatic page break</emph> appears at the end of a page when the page style has a different \"next style\"."
msgstr "<emph>qurxinsi fuulaa ofumaani</emph> yommuu haalatni fuulaa \"akkaataa itti aanu\" addummaa qabaate dhuma fuulaa irraati mul'ata."
-#. UF4pc
+#. yvF6Z
#: pagenumbers.xhp
msgctxt ""
"pagenumbers.xhp\n"
"par_id4569231\n"
"help.text"
-msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>Organizer</menuitem> tab, you can see the “Next style”."
+msgid "For example, the “First Page” page style has “Default Page Style” as the next style. To see this, press <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>Command+T</keycode></caseinline><defaultinline><keycode>F11</keycode></defaultinline></switchinline> to open the <menuitem>Styles</menuitem> window, click the <menuitem>Page Styles</menuitem> icon, right-click the \"First Page\" entry. Choose <menuitem>Edit Style</menuitem> from the context menu. On the <menuitem>General</menuitem> tab, you can see the “Next style”."
msgstr ""
#. yGPGH
@@ -12183,14 +12183,14 @@ msgctxt ""
msgid "Right-click a page style and choose <emph>New</emph>. The new page style initially gets all properties of the selected page style."
msgstr "Haalata fuulaa qabdoo mirgaan yeroo lama cuqaasun <emph>Haaraa</emph>fili. Haalatni fuulaa haaraan jalqaba amaloota isaa hunda haalata fuulaa filame irraa argata."
-#. MQjFP
+#. vBBzF
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_idN10751\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
-msgstr "Caancala fuula <emph>Qindeessaa</emph> irraa, haalata fuulatif sanduuqa <emph>Maqaa</emph> keessaa haalata fuulatiif maqaa maxxansi. fakkeenyaaf \"My Landscape\""
+msgid "On the <emph>General</emph> tab page, type a name for the page style in the <emph>Name</emph> box, for example \"My Landscape\"."
+msgstr ""
#. i7WYZ
#: pageorientation.xhp
@@ -12327,13 +12327,13 @@ msgctxt ""
msgid "One Page Long Styles"
msgstr "Haalootaalee dheerina fuula tokkoo"
-#. UptGH
+#. EaG3Z
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id5169225\n"
"help.text"
-msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - Organizer</menuitem> tab page."
+msgid "A page style can be defined to span one page only. The “First Page” style is an example. You set this property by defining another page style to be the \"next style\", on the <menuitem>Format - Page Style - General</menuitem> tab page."
msgstr ""
#. BorA4
@@ -12363,13 +12363,13 @@ msgctxt ""
msgid "Manually Defined Range of a Page style"
msgstr "Hangii haalata fuulaa hujeekaan qinda'ee"
-#. BCFqC
+#. hXXYe
#: pageorientation.xhp
msgctxt ""
"pageorientation.xhp\n"
"par_id6386913\n"
"help.text"
-msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - Organizer</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
+msgid "The “Default” page style does not set a different \"next style\" on the <menuitem>Format - Page Style - General</menuitem> tab page. Instead, the \"next style\" is set also to be “Default”. All page styles that are followed by the same page style can span multiple pages. The lower and upper borders of the page style range are defined by \"page breaks with style\". All the pages between any two \"page breaks with style\" use the same page style."
msgstr ""
#. pyFgt
@@ -12498,14 +12498,14 @@ msgctxt ""
msgid "In the list of page styles, right-click an item, and then choose <emph>New</emph>."
msgstr "Haalataalee fuulaa tarreefaman keessatti, wanta irratti cuqaasa mirgaamirga cuqaasi, fi achumaan <emph>Haaraa</emph> filadhu."
-#. gZoRw
+#. iFoeC
#: pagestyles.xhp
msgctxt ""
"pagestyles.xhp\n"
"par_id3149614\n"
"help.text"
-msgid "On the <emph>Organizer</emph> tab, type a name in the <emph>Name</emph> box."
-msgstr "Caancala<emph>Qindeessaa</emph> irratti, sanduuqa<emph>Maqaa</emph> keessatti maqaa barreessi."
+msgid "On the <emph>General</emph> tab, type a name in the <emph>Name</emph> box."
+msgstr ""
#. r3NWH
#: pagestyles.xhp
diff --git a/source/om/sc/messages.po b/source/om/sc/messages.po
index fff7f6cef04..65fe4420f35 100644
--- a/source/om/sc/messages.po
+++ b/source/om/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14547,14 +14547,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14780,14 +14781,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23724,91 +23726,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24428,103 +24430,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "Handaara hin qabu"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24564,51 +24469,51 @@ msgid "Format Cells"
msgstr "Man'ee foormulaa"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
#, fuzzy
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "Lakkoofsa"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "Bocquu"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "Galteewwan Bocquu"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "Hiriirfama"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "Tipoograaphii Eeshiyaa"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
#, fuzzy
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "Duubbee"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr ""
@@ -28842,45 +28747,45 @@ msgid "Page Style"
msgstr "Akkaataa Fuulaa"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
#, fuzzy
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "Fuulota"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
#, fuzzy
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "Duubbee"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "Irraantoo"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "Jalaantoo"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "Wardii"
@@ -28924,57 +28829,57 @@ msgid "Cell Style"
msgstr "Akkaataawwan Man'ee"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
#, fuzzy
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "Lakkoofsa"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "Bocquu"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "Galteewwan Bocquu"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "Hiriirfama"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipoograaphii Eeshiyaa"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
#, fuzzy
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "Duubbee"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr ""
diff --git a/source/om/sd/messages.po b/source/om/sd/messages.po
index c0713b2dd3d..9eb84d04829 100644
--- a/source/om/sd/messages.po
+++ b/source/om/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9841,101 +9841,101 @@ msgid "_Standard"
msgstr "Durtii"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "Sarara"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "Bal'ina"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "Gaaddiddeessuu"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
#, fuzzy
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "Dabarsoo Ifaa"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "Bocquu"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "Galteewwan Bocquu"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "Barruu"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "Sochii Fakkinaa Barruu"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "Hammamtaa Sararaa"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "Kornyoo"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "Hiriirfama"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "Tipoograaphii Eeshiyaa"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr ""
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
#, fuzzy
msgctxt "templatedialog|background"
msgid "Highlighting"
diff --git a/source/om/sfx2/messages.po b/source/om/sfx2/messages.po
index aa0e3e59efc..313152e7cae 100644
--- a/source/om/sfx2/messages.po
+++ b/source/om/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1618,376 +1618,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "Balleessi"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/om/svtools/messages.po b/source/om/svtools/messages.po
index e8c97056bc6..c2ecdccb98a 100644
--- a/source/om/svtools/messages.po
+++ b/source/om/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2399,16 +2399,24 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr ""
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2416,37 +2424,37 @@ msgid ""
msgstr ""
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr ""
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr ""
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "Qabiyyeen uumamuu hindandeenye."
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "Maqaan faayila sirna galtee faayilaatiif garmal dheeraadha."
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "Caasimini naqaa fashala."
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2456,19 +2464,19 @@ msgstr ""
"Mee galmee dhangii %PRODUCTNAME %PRODUCTVERSION tti olkaa'i."
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "Baayi'inni galmee yeroo tokko banamuu danda'u fiixee irra gaheera. Galmee tokko ykn lama cufuu qabda galmee haaraa banuuf."
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "Garagalcha dilbii uumuu hindandeenye."
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2487,43 +2495,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "Fashala dheerina deetaa."
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "Dalagaan hindanda'amu: karaan galeeloo ammaa hammata."
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "Dalagaan hindanda'amu: miini walhinsimu."
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "Miini qophii miti."
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "Dalagaan hindanda'amu: hayyisa barreessaa."
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2533,47 +2541,47 @@ msgstr ""
"Dura haalata yagutoo dhaamsi. "
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "Dogongora waliigalaa OLE."
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "Gochii haala amma jirun raawachuu hindanda'u."
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "Wantichi gocha tokkollee hin deeggaru."
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "Wanti gocha kana hin deeggaru."
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/om/svx/messages.po b/source/om/svx/messages.po
index 9f92a1a87a9..fad819fa406 100644
--- a/source/om/svx/messages.po
+++ b/source/om/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Oromo <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/om/>\n"
@@ -10279,134 +10279,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10415,19 +10465,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/om/sw/messages.po b/source/om/sw/messages.po
index 0238408c2a8..bd7e85ee6cb 100644
--- a/source/om/sw/messages.po
+++ b/source/om/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3085,9 +3085,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10858,38 +10858,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16927,60 +16933,60 @@ msgid "Frame"
msgstr "Goodayyaa"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
#, fuzzy
msgctxt "framedialog|options"
msgid "Options"
msgstr "Dirqalaalee"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
#, fuzzy
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "Maraa"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
#, fuzzy
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "Geessituu"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
#, fuzzy
msgctxt "framedialog|area"
msgid "Area"
msgstr "Bal'ina"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
#, fuzzy
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "Dabarsoo Ifaa"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "Tarjaalee"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "Maakroo"
@@ -29854,45 +29860,45 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "Bocquu"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "Galteewwan Bocquu"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "Qubannoo"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
#, fuzzy
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "Teessuma Warra Eeshiyaa"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
#, fuzzy
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "Shooluu"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "Handaaraalee"
@@ -29904,85 +29910,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "Toorii"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "Calaqqee"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "Qubannoo"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr ""
@@ -29995,114 +30001,114 @@ msgid "Paragraph Style"
msgstr "(Haalata Keewwataa: "
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr ""
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "Hiriira"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr ""
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "Tipoograaphii Eeshiyaa"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "Bocquu"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "Galteewwan Bocquu"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "Qubannoo"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
#, fuzzy
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "Teessuma Warra Eeshiyaa"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
#, fuzzy
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "Shooluu"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
#, fuzzy
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "Caancaloota"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "Qubbuusa"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
#, fuzzy
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "Bal'ina"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
#, fuzzy
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "Dabarsoo Ifaa"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "Haala"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -30115,59 +30121,59 @@ msgid "Frame Style"
msgstr "Akkaataa Goodayyaa"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "Gosa"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
#, fuzzy
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "Dirqalaalee"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
#, fuzzy
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "Maraa"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
#, fuzzy
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "Bal'ina"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
#, fuzzy
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "Dabarsoo Ifaa"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "Tarjaalee"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "Maakroo"
@@ -30186,63 +30192,63 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "Fuula"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
#, fuzzy
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "Bal'ina"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
#, fuzzy
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "Dabarsoo Ifaa"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "Irraantoo"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "Jalaantoo"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "Handaaraalee"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "Tarjaalee"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "Miiljalee"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr ""
diff --git a/source/or/cui/messages.po b/source/or/cui/messages.po
index c36b614ef0b..0dc9ce4eb8e 100644
--- a/source/or/cui/messages.po
+++ b/source/or/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2564,10 +2564,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/or/sc/messages.po b/source/or/sc/messages.po
index e1a14a63159..730e43dd532 100644
--- a/source/or/sc/messages.po
+++ b/source/or/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14494,14 +14494,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14727,14 +14728,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23665,91 +23667,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24373,104 +24375,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "କୌଣସି ସୀମା ନାହିଁ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-#, fuzzy
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr "ବାହ୍ଯରେଖା - ସୀମାରେଖାଗୁଡ଼ିକ"
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
#, fuzzy
@@ -24509,49 +24413,49 @@ msgid "Format Cells"
msgstr "ରଚନା କୋଷଗୁଡିକ "
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ସଂଖ୍ଯାଗୁଡିକ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ଫଣ୍ଟ "
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ଫଣ୍ଟ ପ୍ରଭାବଗୁଡିକ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ପଂକ୍ତିକରଣ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "ଏସିଆନ୍ ଟୋପୋଗ୍ରାଫି"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ପୃଷ୍ଠଭାଗ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "କୋଷ ରକ୍ଷା"
@@ -28768,43 +28672,43 @@ msgid "Page Style"
msgstr "ପୃଷ୍ଠା ଶୈଳୀ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ପୃଷ୍ଠା"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ପୃଷ୍ଠଭାଗ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ଶୀର୍ଷଟିକା"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ପାଦଟୀକା"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ସିଟ୍"
@@ -28849,55 +28753,55 @@ msgid "Cell Style"
msgstr "କୋଷ ଶୈଳୀଗୁଡିକ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ସଂଖ୍ଯାଗୁଡିକ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ଫଣ୍ଟ "
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ଫଣ୍ଟ ପ୍ରଭାବଗୁଡିକ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ପଂକ୍ତିକରଣ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ଏସିଆନ୍ ଟୋପୋଗ୍ରାଫି"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ପୃଷ୍ଠଭାଗ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "କୋଷ ରକ୍ଷା"
diff --git a/source/or/sd/messages.po b/source/or/sd/messages.po
index 4f971c13b8b..3328d487364 100644
--- a/source/or/sd/messages.po
+++ b/source/or/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-12 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9818,108 +9818,108 @@ msgid "_Standard"
msgstr "ସ୍ଟାଣ୍ଡାଡ୍"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ରେଖା"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
#, fuzzy
msgctxt "templatedialog|area"
msgid "Area"
msgstr "କ୍ଷେତ୍ର"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ଛାଯାକରିବା"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ସ୍ବଚ୍ଛତା"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
#, fuzzy
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ଫଣ୍ଟ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
#, fuzzy
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ଅକ୍ଷରରୂପ ପ୍ରଭାବଗୁଡିକ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
#, fuzzy
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ଇଡେଣ୍ଟଗୁଡିକ ଏବଂ ବ୍ୟବଧାନ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ଟେକ୍ସଟ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
#, fuzzy
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ପାଠ୍ୟ ଜୀବନ୍ତଚିତ୍ର"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ଆଯତନ ରେଖା"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
#, fuzzy
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "ସଂୟେଜକ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
#, fuzzy
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ପଂକ୍ତିକରଣ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ଏସିଆନ ମୁଦ୍ରଣ କଳା"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
#, fuzzy
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ଟ୍ଯାବଗୁଡିକ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "ବିଶେଷଭାବରେ ଦେଖାଇବା"
diff --git a/source/or/sfx2/messages.po b/source/or/sfx2/messages.po
index 05b148174e2..856998dc626 100644
--- a/source/or/sfx2/messages.po
+++ b/source/or/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2018-10-21 19:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1620,376 +1620,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ହଟାଅ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr ""
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr ""
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr ""
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr ""
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr ""
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr ""
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr ""
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr ""
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr ""
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr ""
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr ""
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr ""
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr ""
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/or/svtools/messages.po b/source/or/svtools/messages.po
index 03e8c87ade5..fa27a423bd8 100644
--- a/source/or/svtools/messages.po
+++ b/source/or/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2409,10 +2409,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) ସହିତ ଇଣ୍ଟରନେଟ ସଂଯୋଗ ସ୍ଥାପନ କରାଯାଇପାରିଲା ନାହିଁ।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2420,7 +2428,7 @@ msgstr ""
"ସର୍ଭର ତ୍ରୁଟି ସନ୍ଦେଶ: $(ARG1)।"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2430,37 +2438,37 @@ msgstr ""
"ସର୍ଭର ତ୍ରୁଟି ସନ୍ଦେଶ: $(ARG1)।"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "ସାଧାରଣ ଇଣ୍ଟରନେଟ ତ୍ରୁଟି ଘଟିଛି।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ଅନୁରୋଧ କରାଯାଇଥିବା ଇଣ୍ଟରନେଟ ତଥ୍ୟଟି କ୍ୟାଶେରେ ଉପଲବ୍ଧ ନାହିଁ ଏବଂ ସ୍ଥାନାନ୍ତରଣ କରାଯାଇପାରିବ ନାହିଁ ଯେହେତୁ ଅନଲାଇନ ପଦ୍ଧତିକୁ ସକ୍ରିୟ କରାଯାଇନାହିଁ।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ଏହି ସୂଚୀପତ୍ରଗୁଡିକ ସୃଷ୍ଟି ହୋଇ ପାରିବ ନାହିଁ"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ଲକ୍ଷ୍ଯ ଫାଇଲ ସିସ୍ଟମ ପାଇଁ ଏହି ଫାଇଲ ନାମ ବହୁତ ବଡ ଅଟେ୤"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ନିବେଶ ବାକ୍ୟବିନ୍ୟାସଟି ଅବୈଧ ଅଟେ।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2470,19 +2478,19 @@ msgstr ""
"ଦଯାକରି ଗୋଟିଏ %PRODUCTNAME %PRODUCTVERSION ଫାଇଲ ଫରମାଟରେ ଦଲିଲ ସଞ୍ଚଯ କର୤"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ସର୍ବଧିକ ସଂଖ୍ୟକ ଦଲିଲ ଯାହାକି ଏକ ସମୟରେ ଖୋଲାଯାଇପାରୁଥିବ ସେହି ସମୟ ପହଞ୍ଚିଯାଇଛି। ଆପଣଙ୍କୁ ଗୋଟିଏ ନୂତନ ଦଲିଲ ଖୋଲିବା ପୂର୍ବରୁ ଗୋଟିଏ କିମ୍ବା ଅନେକ ଦଲିଲକୁ ବନ୍ଦ କରିବା ଉଚିତ।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ନକଲସଂରକ୍ଷଣ ନକଲ ନିର୍ମାଣ କରାଯାଇପାରିବ ନାହିଁ।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2502,43 +2510,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ଅମାନ୍ଯ ତଥ୍ଯ ଲମ୍ବ ୤"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "କାର୍ୟ୍ଯ ସମ୍ଭବ ନୁହେଁ:ପଥରେ ଚଳିତ ବିବରଣୀପଞ୍ଜିକାରେ ଅଛି୤"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "କାର୍ୟ୍ଯ ସମ୍ଭବ ନୁହେଁ: ୟନ୍ତ୍ର ଏକା ନୁହେଁ ୤"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ୟନ୍ତ୍ର ପ୍ରସ୍ତୁତ ନାହିଁ ୤"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "କାର୍ୟ୍ଯ ସମ୍ଭବ ନୁହେଁ:ରାଇଟ ସୁରକ୍ଷିତ୤"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2548,47 +2556,47 @@ msgstr ""
"ପ୍ରଥମେ ସହଭାଗ ଅବସ୍ଥାକୁ ନିଷ୍କ୍ରିୟ କରନ୍ତୁ।"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ସାଧାରଣ OLE ତ୍ରୁଟି।"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ବସ୍ତୁର ଚଳିତ ଅବସ୍ଥାରେ ଏହି କାର୍ୟ୍ଯ କାର୍ୟ୍ଯକାରୀ ହୋଇ ପାରିବ ନାହିଁ୤"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ବସ୍ତୁଟି କୌଣସି କାର୍ଯ୍ୟକୁ ସମର୍ଥନ କରେନାହିଁ।"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ବସ୍ତୁଟି ଏହି କାର୍ଯ୍ୟକୁ ସମର୍ଥନ କରେନାହିଁ।"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/or/svx/messages.po b/source/or/svx/messages.po
index b44cf855f3c..4e391894e99 100644
--- a/source/or/svx/messages.po
+++ b/source/or/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Odia <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/or/>\n"
@@ -10233,134 +10233,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr ""
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr ""
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
+msgid "Left Border"
msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
+msgid "Right Border"
msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
+msgid "Top Border"
msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10369,19 +10419,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/or/sw/messages.po b/source/or/sw/messages.po
index 494dffe3b8c..23c04aedb9a 100644
--- a/source/or/sw/messages.po
+++ b/source/or/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2019-07-11 19:01+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3064,9 +3064,9 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr ""
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
msgstr ""
@@ -10832,38 +10832,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16677,55 +16683,55 @@ msgid "Frame"
msgstr "ଫ୍ରେମ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ବିକଳ୍ପଗୁଡିକ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "ଗୁଡାଇବା"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ହାଇପରଲିଙ୍କ୍"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "କ୍ଷେତ୍ର"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ସ୍ୱଚ୍ଛତା"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ସ୍ତମ୍ଭଗୁଡିକ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ମାକ୍ରୋ"
@@ -29255,43 +29261,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ଫଣ୍ଟ "
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ଫଣ୍ଟ ପ୍ରଭାବଗୁଡିକ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ସ୍ଥାନ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ଏସିଆନ ଲେପନ "
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ବିଶେଷଭାବରେ ଦେଖାଇବା"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
@@ -29303,85 +29309,85 @@ msgid "List Style"
msgstr ""
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr ""
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ବାହ୍ଯରେଖା"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ଚିତ୍ର"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ସ୍ଥାନ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ଇଚ୍ଛାରୂପଣ କରନ୍ତୁ"
@@ -29393,109 +29399,109 @@ msgid "Paragraph Style"
msgstr "ପରିଚ୍ଛେଦ ଶୈଳୀ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ଫରମାସଗୁଡ଼ିକ ଏବଂ ବ୍ୟବଧାନ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ପଂକ୍ତିକରଣ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "ଟେକ୍ସଟ ଧାରା"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "ଏସିଏନ ମୁଦ୍ରଣକଳା"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ଫଣ୍ଟ "
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ଫଣ୍ଟ ପ୍ରଭାବଗୁଡିକ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ସ୍ଥାନ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ଏସିଆନ ଲେପନ "
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ବିଶେଷଭାବରେ ଦେଖାଇବା"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ଟ୍ଯାବଗୁଡିକ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ବଡଅକ୍ଷରସବୁକୁ ହଟାଅ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "କ୍ଷେତ୍ର"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ସ୍ୱଚ୍ଛତା"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "ସର୍ତ୍ତ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr ""
@@ -29507,55 +29513,55 @@ msgid "Frame Style"
msgstr "ଫ୍ରେମ ଶୈଳୀ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ପ୍ରକାର"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ବିକଳ୍ପଗୁଡିକ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "ଗୁଡାଇବା"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "କ୍ଷେତ୍ର"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ସ୍ୱଚ୍ଛତା"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ସ୍ତମ୍ଭଗୁଡିକ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ମାକ୍ରୋ"
@@ -29573,61 +29579,61 @@ msgid "Standard"
msgstr ""
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ପୃଷ୍ଠା"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "କ୍ଷେତ୍ର"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ସ୍ୱଚ୍ଛତା"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ଶୀର୍ଷଟିକା"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ପାଦଟିକା"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ସୀମାଗୁଡିକ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ସ୍ତମ୍ଭଗୁଡିକ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ପାଦଟିପପ୍ଣୀ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "ଟେକ୍ସଟ ଜାଲ"
diff --git a/source/pa-IN/cui/messages.po b/source/pa-IN/cui/messages.po
index 39309cca581..69e64a52627 100644
--- a/source/pa-IN/cui/messages.po
+++ b/source/pa-IN/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-17 01:37+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/pa/>\n"
@@ -2559,10 +2559,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr ""
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
msgstr ""
#. iXjDF
diff --git a/source/pa-IN/sc/messages.po b/source/pa-IN/sc/messages.po
index cb861daba1f..89029701e1d 100644
--- a/source/pa-IN/sc/messages.po
+++ b/source/pa-IN/sc/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-06 13:17+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-03 01:58+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/pa/>\n"
@@ -14432,14 +14432,15 @@ msgctxt "SC_OPCODE_X_LOOKUP"
msgid "Match Mode"
msgstr ""
-#. afJBG
+#. vEqB5
#: sc/inc/scfuncs.hrc:3393
msgctxt "SC_OPCODE_X_LOOKUP"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. EvSiP
@@ -14665,14 +14666,15 @@ msgctxt "SC_OPCODE_X_MATCH"
msgid "Match Mode"
msgstr ""
-#. 2oEFA
+#. DZ2bC
#: sc/inc/scfuncs.hrc:3455
msgctxt "SC_OPCODE_X_MATCH"
msgid ""
"0 - Exact match. Will return #N/A if no match. (default).\n"
"-1 - Exact match or the next smaller item.\n"
"1 - Exact match or the next larger item.\n"
-"2 - Wildcard or regular expression match."
+"2 - Wildcard match.\n"
+"3 - Regular expression match."
msgstr ""
#. UtoXD
@@ -23551,91 +23553,91 @@ msgid "_Standard"
msgstr ""
#. Dnnbp
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:125
msgctxt "drawtemplatedialog|organizer"
msgid "General"
msgstr ""
#. qSfk8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:148
msgctxt "drawtemplatedialog|line"
msgid "Line"
msgstr ""
#. GFaA9
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:172
msgctxt "drawtemplatedialog|area"
msgid "Area"
msgstr ""
#. JcspJ
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:196
msgctxt "drawtemplatedialog|shadowing"
msgid "Shadowing"
msgstr ""
#. sQnEr
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:220
msgctxt "drawtemplatedialog|transparency"
msgid "Transparency"
msgstr ""
#. nrmzw
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:244
msgctxt "drawtemplatedialog|font"
msgid "Font"
msgstr ""
#. MfVx4
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:268
msgctxt "drawtemplatedialog|fonteffect"
msgid "Font Effects"
msgstr ""
#. wvB6g
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:292
msgctxt "drawtemplatedialog|indents"
msgid "Indents & Spacing"
msgstr ""
#. BuWKT
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:316
msgctxt "drawtemplatedialog|text"
msgid "Text"
msgstr ""
#. buF9B
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:341
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:340
msgctxt "drawtemplatedialog|animation"
msgid "Text Animation"
msgstr ""
#. pLtGk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:365
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:364
msgctxt "drawtemplatedialog|dimensioning"
msgid "Dimensioning"
msgstr ""
#. CDEt8
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:389
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:388
msgctxt "drawtemplatedialog|alignment"
msgid "Alignment"
msgstr ""
#. Bh59e
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:413
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:412
msgctxt "drawtemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr ""
#. eCHjk
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:437
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:436
msgctxt "drawtemplatedialog|tabs"
msgid "Tabs"
msgstr ""
#. 6emuB
-#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:461
+#: sc/uiconfig/scalc/ui/drawtemplatedialog.ui:460
msgctxt "drawtemplatedialog|background"
msgid "Highlighting"
msgstr ""
@@ -24255,103 +24257,6 @@ msgctxt "findreplace|delete"
msgid "Delete"
msgstr ""
-#. AfnFz
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34
-#, fuzzy
-msgctxt "floatingborderstyle|none|tooltip_text"
-msgid "No Border"
-msgstr "ਬਾਰਡਰ ਨਹੀਂ"
-
-#. J9YqG
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:45
-msgctxt "floatingborderstyle|all|tooltip_text"
-msgid "All Borders"
-msgstr ""
-
-#. 3dsGE
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:56
-msgctxt "floatingborderstyle|outside|tooltip_text"
-msgid "Outside Borders"
-msgstr ""
-
-#. BQ8N3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:67
-msgctxt "floatingborderstyle|thickbox|tooltip_text"
-msgid "Thick Box Border"
-msgstr ""
-
-#. RSWP6
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:90
-msgctxt "floatingborderstyle|thickbottom|tooltip_text"
-msgid "Thick Bottom Border"
-msgstr ""
-
-#. d9rkv
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:101
-msgctxt "floatingborderstyle|doublebottom|tooltip_text"
-msgid "Double Bottom Border"
-msgstr ""
-
-#. A6jir
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:112
-msgctxt "floatingborderstyle|topthickbottom|tooltip_text"
-msgid "Top and Thick Bottom Borders"
-msgstr ""
-
-#. 5QWSV
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:123
-msgctxt "floatingborderstyle|topdoublebottom|tooltip_text"
-msgid "Top and Double Bottom Borders"
-msgstr ""
-
-#. of4fP
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:146
-msgctxt "floatingborderstyle|left|tooltip_text"
-msgid "Left Border"
-msgstr ""
-
-#. FWwqR
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:157
-msgctxt "floatingborderstyle|right|tooltip_text"
-msgid "Right Border"
-msgstr ""
-
-#. sDFmj
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:168
-msgctxt "floatingborderstyle|top|tooltip_text"
-msgid "Top Border"
-msgstr ""
-
-#. nhY8S
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:179
-msgctxt "floatingborderstyle|bottom|tooltip_text"
-msgid "Bottom Border"
-msgstr ""
-
-#. BF7XZ
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:202
-msgctxt "floatingborderstyle|diagup|tooltip_text"
-msgid "Diagonal Up Border"
-msgstr ""
-
-#. 8FWZ3
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:214
-msgctxt "floatingborderstyle|diagdown|tooltip_text"
-msgid "Diagonal Down Border"
-msgstr ""
-
-#. CQeWw
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:226
-msgctxt "floatingborderstyle|topbottom|tooltip_text"
-msgid "Top and Bottom Borders"
-msgstr ""
-
-#. ZAJ9s
-#: sc/uiconfig/scalc/ui/floatingborderstyle.ui:238
-msgctxt "floatingborderstyle|leftright|tooltip_text"
-msgid "Left and Right Borders"
-msgstr ""
-
#. 5pFcG
#: sc/uiconfig/scalc/ui/floatinglinestyle.ui:27
msgctxt "floatinglinestyle|more"
@@ -24389,49 +24294,49 @@ msgid "Format Cells"
msgstr "ਫਾਰਮੈਟ ਸ਼ੈੱਲ"
#. ngekD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:111
msgctxt "formatcellsdialog|numbers"
msgid "Numbers"
msgstr "ਨੰਬਰ"
#. TvoWD
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:135
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:134
msgctxt "formatcellsdialog|font"
msgid "Font"
msgstr "ਫੋਂਟ"
#. 3oXRX
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:159
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:158
msgctxt "formatcellsdialog|fonteffects"
msgid "Font Effects"
msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ"
#. iuvXW
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:183
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:182
msgctxt "formatcellsdialog|alignment"
msgid "Alignment"
msgstr "ਇਕਸਾਰ"
#. MfFdu
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:207
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:206
msgctxt "formatcellsdialog|asiantypography"
msgid "Asian Typography"
msgstr "ਏਸ਼ੀਆਈਂ ਟਾਈਪੋਗਰਾਫ਼ੀ"
#. FtWjv
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:231
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:230
msgctxt "formatcellsdialog|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. 9S8Sy
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:255
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:254
msgctxt "formatcellsdialog|background"
msgid "Background"
msgstr "ਬੈਕਗਰਾਊਂਡ"
#. hbPUf
-#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:279
+#: sc/uiconfig/scalc/ui/formatcellsdialog.ui:278
msgctxt "formatcellsdialog|cellprotection"
msgid "Cell Protection"
msgstr "ਸ਼ੈੱਲ ਸੁਰੱਖਿਆ"
@@ -28652,43 +28557,43 @@ msgid "Page Style"
msgstr "ਸਫ਼ਾ ਸ਼ੈਲੀ"
#. F6ehW
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:127
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:126
msgctxt "pagetemplatedialog|organizer"
msgid "General"
msgstr ""
#. CbW7A
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:150
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:149
msgctxt "pagetemplatedialog|page"
msgid "Page"
msgstr "ਸਫ਼ਾ"
#. yXBdU
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:174
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:173
msgctxt "pagetemplatedialog|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. AYC9K
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:198
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:197
msgctxt "pagetemplatedialog|background"
msgid "Background"
msgstr "ਬੈਕਗਰਾਊਂਡ"
#. qEnHY
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:222
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:221
msgctxt "pagetemplatedialog|header"
msgid "Header"
msgstr "ਹੈੱਡਰ"
#. LLLXG
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:246
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:245
msgctxt "pagetemplatedialog|footer"
msgid "Footer"
msgstr "ਫੁੱਟਰ"
#. W5b3a
-#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:270
+#: sc/uiconfig/scalc/ui/pagetemplatedialog.ui:269
msgctxt "pagetemplatedialog|sheet"
msgid "Sheet"
msgstr "ਸ਼ੀਟ"
@@ -28731,55 +28636,55 @@ msgid "Cell Style"
msgstr "ਸੈੱਲ ਸਟਾਈਲ"
#. EMrke
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:126
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:125
msgctxt "paratemplatedialog|organizer"
msgid "General"
msgstr ""
#. asnEd
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:149
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:148
msgctxt "paratemplatedialog|numbers"
msgid "Numbers"
msgstr "ਨੰਬਰ"
#. gT7a7
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:173
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:172
msgctxt "paratemplatedialog|font"
msgid "Font"
msgstr "ਫੋਂਟ"
#. d5N6G
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:197
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:196
msgctxt "paratemplatedialog|fonteffects"
msgid "Font Effects"
msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ"
#. mXKgq
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:221
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:220
msgctxt "paratemplatedialog|alignment"
msgid "Alignment"
msgstr "ਇਕਸਾਰ"
#. 2YK98
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:245
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:244
msgctxt "paratemplatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ਏਸ਼ੀਆਈਂ ਟਾਈਪੋਗਰਾਫ਼ੀ"
#. CfvF5
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:269
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:268
msgctxt "paratemplatedialog|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. CDaQE
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:293
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:292
msgctxt "paratemplatedialog|background"
msgid "Background"
msgstr "ਬੈਕਗਰਾਊਂਡ"
#. qCRSA
-#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:317
+#: sc/uiconfig/scalc/ui/paratemplatedialog.ui:316
msgctxt "paratemplatedialog|protection"
msgid "Cell Protection"
msgstr "ਸ਼ੈੱਲ ਸੁਰੱਖਿਆ"
diff --git a/source/pa-IN/sd/messages.po b/source/pa-IN/sd/messages.po
index 7bb693debb5..4328a4cdee2 100644
--- a/source/pa-IN/sd/messages.po
+++ b/source/pa-IN/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-17 15:59+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-02-04 01:45+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/pa/>\n"
@@ -9619,100 +9619,100 @@ msgid "_Standard"
msgstr "ਸਟੈਂਡਰਡ(_S)"
#. BXMVx
-#: sd/uiconfig/simpress/ui/templatedialog.ui:126
+#: sd/uiconfig/simpress/ui/templatedialog.ui:125
msgctxt "templatedialog|organizer"
msgid "General"
msgstr ""
#. 5d7Zo
-#: sd/uiconfig/simpress/ui/templatedialog.ui:149
+#: sd/uiconfig/simpress/ui/templatedialog.ui:148
msgctxt "templatedialog|line"
msgid "Line"
msgstr "ਰੇਖਾ"
#. vQ46t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:173
+#: sd/uiconfig/simpress/ui/templatedialog.ui:172
msgctxt "templatedialog|area"
msgid "Area"
msgstr "ਏਰੀਆ"
#. xeCAp
-#: sd/uiconfig/simpress/ui/templatedialog.ui:197
+#: sd/uiconfig/simpress/ui/templatedialog.ui:196
#, fuzzy
msgctxt "templatedialog|shadowing"
msgid "Shadowing"
msgstr "ਛਾਂ"
#. Wuy8t
-#: sd/uiconfig/simpress/ui/templatedialog.ui:221
+#: sd/uiconfig/simpress/ui/templatedialog.ui:220
msgctxt "templatedialog|transparency"
msgid "Transparency"
msgstr "ਪਾਰਦਰਸ਼ਤਾ"
#. 8mJFG
-#: sd/uiconfig/simpress/ui/templatedialog.ui:245
+#: sd/uiconfig/simpress/ui/templatedialog.ui:244
msgctxt "templatedialog|font"
msgid "Font"
msgstr "ਫੋਂਟ"
#. tuaZJ
-#: sd/uiconfig/simpress/ui/templatedialog.ui:269
+#: sd/uiconfig/simpress/ui/templatedialog.ui:268
msgctxt "templatedialog|fonteffect"
msgid "Font Effects"
msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ"
#. SK2Ge
-#: sd/uiconfig/simpress/ui/templatedialog.ui:293
+#: sd/uiconfig/simpress/ui/templatedialog.ui:292
msgctxt "templatedialog|indents"
msgid "Indents & Spacing"
msgstr "ਹਾਸ਼ੀਏ ਤੋਂ ਦੂਰੀ ਤੇ ਫ਼ਾਸਲਾ"
#. siGDD
-#: sd/uiconfig/simpress/ui/templatedialog.ui:317
+#: sd/uiconfig/simpress/ui/templatedialog.ui:316
msgctxt "templatedialog|text"
msgid "Text"
msgstr "ਲਿਖਤ"
#. c5b3i
-#: sd/uiconfig/simpress/ui/templatedialog.ui:341
+#: sd/uiconfig/simpress/ui/templatedialog.ui:340
msgctxt "templatedialog|animation"
msgid "Text Animation"
msgstr "ਟੈਕਸਟ ਐਨੀਮੇਸ਼ਨ"
#. dyjNi
-#: sd/uiconfig/simpress/ui/templatedialog.ui:365
+#: sd/uiconfig/simpress/ui/templatedialog.ui:364
#, fuzzy
msgctxt "templatedialog|dimensioning"
msgid "Dimensioning"
msgstr "ਦਿਸ਼ਾ ਰੇਖਾ"
#. fcsTP
-#: sd/uiconfig/simpress/ui/templatedialog.ui:389
+#: sd/uiconfig/simpress/ui/templatedialog.ui:388
msgctxt "templatedialog|connector"
msgid "Connector"
msgstr "ਕਨੈਕਟਰ"
#. nBYNb
-#: sd/uiconfig/simpress/ui/templatedialog.ui:413
+#: sd/uiconfig/simpress/ui/templatedialog.ui:412
msgctxt "templatedialog|alignment"
msgid "Alignment"
msgstr "ਇਕਸਾਰ"
#. CdaX3
-#: sd/uiconfig/simpress/ui/templatedialog.ui:437
+#: sd/uiconfig/simpress/ui/templatedialog.ui:436
#, fuzzy
msgctxt "templatedialog|asiantypo"
msgid "Asian Typography"
msgstr "ਏਸ਼ੀਆਈਂ ਟਾਈਪੋਗਰਾਫ਼ੀ"
#. RKvWz
-#: sd/uiconfig/simpress/ui/templatedialog.ui:461
+#: sd/uiconfig/simpress/ui/templatedialog.ui:460
msgctxt "templatedialog|tabs"
msgid "Tabs"
msgstr "ਟੈਬ"
#. WtrUB
-#: sd/uiconfig/simpress/ui/templatedialog.ui:485
+#: sd/uiconfig/simpress/ui/templatedialog.ui:484
msgctxt "templatedialog|background"
msgid "Highlighting"
msgstr "ਉਘਾੜਨ"
diff --git a/source/pa-IN/sfx2/messages.po b/source/pa-IN/sfx2/messages.po
index 756abe2c4f7..60d86dd2ff3 100644
--- a/source/pa-IN/sfx2/messages.po
+++ b/source/pa-IN/sfx2/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-03 12:06+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-02-04 01:45+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/sfx2messages/pa/>\n"
@@ -1600,376 +1600,382 @@ msgctxt "STR_MACROS_DISABLED"
msgid "Macros are disabled due to the Macro Security settings."
msgstr ""
-#. DRiDD
+#. AZRwF
#: include/sfx2/strings.hrc:292
+msgctxt "STR_MACROS_DISABLED_SIGNATURE_INVALID"
+msgid "Macros are signed, but at least one signature has problems."
+msgstr ""
+
+#. DRiDD
+#: include/sfx2/strings.hrc:293
msgctxt "STR_MACROS_DISABLED_CONTENT_UNSIGNED"
msgid "Macros are signed, but the document (containing document events) is not signed."
msgstr ""
#. BSkEp
-#: include/sfx2/strings.hrc:293
+#: include/sfx2/strings.hrc:294
msgctxt "STR_MACROS"
msgid "Show Macros"
msgstr ""
#. EMwTw
-#: include/sfx2/strings.hrc:294
+#: include/sfx2/strings.hrc:295
msgctxt "STR_MACROS"
msgid "Show Security Options"
msgstr ""
#. mBmGc
-#: include/sfx2/strings.hrc:295
+#: include/sfx2/strings.hrc:296
msgctxt "STR_EVENTS"
msgid "Show Events"
msgstr ""
#. kej8D
#. Translators: default Impress template names
-#: include/sfx2/strings.hrc:298
+#: include/sfx2/strings.hrc:299
msgctxt "STR_TEMPLATE_NAME1"
msgid "Grey Elegant"
msgstr ""
#. FkuLG
-#: include/sfx2/strings.hrc:299
+#: include/sfx2/strings.hrc:300
msgctxt "STR_TEMPLATE_NAME2"
msgid "Beehive"
msgstr ""
#. uwaPH
-#: include/sfx2/strings.hrc:300
+#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME3"
msgid "Blue Curve"
msgstr ""
#. hHRDz
-#: include/sfx2/strings.hrc:301
+#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME4"
msgid "Blueprint Plans"
msgstr ""
#. MAnPU
-#: include/sfx2/strings.hrc:302
+#: include/sfx2/strings.hrc:303
msgctxt "STR_TEMPLATE_NAME5"
msgid "Candy"
msgstr ""
#. jEiAn
-#: include/sfx2/strings.hrc:303
+#: include/sfx2/strings.hrc:304
msgctxt "STR_TEMPLATE_NAME6"
msgid "Yellow Idea"
msgstr ""
#. QDNuB
-#: include/sfx2/strings.hrc:304
+#: include/sfx2/strings.hrc:305
msgctxt "STR_TEMPLATE_NAME7"
msgid "DNA"
msgstr ""
#. XBrCi
-#: include/sfx2/strings.hrc:305
+#: include/sfx2/strings.hrc:306
msgctxt "STR_TEMPLATE_NAME8"
msgid "Focus"
msgstr ""
#. GADdA
-#: include/sfx2/strings.hrc:306
+#: include/sfx2/strings.hrc:307
msgctxt "STR_TEMPLATE_NAME9"
msgid "Forestbird"
msgstr ""
#. TT8G5
-#: include/sfx2/strings.hrc:307
+#: include/sfx2/strings.hrc:308
msgctxt "STR_TEMPLATE_NAME10"
msgid "Freshes"
msgstr ""
#. C5N9D
-#: include/sfx2/strings.hrc:308
+#: include/sfx2/strings.hrc:309
msgctxt "STR_TEMPLATE_NAME11"
msgid "Inspiration"
msgstr ""
#. fCKG9
-#: include/sfx2/strings.hrc:309
+#: include/sfx2/strings.hrc:310
msgctxt "STR_TEMPLATE_NAME12"
msgid "Lights"
msgstr ""
#. pcLWs
-#: include/sfx2/strings.hrc:310
+#: include/sfx2/strings.hrc:311
msgctxt "STR_TEMPLATE_NAME13"
msgid "Growing Liberty"
msgstr ""
#. xo2gC
-#: include/sfx2/strings.hrc:311
+#: include/sfx2/strings.hrc:312
msgctxt "STR_TEMPLATE_NAME14"
msgid "Metropolis"
msgstr ""
#. FFDBk
-#: include/sfx2/strings.hrc:312
+#: include/sfx2/strings.hrc:313
msgctxt "STR_TEMPLATE_NAME15"
msgid "Midnightblue"
msgstr ""
#. yiCzk
-#: include/sfx2/strings.hrc:313
+#: include/sfx2/strings.hrc:314
msgctxt "STR_TEMPLATE_NAME16"
msgid "Nature Illustration"
msgstr ""
#. cCZzC
-#: include/sfx2/strings.hrc:314
+#: include/sfx2/strings.hrc:315
msgctxt "STR_TEMPLATE_NAME17"
msgid "Pencil"
msgstr ""
#. Ji4Cw
-#: include/sfx2/strings.hrc:315
+#: include/sfx2/strings.hrc:316
msgctxt "STR_TEMPLATE_NAME18"
msgid "Piano"
msgstr ""
#. mrbiq
-#: include/sfx2/strings.hrc:316
+#: include/sfx2/strings.hrc:317
msgctxt "STR_TEMPLATE_NAME19"
msgid "Portfolio"
msgstr ""
#. ysBGy
-#: include/sfx2/strings.hrc:317
+#: include/sfx2/strings.hrc:318
msgctxt "STR_TEMPLATE_NAME20"
msgid "Progress"
msgstr ""
#. gtPt9
-#: include/sfx2/strings.hrc:318
+#: include/sfx2/strings.hrc:319
msgctxt "STR_TEMPLATE_NAME21"
msgid "Sunset"
msgstr ""
#. 73Y2e
-#: include/sfx2/strings.hrc:319
+#: include/sfx2/strings.hrc:320
msgctxt "STR_TEMPLATE_NAME22"
msgid "Vintage"
msgstr ""
#. MSY8y
-#: include/sfx2/strings.hrc:320
+#: include/sfx2/strings.hrc:321
msgctxt "STR_TEMPLATE_NAME23"
msgid "Vivid"
msgstr ""
#. QDZBz
#. Translators: default Writer template names
-#: include/sfx2/strings.hrc:322
+#: include/sfx2/strings.hrc:323
msgctxt "STR_TEMPLATE_NAME24"
msgid "CV"
msgstr ""
#. Koe3V
-#: include/sfx2/strings.hrc:323
+#: include/sfx2/strings.hrc:324
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
msgstr ""
#. hCpfD
-#: include/sfx2/strings.hrc:324
+#: include/sfx2/strings.hrc:325
msgctxt "STR_TEMPLATE_NAME26"
msgid "Default"
msgstr ""
#. d7Hyk
-#: include/sfx2/strings.hrc:325
+#: include/sfx2/strings.hrc:326
msgctxt "STR_TEMPLATE_NAME27"
msgid "Modern"
msgstr ""
#. CVJEC
-#: include/sfx2/strings.hrc:326
+#: include/sfx2/strings.hrc:327
msgctxt "STR_TEMPLATE_NAME28"
msgid "Modern business letter sans-serif"
msgstr ""
#. 95GeB
-#: include/sfx2/strings.hrc:327
+#: include/sfx2/strings.hrc:328
msgctxt "STR_TEMPLATE_NAME29"
msgid "Modern business letter serif"
msgstr ""
#. XdU49
-#: include/sfx2/strings.hrc:328
+#: include/sfx2/strings.hrc:329
msgctxt "STR_TEMPLATE_NAME30"
msgid "Businesscard with logo"
msgstr ""
#. UAmSj
-#: include/sfx2/strings.hrc:329
+#: include/sfx2/strings.hrc:330
msgctxt "STR_TEMPLATE_NAME31"
msgid "Simple"
msgstr ""
#. W7NVH
-#: include/sfx2/strings.hrc:330
+#: include/sfx2/strings.hrc:331
msgctxt "STR_TEMPLATE_NAME32"
msgid "BPMN"
msgstr ""
#. PUBoR
-#: include/sfx2/strings.hrc:331
+#: include/sfx2/strings.hrc:332
msgctxt "STR_TEMPLATE_NAME33"
msgid "Simplified Chinese Normal"
msgstr ""
#. eBJ96
-#: include/sfx2/strings.hrc:332
+#: include/sfx2/strings.hrc:333
msgctxt "STR_TEMPLATE_NAME34"
msgid "Japanese Normal"
msgstr ""
#. ZaGGB
-#: include/sfx2/strings.hrc:334
+#: include/sfx2/strings.hrc:335
msgctxt "STR_CLEAR_CHAR"
msgid "Remove"
msgstr "ਹਟਾਓ"
#. JReRY
-#: include/sfx2/strings.hrc:335
+#: include/sfx2/strings.hrc:336
msgctxt "STR_CLEAR_ALL_CHAR"
msgid "Clear All"
msgstr ""
#. yC8Gs
-#: include/sfx2/strings.hrc:337
+#: include/sfx2/strings.hrc:338
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
msgstr ""
#. FKFmJ
-#: include/sfx2/strings.hrc:338
+#: include/sfx2/strings.hrc:339
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:340
+#: include/sfx2/strings.hrc:341
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%{key}-click to open hyperlink: %{link}"
msgstr "ਹਾਈਪਰਲਿੰਕ ਖੋਲ੍ਹਣ ਲਈ %{key}-ਕਲਿੱਕ ਕਰੋ: %{link}"
#. jC3AK
-#: include/sfx2/strings.hrc:341
+#: include/sfx2/strings.hrc:342
msgctxt "STR_CLICKHYPERLINK"
msgid "Click to open hyperlink: %{link}"
msgstr "ਹਾਈਪਰਲਿੰਕ ਖੋਲ੍ਹਣ ਲਈ ਕਲਿੱਕ ਕਰੋ: %{link}"
#. eFJMp
-#: include/sfx2/strings.hrc:343
+#: include/sfx2/strings.hrc:344
msgctxt "STR_STYLEUSEDBY"
msgid "(used by: %STYLELIST)"
msgstr ""
#. 6UgqW
-#: include/sfx2/strings.hrc:345
+#: include/sfx2/strings.hrc:346
msgctxt "STR_DOCUMENT"
msgid "Document"
msgstr "ਦਸਤਾਵੇਜ਼"
#. XDGTb
-#: include/sfx2/strings.hrc:346
+#: include/sfx2/strings.hrc:347
msgctxt "STR_SPREADSHEET"
msgid "Spreadsheet"
msgstr "ਸਪਰੈਡਸ਼ੀਟ"
#. 3UZXB
-#: include/sfx2/strings.hrc:347
+#: include/sfx2/strings.hrc:348
msgctxt "STR_PRESENTATION"
msgid "Presentation"
msgstr "ਪੇਸ਼ਕਾਰੀ"
#. noN5s
-#: include/sfx2/strings.hrc:348
+#: include/sfx2/strings.hrc:349
msgctxt "STR_DRAWING"
msgid "Drawing"
msgstr "ਡਰਾਇੰਗ"
#. QpuFo
-#: include/sfx2/strings.hrc:349
+#: include/sfx2/strings.hrc:350
msgctxt "STR_RECENT"
msgid "Recently used"
msgstr "ਸੱਜਰੇ ਵਰਤੇ"
#. EcAjb
-#: include/sfx2/strings.hrc:350
+#: include/sfx2/strings.hrc:351
msgctxt "STR_NORECENT"
msgid "No recent characters"
msgstr "ਕੋਈ ਸੱਜਰੇ ਅੱਖਰ ਨਹੀਂ ਹਨ"
#. tfjbD
-#: include/sfx2/strings.hrc:352
+#: include/sfx2/strings.hrc:353
msgctxt "STR_ACTION_RESET_ALL_DEFAULT_TEMPLATES"
msgid "Reset All De~fault Templates"
msgstr ""
#. GWuDE
-#: include/sfx2/strings.hrc:353
+#: include/sfx2/strings.hrc:354
msgctxt "STR_ACTION_RESET_WRITER_TEMPLATE"
msgid "Reset De~fault Text Document"
msgstr ""
#. j5eV8
-#: include/sfx2/strings.hrc:354
+#: include/sfx2/strings.hrc:355
msgctxt "STR_ACTION_RESET_CALC_TEMPLATE"
msgid "Reset De~fault Spreadsheet"
msgstr ""
#. mWp3t
-#: include/sfx2/strings.hrc:355
+#: include/sfx2/strings.hrc:356
msgctxt "STR_ACTION_RESET_IMPRESS_TEMPLATE"
msgid "Reset De~fault Presentation"
msgstr ""
#. wfExB
-#: include/sfx2/strings.hrc:356
+#: include/sfx2/strings.hrc:357
msgctxt "STR_ACTION_RESET_DRAW_TEMPLATE"
msgid "Reset De~fault Drawing"
msgstr ""
#. BFaGA
-#: include/sfx2/strings.hrc:357
+#: include/sfx2/strings.hrc:358
msgctxt "STR_ACTION_IMPORT"
msgid "~Import"
msgstr "ਇੰਪੋਰਟ(~I)"
#. 8Cwfk
-#: include/sfx2/strings.hrc:358
+#: include/sfx2/strings.hrc:359
msgctxt "STR_ACTION_EXTENSIONS"
msgid "E~xtensions"
msgstr "ਇਕਸਟੈਨਸ਼ਨ(~x)"
#. idGvM
-#: include/sfx2/strings.hrc:359
+#: include/sfx2/strings.hrc:360
msgctxt "STR_WINDOW_TITLE_RENAME_TEMPLATE"
msgid "Rename"
msgstr "ਨਾਂ ਬਦਲੋ"
#. EyjE3
-#: include/sfx2/strings.hrc:360
+#: include/sfx2/strings.hrc:361
msgctxt "STR_WINDOW_TITLE_RENAME_CATEGORY"
msgid "Rename Category"
msgstr "ਕੈਟਾਗਰੀ ਦਾ ਨਾਂ ਬਦਲੋ"
#. T79Eb
-#: include/sfx2/strings.hrc:361
+#: include/sfx2/strings.hrc:362
msgctxt "STR_WINDOW_TITLE_RENAME_NEW_CATEGORY"
msgid "New Category"
msgstr "ਨਵੀਂ ਕੈਟਾਗਰੀ"
#. fCRA7
-#: include/sfx2/strings.hrc:363
+#: include/sfx2/strings.hrc:364
msgctxt "STR_OBJECT_INSPECTOR"
msgid "UNO Object Inspector"
msgstr ""
diff --git a/source/pa-IN/svtools/messages.po b/source/pa-IN/svtools/messages.po
index d5f675e7e3e..4538c816fa6 100644
--- a/source/pa-IN/svtools/messages.po
+++ b/source/pa-IN/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: 2024-04-15 19:52+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-08 14:22+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/pa/>\n"
@@ -2396,10 +2396,18 @@ msgctxt "RID_ERRHDL"
msgid "Could not establish Internet connection to $(ARG1)."
msgstr "$(ARG1) ਨਾਲ ਇੰਟਰਨੈੱਟ ਕਨੈਕਸ਼ਨ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ।"
-#. DRTMX
+#. eNvGa
#: svtools/inc/errtxt.hrc:111
msgctxt "RID_ERRHDL"
msgid ""
+"Client error message:\n"
+"$(ARG2)"
+msgstr ""
+
+#. DRTMX
+#: svtools/inc/errtxt.hrc:112
+msgctxt "RID_ERRHDL"
+msgid ""
"Error reading data from the Internet.\n"
"Server error message: $(ARG1)."
msgstr ""
@@ -2407,7 +2415,7 @@ msgstr ""
"ਸਰਵਰ ਗਲਤੀ ਸੁਨੇਹਾ ਹੈ: $(ARG1)"
#. XLR9Z
-#: svtools/inc/errtxt.hrc:112
+#: svtools/inc/errtxt.hrc:113
msgctxt "RID_ERRHDL"
msgid ""
"Error transferring data to the Internet.\n"
@@ -2417,37 +2425,37 @@ msgstr ""
"ਸਰਵਰ ਗਲਤੀ ਸੁਨੇਹਾ: $(ARG1)"
#. gdoRd
-#: svtools/inc/errtxt.hrc:113
+#: svtools/inc/errtxt.hrc:114
msgctxt "RID_ERRHDL"
msgid "General Internet error has occurred."
msgstr "ਆਮ ਇੰਟਰਨੈੱਟ ਗਲਤੀ ਆਈ ਹੈ।"
#. Bxx3u
-#: svtools/inc/errtxt.hrc:114
+#: svtools/inc/errtxt.hrc:115
msgctxt "RID_ERRHDL"
msgid "The requested Internet data is not available in the cache and cannot be transmitted as the Online mode has not be activated."
msgstr "ਲੋੜੀਦਾ ਇੰਟਰਨੈੱਟ ਡਾਟਾ ਕੈਸ਼ ਵਿੱਚ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ ਅਤੇ ਆਨਲਾਈਨ ਮੋਡ ਸਰਗਰਮ ਨਾ ਹੋਣ ਕਰਕੇ ਸੰਚਾਰ ਸੰਭਵ ਨਹੀਂ ਹੈ।"
#. PT9qC
-#: svtools/inc/errtxt.hrc:115
+#: svtools/inc/errtxt.hrc:116
msgctxt "RID_ERRHDL"
msgid "The contents could not be created."
msgstr "ਭਾਗ ਬਣਾਏ ਨਹੀਂ ਜਾ ਸਕੇ ਹਨ।"
#. 5tpDB
-#: svtools/inc/errtxt.hrc:116
+#: svtools/inc/errtxt.hrc:117
msgctxt "RID_ERRHDL"
msgid "The file name is too long for the target file system."
msgstr "ਤਹਿ ਫਾਇਲ ਸਿਸਟਮ ਲਈ ਫਾਇਲ ਨਾਂ ਬਹੁਤ ਲੰਮਾ ਹੈ।"
#. MaSoJ
-#: svtools/inc/errtxt.hrc:117
+#: svtools/inc/errtxt.hrc:118
msgctxt "RID_ERRHDL"
msgid "The input syntax is invalid."
msgstr "ਗਲਤ ਇੰਪੁੱਟ ਸੰਟੈਕਸ ਹੈ।"
#. rxGnF
-#: svtools/inc/errtxt.hrc:118
+#: svtools/inc/errtxt.hrc:119
msgctxt "RID_ERRHDL"
msgid ""
"This document contains attributes that cannot be saved in the selected format.\n"
@@ -2457,19 +2465,19 @@ msgstr ""
"ਕਿਰਪਾ ਕਰਕੇ ਦਸਤਾਵੇਜ਼ ਨੂੰ %PRODUCTNAME %PRODUCTVERSION ਫਾਇਲ ਫਾਰਮੈਟ ਵਿੱਚ ਸੰਭਾਲੋ।"
#. BCqFD
-#: svtools/inc/errtxt.hrc:119
+#: svtools/inc/errtxt.hrc:120
msgctxt "RID_ERRHDL"
msgid "The maximum number of documents that can be opened at the same time has been reached. You need to close one or more documents before you can open a new document."
msgstr "ਵੱਧ ਤੋਂ ਵੱਧ ਡੌਕੂਮੈਂਟਾਂ ਦੀ ਗਿਣਤੀ, ਜੋ ਕਿ ਇੱਕ ਸਮੇਂ ਖੋਲ੍ਹੇ ਜਾ ਸਕਦੇ ਹਨ, ਅੱਪੜ ਗਈ ਹੈ। ਤੁਹਾਨੂੰ ਇੱਕ ਨਾਂ ਡੌਕੂਮੈਂਟ ਖੋਲ੍ਹਣ ਤੋਂ ਪਹਿਲਾਂ ਇੱਕ ਜਾਂ ਵੱਧ ਡੌਕੂਮੈਂ ਬੰਦ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।"
#. mfmpc
-#: svtools/inc/errtxt.hrc:120
+#: svtools/inc/errtxt.hrc:121
msgctxt "RID_ERRHDL"
msgid "Could not create backup copy."
msgstr "ਬੈਕਅੱਪ ਕਾਪੀ ਬਣਾਈ ਨਹੀਂ ਜਾ ਸਕੀ।"
#. C2kk7
-#: svtools/inc/errtxt.hrc:121
+#: svtools/inc/errtxt.hrc:122
msgctxt "RID_ERRHDL"
msgid ""
"The encrypted document contains unexpected non-encrypted streams.\n"
@@ -2489,43 +2497,43 @@ msgstr ""
" "
#. 8efKG
-#: svtools/inc/errtxt.hrc:122
+#: svtools/inc/errtxt.hrc:123
msgctxt "RID_ERRHDL"
msgid "Invalid data length."
msgstr "ਗਲਤ ਡਾਟਾ ਲੰਬਾਈ ਹੈ।"
#. XRpcv
-#: svtools/inc/errtxt.hrc:123
+#: svtools/inc/errtxt.hrc:124
msgctxt "RID_ERRHDL"
msgid "Function not possible: path contains current directory."
msgstr "ਫੰਕਸ਼ਨ ਸੰਭਵ ਨਹੀਂ। ਮਾਰਗ ਵਿੱਚ ਮੌਜੂਦਾ ਡਾਇਰੈਕਟਰੀ ਹੈ।"
#. sDMmp
-#: svtools/inc/errtxt.hrc:124
+#: svtools/inc/errtxt.hrc:125
msgctxt "RID_ERRHDL"
msgid "Function not possible: device (drive) not identical."
msgstr "ਫੰਕਸ਼ਨ ਸੰਭਵ ਨਹੀਂ। ਡਿਵਾਈਸ (ਡਰਾਇਵ) ਪਛਾਣਯੋਗ ਨਹੀਂ ਹੈ।"
#. ofvvG
-#: svtools/inc/errtxt.hrc:125
+#: svtools/inc/errtxt.hrc:126
msgctxt "RID_ERRHDL"
msgid "Device (drive) not ready."
msgstr "ਡਿਵਾਈਸ (ਡਰਾਇਵ) ਤਿਆਰ ਨਹੀਂ ਹੈ।"
#. ALGnm
-#: svtools/inc/errtxt.hrc:126
+#: svtools/inc/errtxt.hrc:127
msgctxt "RID_ERRHDL"
msgid "Wrong checksum."
msgstr ""
#. XVTHm
-#: svtools/inc/errtxt.hrc:127
+#: svtools/inc/errtxt.hrc:128
msgctxt "RID_ERRHDL"
msgid "Function not possible: write protected."
msgstr "ਫੰਕਸ਼ਨ ਸੰਭਵ ਨਹੀਂ ਹੈ। ਲਿਖਣ ਸੁਰੱਖਿਅਤ ਹੈ।"
#. Jfn8d
-#: svtools/inc/errtxt.hrc:128
+#: svtools/inc/errtxt.hrc:129
msgctxt "RID_ERRHDL"
msgid ""
"The password of a shared spreadsheet cannot be set or changed.\n"
@@ -2535,47 +2543,47 @@ msgstr ""
"ਪਹਿਲਾਂ ਸਾਂਝਾ ਕਰਨ ਮੋਡ ਬੰਦ ਕਰੋ।"
#. M4EWG
-#: svtools/inc/errtxt.hrc:129
+#: svtools/inc/errtxt.hrc:130
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
msgstr ""
#. Di7GD
-#: svtools/inc/errtxt.hrc:130
+#: svtools/inc/errtxt.hrc:131
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
msgstr ""
#. WZiDE
-#: svtools/inc/errtxt.hrc:136
+#: svtools/inc/errtxt.hrc:137
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "General OLE error."
msgstr "ਸਧਾਰਨ OLE ਗਲਤੀ"
#. iB8YV
-#: svtools/inc/errtxt.hrc:138
+#: svtools/inc/errtxt.hrc:139
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The action cannot be executed in the object's current state."
msgstr "ਇਕਾਈ ਦੀ ਮੌਜੂਦਾ ਸਥਿਤੀ ਵਿੱਚ ਕਾਰਵਾਈ ਕੀਤੀ ਨਹੀਂ ਜਾ ਸਕਦੀ ਹੈ।"
#. 2fYQF
-#: svtools/inc/errtxt.hrc:140
+#: svtools/inc/errtxt.hrc:141
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "The object does not support any actions."
msgstr "ਇਕਾਈ ਕਿਸੇ ਕਾਰਵਾਈ ਲਈ ਸਹਿਯੋਗ ਨਹੀਂ"
#. B4NVE
-#: svtools/inc/errtxt.hrc:142
+#: svtools/inc/errtxt.hrc:143
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "Object does not support this action."
msgstr "ਇਸ ਕਾਰਵਾਈ ਲਈ ਇਕਾਈ ਸਹਾਇਕ ਨਹੀਂ"
#. G5peG
-#: svtools/inc/errtxt.hrc:149
+#: svtools/inc/errtxt.hrc:150
#, fuzzy
msgctxt "RID_ERRHDL"
msgid "$(ERR) activating object"
diff --git a/source/pa-IN/svx/messages.po b/source/pa-IN/svx/messages.po
index 34859635b4f..b4cb2a96698 100644
--- a/source/pa-IN/svx/messages.po
+++ b/source/pa-IN/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: 2024-06-17 15:58+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-01-02 00:13+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/pa/>\n"
@@ -10207,134 +10207,184 @@ msgctxt "RID_SVXSTR_TABLE_PRESET_NONE"
msgid "No Borders"
msgstr ""
-#. LzhYZ
+#. qXGbD
#: include/svx/strings.hrc:1814
+msgctxt "RID_SVXSTR_TABLE_PRESET_OUTER"
+msgid "Outer Border"
+msgstr ""
+
+#. LzhYZ
+#. Sidebar/toolbar
+#: include/svx/strings.hrc:1815
msgctxt "RID_SVXSTR_TABLE_PRESET_ONLYOUTER"
msgid "Outer Border Only"
msgstr ""
#. EniNF
-#: include/svx/strings.hrc:1815
+#. Format dialog
+#: include/svx/strings.hrc:1816
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERHORI"
msgid "Outer Border and Horizontal Lines"
msgstr ""
#. BuDWX
-#: include/svx/strings.hrc:1816
+#: include/svx/strings.hrc:1817
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERALL"
msgid "Outer Border and All Inner Lines"
msgstr ""
#. ckL2Z
-#: include/svx/strings.hrc:1817
+#: include/svx/strings.hrc:1818
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERVERI"
msgid "Outer Border and Vertical Lines"
msgstr ""
#. Q9hj4
-#: include/svx/strings.hrc:1818
+#: include/svx/strings.hrc:1819
msgctxt "RID_SVXSTR_TABLE_PRESET_OUTERINNER"
msgid "Outer Border Without Changing Inner Lines"
msgstr ""
#. b7wCr
-#: include/svx/strings.hrc:1819
+#: include/svx/strings.hrc:1820
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONAL"
msgid "Diagonal Lines Only"
msgstr ""
#. 8r98a
-#: include/svx/strings.hrc:1820
+#: include/svx/strings.hrc:1821
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALDOWN"
msgid "Diagonal Down Border"
msgstr ""
#. P4FGE
-#: include/svx/strings.hrc:1821
+#: include/svx/strings.hrc:1822
msgctxt "RID_SVXSTR_PARA_PRESET_DIAGONALUP"
msgid "Diagonal Up Border"
msgstr ""
#. VxBrT
-#: include/svx/strings.hrc:1822
+#: include/svx/strings.hrc:1823
msgctxt "RID_SVXSTR_PARA_PRESET_CRISSCROSS"
msgid "Criss-Cross Border"
msgstr ""
#. hTi3j
-#: include/svx/strings.hrc:1823
+#: include/svx/strings.hrc:1824
msgctxt "RID_SVXSTR_PARA_PRESET_ALL"
msgid "All Four Borders"
msgstr "ਸਾਰੇ ਚਾਰੇ ਹਾਸ਼ੀਏ"
-#. o8fB8
-#: include/svx/strings.hrc:1824
+#. sBGgw
+#: include/svx/strings.hrc:1825
msgctxt "RID_SVXSTR_PARA_PRESET_LEFTRIGHT"
+msgid "Left and Right Borders"
+msgstr ""
+
+#. Qmtji
+#: include/svx/strings.hrc:1826
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFTRIGHT"
msgid "Left and Right Borders Only"
-msgstr "ਸਿਰਫ਼ ਖੱਬੇ ਅਤੇ ਸੱਜੇ ਹਾਸ਼ੀਏ ਹੀ"
+msgstr ""
-#. 6NnM2
-#: include/svx/strings.hrc:1825
+#. WnRti
+#: include/svx/strings.hrc:1827
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOM"
+msgid "Top and Bottom Borders"
+msgstr ""
+
+#. gaVup
+#: include/svx/strings.hrc:1828
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOPBOTTOM"
msgid "Top and Bottom Borders Only"
-msgstr "ਸਿਰਫ਼ ਉੱਤੇ ਅਤੇ ਹੇਠਾਂ ਹਾਸ਼ੀਏ"
+msgstr ""
#. KTYVW
-#: include/svx/strings.hrc:1826
+#: include/svx/strings.hrc:1829
msgctxt "RID_SVXSTR_PARA_PRESET_TOPBOTTOMHORI"
msgid "Top and Bottom Borders, and All Horizontal Lines"
msgstr "ਉੱਤੇ ਅਤੇ ਹੇਠਾਂ ਹਾਸ਼ੀਏ, ਅਤੇ ਸਾਰੀਆਂ ਲੇਟਵੀਆਂ ਲਾਈਨਾਂ"
-#. fRcEu
-#: include/svx/strings.hrc:1827
+#. G9fxd
+#: include/svx/strings.hrc:1830
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYLEFT"
-msgid "Left Border Only"
-msgstr "ਸਿਰਫ਼ ਖੱਬਾ ਹਾਸ਼ੀਆ ਹੀ"
+msgid "Left Border"
+msgstr ""
-#. uqzE7
-#: include/svx/strings.hrc:1828
+#. uDRfq
+#: include/svx/strings.hrc:1831
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYRIGHT"
-msgid "Right Border Only"
-msgstr "ਸਿਰਫ ਸੱਜਾ ਹਾਸ਼ੀਆ ਹੀ"
+msgid "Right Border"
+msgstr ""
-#. 6ecLB
-#: include/svx/strings.hrc:1829
+#. c8Pkg
+#: include/svx/strings.hrc:1832
msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTOP"
-msgid "Top Border Only"
-msgstr "ਸਿਰਫ਼ ਉੱਤੇ ਹਾਸ਼ੀਆ ਹੀ"
+msgid "Top Border"
+msgstr ""
-#. B6KZc
-#: include/svx/strings.hrc:1830
-msgctxt "RID_SVXSTR_PARA_PRESET_ONLYTBOTTOM"
-msgid "Bottom Border Only"
-msgstr "ਸਿਰਫ਼ ਹੇਠਾਂ ਹਾਸ਼ੀਆ ਹੀ"
+#. ivB9S
+#: include/svx/strings.hrc:1833
+msgctxt "RID_SVXSTR_PARA_PRESET_ONLYBOTTOM"
+msgid "Bottom Border"
+msgstr ""
#. aCMGz
-#: include/svx/strings.hrc:1831
+#: include/svx/strings.hrc:1834
msgctxt "RID_SVXSTR_HOR_PRESET_ONLYHOR"
msgid "Top and Bottom Borders, and All Inner Lines"
msgstr ""
#. t38dT
-#: include/svx/strings.hrc:1832
+#: include/svx/strings.hrc:1835
msgctxt "RID_SVXSTR_VER_PRESET_ONLYVER"
msgid "Left and Right Borders, and All Inner Lines"
msgstr ""
+#. uEzgn
+#: include/svx/strings.hrc:1836
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICK"
+msgid "Thick Box Border"
+msgstr ""
+
+#. Ra4XK
+#: include/svx/strings.hrc:1837
+msgctxt "RID_SVXSTR_TABLE_PRESET_THICKBOTTOM"
+msgid "Thick Bottom Border"
+msgstr ""
+
+#. tAz5S
+#: include/svx/strings.hrc:1838
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPTHICKBOTTOM"
+msgid "Top and Thick Bottom Borders"
+msgstr ""
+
+#. GF6Sd
+#: include/svx/strings.hrc:1839
+msgctxt "RID_SVXSTR_TABLE_PRESET_DOUBLEBOTTOM"
+msgid "Double Bottom Border"
+msgstr ""
+
+#. BPUB7
+#: include/svx/strings.hrc:1840
+msgctxt "RID_SVXSTR_TABLE_PRESET_TOPDOUBLEBOTTOM"
+msgid "Top and Double Bottom Borders"
+msgstr ""
+
#. c8nou
-#: include/svx/strings.hrc:1834
+#: include/svx/strings.hrc:1842
msgctxt "RID_SVXSTR_REMOVE_FAVORITES"
msgid "Remove from Favorites"
msgstr ""
#. XpjRm
-#: include/svx/strings.hrc:1835
+#: include/svx/strings.hrc:1843
msgctxt "RID_SVXSTR_MISSING_CHAR"
msgid "Missing character"
msgstr ""
#. 7tBGT
-#: include/svx/strings.hrc:1836
+#: include/svx/strings.hrc:1844
msgctxt "RID_SVXSTR_ADD_FAVORITES"
msgid "Add to Favorites"
msgstr ""
@@ -10343,19 +10393,19 @@ msgstr ""
#. --------------------------------------------------------------------
#. Description: GraphicSizeCheck strings
#. --------------------------------------------------------------------
-#: include/svx/strings.hrc:1841
+#: include/svx/strings.hrc:1849
msgctxt "STR_GRAPHIC_SIZE_CHECK_DIALOG_TITLE"
msgid "Graphic Size Check"
msgstr ""
#. D66VS
-#: include/svx/strings.hrc:1842
+#: include/svx/strings.hrc:1850
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:1843
+#: include/svx/strings.hrc:1851
msgctxt "STR_WARNING_GRAPHIC_PIXEL_COUNT_HIGH"
msgid "Image '%NAME%' has too many pixels for the current size (%DPIX% x %DPIY% DPI)"
msgstr ""
diff --git a/source/pa-IN/sw/messages.po b/source/pa-IN/sw/messages.po
index 17c34333504..4dcd553e27c 100644
--- a/source/pa-IN/sw/messages.po
+++ b/source/pa-IN/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:14+0200\n"
+"POT-Creation-Date: 2024-06-28 11:23+0200\n"
"PO-Revision-Date: 2024-02-04 01:45+0000\n"
"Last-Translator: A S Alam <amanpreet.alam@gmail.com>\n"
"Language-Team: Punjabi <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/pa/>\n"
@@ -3029,11 +3029,11 @@ msgctxt "STR_POOLCOLL_BULLET_NONUM5"
msgid "List 5 Cont."
msgstr "ਸੂਚੀ 5 ਜਾਰੀ"
-#. DB3VN
+#. pBu7h
#: sw/inc/strings.hrc:137
-msgctxt "STR_POOLCOLL_HEADER"
+msgctxt "STR_POOLCOLL_HEADERFOOTER"
msgid "Header and Footer"
-msgstr "ਹੈੱਡਰ ਤੇ ਫੁੱਟਰ"
+msgstr ""
#. qfrao
#: sw/inc/strings.hrc:138
@@ -10613,38 +10613,44 @@ msgctxt "a11ycheckissuespanel|expand_table_label"
msgid "Table"
msgstr ""
+#. wqYgU
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:197
+msgctxt "a11ycheckissuespanel|expand_formatting_label"
+msgid "Direct Formatting"
+msgstr ""
+
#. FeJ9J
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:188
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:216
msgctxt "a11ycheckissuespanel|expand_formatting_label"
msgid "Formatting"
msgstr ""
#. aa75N
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:217
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:245
msgctxt "a11ycheckissuespanel|expand_hyperlink_label"
msgid "Hyperlink"
msgstr ""
#. 9xUft
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:246
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:274
msgctxt "a11ycheckissuespanel|expand_fakes_label"
msgid "Simulated captions"
msgstr ""
#. 4MrEA
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:275
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:303
msgctxt "a11ycheckissuespanel|expand_numbering_label"
msgid "Numbering"
msgstr ""
#. spEUt
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:304
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:332
msgctxt "a11ycheckissuespanel|expand_other_label"
msgid "Other"
msgstr ""
#. 6srdM
-#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:328
+#: sw/uiconfig/swriter/ui/a11ycheckissuespanel.ui:356
msgctxt "a11ycheckissuespanel|updateLinkButton"
msgid "Click to update..."
msgstr ""
@@ -16506,55 +16512,55 @@ msgid "Frame"
msgstr "ਫਰੇਮ"
#. A2nPr
-#: sw/uiconfig/swriter/ui/framedialog.ui:112
+#: sw/uiconfig/swriter/ui/framedialog.ui:111
msgctxt "framedialog|type"
msgid "Position and Size"
msgstr ""
#. PGiYy
-#: sw/uiconfig/swriter/ui/framedialog.ui:135
+#: sw/uiconfig/swriter/ui/framedialog.ui:134
msgctxt "framedialog|options"
msgid "Options"
msgstr "ਚੋਣਾਂ"
#. GfHpi
-#: sw/uiconfig/swriter/ui/framedialog.ui:159
+#: sw/uiconfig/swriter/ui/framedialog.ui:158
msgctxt "framedialog|wrap"
msgid "Wrap"
msgstr "ਸਮੇਟੋ"
#. kau3f
-#: sw/uiconfig/swriter/ui/framedialog.ui:183
+#: sw/uiconfig/swriter/ui/framedialog.ui:182
msgctxt "framedialog|hyperlink"
msgid "Hyperlink"
msgstr "ਹਾਈਪਰਲਿੰਕ"
#. 3dDpH
-#: sw/uiconfig/swriter/ui/framedialog.ui:207
+#: sw/uiconfig/swriter/ui/framedialog.ui:206
msgctxt "framedialog|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. eSXL9
-#: sw/uiconfig/swriter/ui/framedialog.ui:231
+#: sw/uiconfig/swriter/ui/framedialog.ui:230
msgctxt "framedialog|area"
msgid "Area"
msgstr "ਏਰੀਆ"
#. cuaEE
-#: sw/uiconfig/swriter/ui/framedialog.ui:255
+#: sw/uiconfig/swriter/ui/framedialog.ui:254
msgctxt "framedialog|transparence"
msgid "Transparency"
msgstr "ਪਾਰਦਰਸ਼ਤਾ"
#. JkHCb
-#: sw/uiconfig/swriter/ui/framedialog.ui:279
+#: sw/uiconfig/swriter/ui/framedialog.ui:278
msgctxt "framedialog|columns"
msgid "Columns"
msgstr "ਕਾਲਮ"
#. C4BTP
-#: sw/uiconfig/swriter/ui/framedialog.ui:303
+#: sw/uiconfig/swriter/ui/framedialog.ui:302
msgctxt "framedialog|macro"
msgid "Macro"
msgstr "ਮਾਈਕਰੋ"
@@ -29009,43 +29015,43 @@ msgid "Revert any changes made on the tab shown here to the settings that were p
msgstr ""
#. Zp6EK
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:147
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:146
msgctxt "templatedialog1|organizer"
msgid "General"
msgstr ""
#. BvEuD
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:170
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:169
msgctxt "templatedialog1|font"
msgid "Font"
msgstr "ਫੋਂਟ"
#. Zda8g
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:194
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:193
msgctxt "templatedialog1|fonteffect"
msgid "Font Effects"
msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ"
#. RAxVY
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:218
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:217
msgctxt "templatedialog1|position"
msgid "Position"
msgstr "ਸਥਿਤੀ"
#. NAt5W
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:241
msgctxt "templatedialog1|asianlayout"
msgid "Asian Layout"
msgstr "ਏਸ਼ੀਆ ਲੇਆਉਟ"
#. scr3Z
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:265
msgctxt "templatedialog1|background"
msgid "Highlighting"
msgstr "ਉਘਾੜਨਾ"
#. gurnZ
-#: sw/uiconfig/swriter/ui/templatedialog1.ui:290
+#: sw/uiconfig/swriter/ui/templatedialog1.ui:289
msgctxt "templatedialog1|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
@@ -29057,85 +29063,85 @@ msgid "List Style"
msgstr "ਸੂਚੀ ਸਟਾਈਲ"
#. VzEYH
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:141
msgctxt "templatedialog16|organizer"
msgid "Name and hide user-defined styles"
msgstr ""
#. Tuygv
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:143
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:142
msgctxt "templatedialog16|organizer"
msgid "General"
msgstr ""
#. 7MAbD
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:165
msgctxt "templatedialog16|bullets"
msgid "Choose a predefined bullet type"
msgstr ""
#. 7o8No
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:167
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:166
msgctxt "templatedialog16|bullets"
msgid "Unordered"
msgstr ""
#. BHtZp
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:190
msgctxt "templatedialog16|numbering"
msgid "Choose a predefined ordered list"
msgstr ""
#. uCBn4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:192
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:191
msgctxt "templatedialog16|numbering"
msgid "Ordered"
msgstr "ਕ੍ਰਮਬੱਧ"
#. vDSFy
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:215
msgctxt "templatedialog16|outline"
msgid "Choose a predefined outline format"
msgstr ""
#. D9oKE
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:217
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:216
msgctxt "templatedialog16|outline"
msgid "Outline"
msgstr "ਆਉਟਲਾਈਨ"
#. 2r5Vm
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:240
msgctxt "templatedialog16|graphics"
msgid "Choose a predefined graphic bullet symbol"
msgstr ""
#. Dp6La
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:242
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:241
msgctxt "templatedialog16|graphics"
msgid "Image"
msgstr "ਚਿੱਤਰ"
#. CLdU2
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:265
msgctxt "templatedialog16|position"
msgid "Modify indent, spacing, and alignment for list numbers or symbols"
msgstr ""
#. K55K4
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:267
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:266
msgctxt "templatedialog16|position"
msgid "Position"
msgstr "ਸਥਿਤੀ"
#. ajaSr
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:290
msgctxt "templatedialog16|customize"
msgid "Design your own list or outline format"
msgstr ""
#. g5NQF
-#: sw/uiconfig/swriter/ui/templatedialog16.ui:292
+#: sw/uiconfig/swriter/ui/templatedialog16.ui:291
msgctxt "templatedialog16|customize"
msgid "Customize"
msgstr "ਕਸਟਮਾਈਜ਼"
@@ -29147,109 +29153,109 @@ msgid "Paragraph Style"
msgstr "ਪ੍ਹੈਰਾ ਸਟਾਈਲ"
#. FDfTt
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:141
msgctxt "templatedialog2|organizer"
msgid "General"
msgstr ""
#. G7U5N
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:164
msgctxt "templatedialog2|indents"
msgid "Indents & Spacing"
msgstr "ਹਾਸ਼ੀਆ ਅਤੇ ਫਾਸਲਾ"
#. UheDe
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:188
msgctxt "templatedialog2|alignment"
msgid "Alignment"
msgstr "ਇਕਸਾਰ"
#. LrHQg
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:212
msgctxt "templatedialog2|textflow"
msgid "Text Flow"
msgstr "ਲਿਖਤ ਦਾ ਵਹਾ"
#. evVPf
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:236
msgctxt "templatedialog2|asiantypo"
msgid "Asian Typography"
msgstr "ਏਸ਼ੀਆਈਂ ਟਾਈਪੋਗਰਾਫ਼ੀ"
#. A5kVc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:260
msgctxt "templatedialog2|font"
msgid "Font"
msgstr "ਫੋਂਟ"
#. ECDNu
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:284
msgctxt "templatedialog2|fonteffect"
msgid "Font Effects"
msgstr "ਫੋਂਟ ਪ੍ਰਭਾਵ"
#. pmGG6
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:308
msgctxt "templatedialog2|position"
msgid "Position"
msgstr "ਸਥਿਤੀ"
#. 58Wjp
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:332
msgctxt "templatedialog2|asianlayout"
msgid "Asian Layout"
msgstr "ਏਸ਼ੀਆ ਲੇਆਉਟ"
#. HkBDx
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:356
msgctxt "templatedialog2|highlighting"
msgid "Highlighting"
msgstr "ਉਘਾੜਨਾ"
#. 9gGCX
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:381
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:380
msgctxt "templatedialog2|tabs"
msgid "Tabs"
msgstr "ਟੈਬ"
#. D26TP
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:405
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:404
msgctxt "templatedialog2|dropcaps"
msgid "Drop Caps"
msgstr "ਕੈਪ ਲਾਕ ਬੰਦ"
#. dbbmR
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:429
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:428
msgctxt "templatedialog2|area"
msgid "Area"
msgstr "ਏਰੀਆ"
#. Dj7W7
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:453
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:452
msgctxt "templatedialog2|transparence"
msgid "Transparency"
msgstr "ਪਾਰਦਰਸ਼ਤਾ"
#. cFPCE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:477
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:476
msgctxt "templatedialog2|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. LexJE
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:501
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:500
msgctxt "templatedialog2|condition"
msgid "Condition"
msgstr "ਸ਼ਰਤ"
#. xT7hc
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:524
msgctxt "templatedialog2|outline"
msgid "Set outline level, list style and line numbering for paragraph style."
msgstr ""
#. H6CCV
-#: sw/uiconfig/swriter/ui/templatedialog2.ui:526
+#: sw/uiconfig/swriter/ui/templatedialog2.ui:525
msgctxt "templatedialog2|outline"
msgid "Outline & List"
msgstr "ਆਉਟਲਾਈਨ ਤੇ ਸੂਚੀ"
@@ -29261,55 +29267,55 @@ msgid "Frame Style"
msgstr "ਫਰੇਮ ਸ਼ੈਲੀ"
#. wSfp8
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:141
msgctxt "templatedialog4|organizer"
msgid "General"
msgstr ""
#. Q2PQs
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:164
msgctxt "templatedialog4|type"
msgid "Type"
msgstr "ਕਿਸਮ"
#. wEoGM
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:188
msgctxt "templatedialog4|options"
msgid "Options"
msgstr "ਚੋਣਾਂ"
#. CEZkG
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:212
msgctxt "templatedialog4|wrap"
msgid "Wrap"
msgstr "ਸਮੇਟੋ"
#. azFQq
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:236
msgctxt "templatedialog4|area"
msgid "Area"
msgstr "ਏਰੀਆ"
#. EYmCL
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:260
msgctxt "templatedialog4|transparence"
msgid "Transparency"
msgstr "ਪਾਰਦਰਸ਼ਤਾ"
#. UbGRm
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:284
msgctxt "templatedialog4|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. riCuE
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:308
msgctxt "templatedialog4|columns"
msgid "Columns"
msgstr "ਕਾਲਮ"
#. BYG56
-#: sw/uiconfig/swriter/ui/templatedialog4.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog4.ui:332
msgctxt "templatedialog4|macros"
msgid "Macro"
msgstr "ਮਾਈਕਰੋ"
@@ -29327,61 +29333,61 @@ msgid "Standard"
msgstr "ਸਟੈਂਡਰਡ"
#. LTNWZ
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:142
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:141
msgctxt "templatedialog8|organizer"
msgid "General"
msgstr ""
#. UbZRu
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:165
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:164
msgctxt "templatedialog8|page"
msgid "Page"
msgstr "ਸਫ਼ਾ"
#. hCvJw
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:189
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:188
msgctxt "templatedialog8|area"
msgid "Area"
msgstr "ਏਰੀਆ"
#. Mja3s
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:213
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:212
msgctxt "templatedialog8|transparence"
msgid "Transparency"
msgstr "ਪਾਰਦਰਸ਼ਤਾ"
#. JUC2u
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:237
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:236
msgctxt "templatedialog8|header"
msgid "Header"
msgstr "ਹੈਡਰ"
#. oeXmC
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:261
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:260
msgctxt "templatedialog8|footer"
msgid "Footer"
msgstr "ਫੁੱਟਰ"
#. D9AK7
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:285
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:284
msgctxt "templatedialog8|borders"
msgid "Borders"
msgstr "ਹਾਸ਼ੀਆ"
#. ABEwr
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:309
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:308
msgctxt "templatedialog8|columns"
msgid "Columns"
msgstr "ਕਾਲਮ"
#. ZdBTL
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:333
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:332
msgctxt "templatedialog8|footnotes"
msgid "Footnote"
msgstr "ਫੁੱਟਨੋਟ"
#. FosCF
-#: sw/uiconfig/swriter/ui/templatedialog8.ui:357
+#: sw/uiconfig/swriter/ui/templatedialog8.ui:356
msgctxt "templatedialog8|textgrid"
msgid "Text Grid"
msgstr "ਲਿਖਤ ਗਰਿੱਡ"
diff --git a/source/pl/cui/messages.po b/source/pl/cui/messages.po
index 4d969ed018c..fe8db3aa846 100644
--- a/source/pl/cui/messages.po
+++ b/source/pl/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-20 13:13+0200\n"
-"PO-Revision-Date: 2024-05-24 14:55+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 01:45+0000\n"
"Last-Translator: Adam Rak <kitynska@gmail.com>\n"
"Language-Team: Polish <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/pl/>\n"
"Language: pl\n"
@@ -2560,11 +2560,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file."
msgstr "Otwórz plik CSV jako nowy arkusz w bieżącym arkuszu kalkulacyjnym za pomocą opcji Arkusz ▸ Wstaw arkusz z pliku."
-#. CRH5u
+#. 72N2Q
#: cui/inc/tipoftheday.hrc:120
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+Shift+X."
-msgstr "Możesz kontynuować pisanie z domyślnymi atrybutami formatowania po ręcznym zastosowaniu pogrubienia, kursywy lub podkreślenia, naciskając %MOD1+Shift+X."
+msgid "You can continue writing with the default formatting attributes after manually applying bold, italic or underline by pressing %MOD1+M."
+msgstr ""
#. iXjDF
#: cui/inc/tipoftheday.hrc:121
@@ -16458,13 +16458,13 @@ msgstr "min"
#: cui/uiconfig/ui/optsavepage.ui:224
msgctxt "optsavepage|userautosave"
msgid "Automatically save the document instead"
-msgstr ""
+msgstr "Zamiast tego zapisz dokument automatycznie"
#. xokGd
#: cui/uiconfig/ui/optsavepage.ui:233
msgctxt "userautosave"
msgid "Specifies that the office suite saves the modified document itself, instead of creaing a temporary AutoRecovery version. Uses the same time interval as AutoRecovery does."
-msgstr ""
+msgstr "Określa, że pakiet biurowy sam zapisuje zmodyfikowany dokument, zamiast tworzyć tymczasową wersję autoodzyskiwania. Używa tego samego przedziału czasu co funkcja autoodzyskiwania."
#. kwFtx
#: cui/uiconfig/ui/optsavepage.ui:244
diff --git a/source/pl/helpcontent2/source/text/scalc/01.po b/source/pl/helpcontent2/source/text/scalc/01.po
index eca472b0c00..73ce00f0faa 100644
--- a/source/pl/helpcontent2/source/text/scalc/01.po
+++ b/source/pl/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-11 10:16+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Adam Rak <kitynska@gmail.com>\n"
"Language-Team: Polish <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/pl/>\n"
"Language: pl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1554058050.000000\n"
#. sZfWF
@@ -54599,7 +54599,7 @@ msgctxt ""
"par_id431716730587722\n"
"help.text"
msgid "Any of the optional arguments can be omitted. An optional argument requires all preceding separators to be present."
-msgstr ""
+msgstr "Można pominąć dowolny z opcjonalnych argumentów. Opcjonalny argument wymaga obecności wszystkich poprzedzających separatorów."
#. GAPGX
#: common_func_workdaysintl.xhp
@@ -57173,7 +57173,7 @@ msgctxt ""
"par_id711715953325962\n"
"help.text"
msgid "The function is always <emph>case insensitive</emph>, independent from the setting of <emph>Case sensitive</emph> checkbox in <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Calculate</menuitem></link>. You can however, use the mode modifier <emph>(?-i)</emph> in <link href=\"text/shared/01/02100001.xhp\">regular expressions</link> to force search for a case-sensitive match."
-msgstr ""
+msgstr "Funkcja zawsze <emph>nie uwzględnia wielkości liter</emph>, niezależnie od ustawienia pola wyboru <emph>Uwzględnij wielkość liter</emph> w <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>% PRODUCTNAME - Preferencje</menuitem></caseinline><defaultinline><menuitem>Narzędzia - Opcje</menuitem></defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\"><menuitem>%PRODUCTNAME Calc - Oblicz</menuitem></link>. Możesz jednak użyć modyfikatora trybu <emph>(?-i)</emph> w <link href=\"text/shared/01/02100001.xhp\">wyrażeniach regularnych</link>, aby wymusić dopasowanie uwzględniające wielkość liter."
#. 8DbP2
#: func_aggregate.xhp
@@ -71744,7 +71744,7 @@ msgctxt ""
"par_id631708282151776\n"
"help.text"
msgid "XLOOKUP function is a modern and flexible replacement for older functions like <link href=\"text/scalc/01/04060109.xhp#Section9\">VLOOKUP</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">HLOOKUP</link>, and <link href=\"text/scalc/01/04060109.xhp#Section14\">LOOKUP</link>. XLOOKUP supports approximate and exact matching, wildcards (* ?) or regular expressions for partial matches, and lookups in vertical or horizontal ranges. XLOOKUP can perform a reverse search and offers a fast binary search option when working with large datasets."
-msgstr ""
+msgstr "Funkcja X.WYSZUKAJ to nowoczesny i elastyczny zamiennik starszych funkcji, takich jak <link href=\"text/scalc/01/04060109.xhp#Section9\">WYSZUKAJ.PIONOWO</link>, <link href=\"text/scalc/01/04060109.xhp#Section17\">WYSZUKAJ.POZIOMO</link> i <link href=\"text/scalc/01/04060109.xhp#Section14\">WYSZUKAJ</link>. X.WYSZUKAJ obsługuje dopasowanie przybliżone i dokładne, symbole wieloznaczne (* ?) lub wyrażenia regularne dla dopasowań częściowych oraz wyszukiwania w zakresach pionowych i poziomych. X.WYSZUKAJ może przeprowadzić wyszukiwanie wsteczne i oferuje opcję szybkiego wyszukiwania binarnego podczas pracy z dużymi zbiorami danych."
#. TwFcc
#: func_xlookup.xhp
@@ -71843,7 +71843,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: <link href=\"text/scalc/guide/wildcards.xhp\">znak wieloznaczny</link>, w którym znaki *, ? i ~ mają specjalne znaczenie, lub dopasowanie za pomocą <link href=\"text/shared/01/02100001.xhp\">wyrażeń regularnych</link>."
#. EqTBc
#: func_xlookup.xhp
@@ -71897,7 +71897,7 @@ msgctxt ""
"par_id551718627629229\n"
"help.text"
msgid "<emph>MatchType</emph> value 2 cannot be combined with binary search (<emph>SearchMode</emph> value <emph>2</emph> or <emph>-2</emph>)."
-msgstr ""
+msgstr "<emph>Typ_dopasowania</emph> wartości 2 nie można łączyć z wyszukiwaniem binarnym (<emph>Trybu_wyszukiwania</emph> wartość <emph>2</emph> lub <emph>-2</emph>)."
#. fHQrZ
#: func_xlookup.xhp
@@ -72023,7 +72023,7 @@ msgctxt ""
"par_id121708281643207\n"
"help.text"
msgid "<emph>MatchType</emph>: (optional) specifies the match type. Values can be:"
-msgstr ""
+msgstr "<emph>Typ_dopasowania</emph>: (opcjonalnie) określa typ dopasowania. Wartości mogą być:"
#. jmwqp
#: func_xmatch.xhp
@@ -72032,7 +72032,7 @@ msgctxt ""
"par_id111708281542144\n"
"help.text"
msgid "<emph>0</emph>: exact match (default). If <emph>Lookup</emph> value is not found, then return the #N/A error."
-msgstr ""
+msgstr "<emph>0</emph>:dokładne dopasowanie (domyślne). Jeśli wartość <emph>Wyszukaj</emph> nie zostanie znaleziona, zwróć błąd #N/D."
#. 9SMUK
#: func_xmatch.xhp
@@ -72041,7 +72041,7 @@ msgctxt ""
"par_id851708281548335\n"
"help.text"
msgid "<emph>-1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next smaller item."
-msgstr ""
+msgstr "<emph>-1</emph>: próba dokładnego dopasowania. Jeśli wartość <emph>Wyszukaj</emph> nie zostanie znaleziona, zwróć następny mniejszy element."
#. hwonA
#: func_xmatch.xhp
@@ -72050,7 +72050,7 @@ msgctxt ""
"par_id801708281553430\n"
"help.text"
msgid "<emph>1</emph>: attempt exact match. If <emph>Lookup</emph> value is not found, then return the next larger item."
-msgstr ""
+msgstr "<emph>1</emph>: próba dokładnego dopasowania. Jeśli wartość <emph>Wyszukaj</emph> nie zostanie znaleziona, zwróć następny większy element."
#. y5cx9
#: func_xmatch.xhp
@@ -72059,7 +72059,7 @@ msgctxt ""
"par_id881708281558005\n"
"help.text"
msgid "<emph>2</emph>: a <link href=\"text/scalc/guide/wildcards.xhp\">wildcard</link> match where characters *, ?, and ~ have special meanings, or a match using <link href=\"text/shared/01/02100001.xhp\">regular expressions</link>."
-msgstr ""
+msgstr "<emph>2</emph>: <link href=\"text/scalc/guide/wildcards.xhp\">znak wieloznaczny</link>, w którym znaki *, ? i ~ mają specjalne znaczenie, lub dopasowanie za pomocą <link href=\"text/shared/01/02100001.xhp\">wyrażeń regularnych</link>."
#. WMXaP
#: func_xmatch.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/00.po b/source/pl/helpcontent2/source/text/shared/00.po
index b88e3cd86ca..05b126984bc 100644
--- a/source/pl/helpcontent2/source/text/shared/00.po
+++ b/source/pl/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-06-06 02:11+0000\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Adam Rak <kitynska@gmail.com>\n"
"Language-Team: Polish <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/pl/>\n"
"Language: pl\n"
@@ -610,14 +610,14 @@ msgctxt ""
msgid "Reset to Parent"
msgstr "Resetuj do nadrzędnego"
-#. WGWyN
+#. BHGSw
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id581616061494132\n"
"help.text"
-msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in Organizer. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
-msgstr "Wartości na tej karcie są ustawione na odpowiednie wartości stylu określonego w polu \"Dziedziczenie po\" w Organizatorze. We wszystkich przypadkach, także gdy \"Dziedziczenie po\" ma wartość \"Brak\", bieżące wartości na karcie określone w polu \"Zawiera\" są usuwane."
+msgid "Values for the current tab are set to those found in the corresponding tab of the style specified in “Inherit from” in the General tab. In all cases, also when “Inherit from” is “- None -”, current tab values specified in “Contains” are removed."
+msgstr ""
#. 3brfZ
#: 00000001.xhp
@@ -11480,7 +11480,7 @@ msgctxt ""
"par_id251718731059379\n"
"help.text"
msgid "On the <menuitem>Tools</menuitem> tab, click the <menuitem>Options</menuitem> button, then open <menuitem>Load/Save - General</menuitem>."
-msgstr ""
+msgstr "Na karcie <menuitem>Narzędzia</menuitem> kliknij przycisk <menuitem>Opcje</menuitem>, a następnie otwórz <menuitem>Języki i ustawienia regionalne - Ogólne</menuitem>."
#. aFtes
#: 00000406.xhp
@@ -13741,68 +13741,68 @@ msgctxt ""
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab.</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Wybierz kartę <emph>Format - Komórki - Tło</emph>.</caseinline></switchinline>"
-#. DjVCQ
+#. aTCQk
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146791\n"
"help.text"
-msgid "Choose <menuitem>Format - Page Style - Organizer</menuitem> tab."
-msgstr "Wybierz kartę <menuitem>Format - Styl strony - Organizator</menuitem>."
+msgid "Choose <menuitem>Format - Page Style - General</menuitem> tab."
+msgstr ""
-#. 5BJtP
+#. gc3na
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id7146791\n"
"help.text"
-msgid "Choose <menuitem>Styles - Edit Style - Organizer</menuitem> tab."
-msgstr "Wybierz kartę <menuitem>Style - Edycja stylu - Organizator</menuitem>."
+msgid "Choose <menuitem>Styles - Edit Style - General</menuitem> tab."
+msgstr ""
-#. TKKxc
+#. QQLUy
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id631579002848692\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wybierz <menuitem>Style - Zarządzaj stylami</menuitem>, a następnie otwórz menu kontekstowe pozycji i wybierz kartę <menuitem>Nowy/Edycja stylu - Organizator</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. oZUMH
+#. xY5tF
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3146788\n"
"help.text"
-msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Calcseiteverwaltenh1\">Wybierz kartę <menuitem>Format - Styl strony - Organizator</menuitem>.</variable>"
+msgid "<variable id=\"Calcseiteverwaltenh1\">Choose <menuitem>Format - Page Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. BH2ZC
+#. DftGu
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id961579003607432\n"
"help.text"
-msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wybierz <menuitem>Style - Zarządzaj stylami</menuitem>, a następnie otwórz menu kontekstowe pozycji i wybierz kartę <menuitem>Nowy/Edycja stylu - Organizator</menuitem>."
+msgid "Choose <menuitem>Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
-#. 5tDj9
+#. KgGRL
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3123788\n"
"help.text"
-msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - Organizer</menuitem> tab.</variable>"
-msgstr "<variable id=\"Drawseiteverwaltenh1\">Wybierz kartę <menuitem>Format - Style - Edycja stylu - Organizator</menuitem>.</variable>"
+msgid "<variable id=\"Drawseiteverwaltenh1\">Choose <menuitem>Format - Styles - Edit Style - General</menuitem> tab.</variable>"
+msgstr ""
-#. Vrudd
+#. zdcGq
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id111579003773016\n"
"help.text"
-msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wybierz <menuitem>Format - Style - Zarządzaj stylami</menuitem>, a następnie otwórz menu kontekstowe pozycji i wybierz kartę <menuitem>Nowy/Edycja stylu - Organizator</menuitem>."
+msgid "Choose <menuitem>Format - Styles - Manage Styles</menuitem> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. rSUuK
#: 00040500.xhp
@@ -13813,14 +13813,14 @@ msgctxt ""
msgid "<variable id=\"Impressseiteverwaltenh1\">Choose <menuitem>Slide - Properties - Page</menuitem> tab.</variable>"
msgstr "<variable id=\"Impressseiteverwaltenh1\">Wybierz kartę <menuitem>Slajd - Właściwości - Strona</menuitem>.</variable>"
-#. SD3aA
+#. jhHdD
#: 00040500.xhp
msgctxt ""
"00040500.xhp\n"
"par_id3154482\n"
"help.text"
-msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - Organizer</menuitem> tab."
-msgstr "Wybierz <menuitem>Widok - Style</menuitem><switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline>, a następnie otwórz menu kontekstowe pozycji i wybierz kartę <menuitem>Nowy/Edycja stylu - Organizator</menuitem>."
+msgid "Choose <menuitem>View - Styles</menuitem> <switchinline select=\"sys\"><caseinline select=\"MAC\"><keycode>(Command+T)</keycode></caseinline><defaultinline><keycode>(F11)</keycode></defaultinline></switchinline> - open context menu of an entry and choose <menuitem>New/Edit Style - General</menuitem> tab."
+msgstr ""
#. eEUQg
#: 00040500.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/01.po b/source/pl/helpcontent2/source/text/shared/01.po
index 803169e2e8c..20bc6a577b6 100644
--- a/source/pl/helpcontent2/source/text/shared/01.po
+++ b/source/pl/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2024-06-10 14:48+0200\n"
+"POT-Creation-Date: 2024-06-25 12:28+0200\n"
"PO-Revision-Date: 2024-06-11 09:45+0000\n"
"Last-Translator: Adam Rak <kitynska@gmail.com>\n"
"Language-Team: Polish <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/pl/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 5.4.3\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1564159292.000000\n"
#. 3u8hR
@@ -23452,14 +23452,14 @@ msgctxt ""
msgid "<ahelp hid=\"cui/ui/croppage/origsize\">Returns the selected graphic to its original size.</ahelp>"
msgstr "<ahelp hid=\"cui/ui/croppage/origsize\">Przywraca oryginalny rozmiar zaznaczonego obrazu.</ahelp>"
-#. fUcBP
+#. 7ithV
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizator"
+msgid "General"
+msgstr ""
#. HAEfy
#: 05040100.xhp
@@ -23470,14 +23470,14 @@ msgctxt ""
msgid "<bookmark_value>organizing; styles</bookmark_value><bookmark_value>styles; organizing</bookmark_value>"
msgstr "<bookmark_value>organizowanie; style</bookmark_value><bookmark_value>style; organizowanie</bookmark_value>"
-#. 4DRBX
+#. Y4STk
#: 05040100.xhp
msgctxt ""
"05040100.xhp\n"
"hd_id3153383\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\">Organizer</link>"
-msgstr "<link href=\"text/shared/01/05040100.xhp\">Organizator</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\">General</link>"
+msgstr ""
#. HCNHK
#: 05040100.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/help.po b/source/pl/helpcontent2/source/text/shared/help.po
index 0c3515ad326..ff6cc171c1c 100644
--- a/source/pl/helpcontent2/source/text/shared/help.po
+++ b/source/pl/helpcontent2/source/text/shared/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: 2024-06-20 13:14+0200\n"
-"PO-Revision-Date: 2024-02-28 09:45+0000\n"
+"PO-Revision-Date: 2024-06-21 09:45+0000\n"
"Last-Translator: Adam Rak <kitynska@gmail.com>\n"
"Language-Team: Polish <https://translations.documentfoundation.org/projects/libo_help-master/textsharedhelp/pl/>\n"
"Language: pl\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 5.4.3\n"
"X-POOTLE-MTIME: 1542031210.000000\n"
#. jdDhb
@@ -32,7 +32,7 @@ msgctxt ""
"par_id901718636072828\n"
"help.text"
msgid "<variable id=\"books\">LibreOffice Books</variable>"
-msgstr ""
+msgstr "<variable id=\"books\">Książki LibreOffice</variable>"
#. 2kVTU
#: browserhelp.xhp
diff --git a/source/pl/helpcontent2/source/text/shared/optionen.po b/source/pl/helpcontent2/source/text/shared/optionen.po
index 24455099f43..ea7f6069a5f 100644
--- a/source/pl/helpcontent2/source/text/shared/optionen.po
+++ b/source/pl/helpcontent2/source/text/shared/optionen.po